Lowest Common Multiple

Lowest Common Multiple Of 36 And 45

PL
accountshelp.org
7 min read
Lowest Common Multiple Of 36 And 45
Lowest Common Multiple Of 36 And 45

What Is the Lowest Common Multiple?

If you've landed here, you're probably staring at a math problem that says something like "find the LCM of 36 and 45" and wondering whether there's a faster way than just listing multiples until your eyes glaze over. There is. Several, actually. But before we get to the shortcuts, let's make sure we're on the same page about what the lowest common multiple actually means.

The lowest common multiple — or LCM, if you prefer the abbreviation — is simply the smallest positive number that two (or more) numbers both divide into evenly. No remainder, no decimal, no fuss. It's the first point where the "multiplication timelines" of two numbers intersect.

Think of it this way: 36 has its own sequence of multiples — 36, 72, 108, 144, 180, 216, and so on. Still, 45 has its own sequence too — 45, 90, 135, 180, 225, 270, and so on. On the flip side, if you scan both lists, the first number that shows up in both is 180. That's the LCM of 36 and 45.

But listing multiples is the brute-force approach. It works, but it's slow, and for larger numbers it becomes genuinely painful. There are better methods, and we'll walk through all of them below.

LCM vs GCD — Don't Confuse Them

One thing that trips people up is mixing the LCM with the GCD (greatest common divisor). In practice, the GCD of 36 and 45 is the largest number that divides into* both of them. They're related, but they answer opposite questions. The LCM is the smallest number that both of them divide into*.

For 36 and 45, the GCD is 9. The LCM is 180. But notice how the LCM is much larger than either number, while the GCD is smaller? That's the general pattern, though there are exceptions when numbers share a lot of factors.

Why It Matters

You might be thinking, "When am I ever going to need the LCM of 36 and 45 in real life?" Fair question. In daily life, probably never in this exact form. But the skill* of finding common multiples shows up in more places than you'd expect.

Fractions and Denominators

The most common real-world use of LCM is adding or subtracting fractions with different denominators. If you have something like 7/36 + 5/45, you can't add them directly — the denominators are different. You need a common denominator, and the most efficient choice is the LCM of 36 and 45, which is 180. Using 180 instead of just multiplying 36 × 45 (which gives you 1,620) keeps the numbers manageable.

Scheduling and Cycles

Here's a more intuitive example. Say one event happens every 36 days and another happens every 45 days. If both events occur on the same day today, when's the next time they'll line up again? That's an LCM problem. The answer is 180 days from now.

This same logic applies to bus schedules, manufacturing cycles, planetary orbits, repeating decimals — anywhere two rhythmic patterns need to sync up.

Why This Specific Pair?

36 and 45 are interesting because they share a decent chunk of factors but aren't trivially related. They're both multiples of 9, which means their GCD is 9. But 36 has a factor of 4 (2²) that 45 doesn't have, and 45 has a factor of 5 that 36 doesn't have. This makes them a good teaching example — they're complex enough to show why the method matters, but simple enough that you can work through them by hand without losing your mind.

How to Find the LCM of 36 and 45

Let's walk through the main methods. Each one arrives at the same answer — 180 — but they take different routes. Knowing more than one method helps because different approaches click for different people, and some methods scale better to larger numbers.

Method 1: Prime Factorization

We're talking about the most reliable method, and the one I'd recommend learning first. Here's how it works.

Step 1: Break each number down into its prime factors.

  • 36 = 2 × 2 × 3 × 3 = 2² × 3²
  • 45 = 3 × 3 × 5 = 3² × 5

Step 2: Identify the highest power of each prime that appears in either factorization.

  • The prime 2 appears as 2² (in 36). Highest power: 2².
  • The prime 3 appears as 3² in both. Highest power: 3².
  • The prime 5 appears as 5¹ (in 45). Highest power: 5.

Step 3: Multiply those highest powers together.

  • LCM = 2² × 3² × 5 = 4 × 9 × 5 = 180

That's it. Which means the key insight is that you take the maximum* power of each prime from either number — not the minimum (that would give you the GCD). On top of that, this is where people mix up LCM and GCD: for GCD, you take the lowest powers. For LCM, you take the highest.

Method 2: The Division Method (Ladder Method)

Some people find this more intuitive because it's visual. You set up both numbers side by side and divide by common factors until you can't anymore.

Step 1: Write 36 and 45 side by side.

For more on this topic, read our article on minimum or maximum value of quadratic function or check out when a relation is a function.

36 | 45

Step 2: Divide both by a common factor. They share 3.

12 | 15   (divided by 3)

Step 3: Divide again by a common factor. They still share 3.

4 | 5    (divided by 3 again)

Step 4: Now 4 and 5 share no common factors other than 1. You're done dividing.

Step 5: Multiply all the divisors and the remaining numbers together.

  • LCM = 3 × 3 × 4 × 5 = 180

Same answer, different route. The beauty of this method is that it handles the GCD implicitly — you're essentially factoring out the common parts and then multiplying everything back together.

Method 3: Listing Multiples

We're talking about the brute-force method I mentioned earlier. It's not elegant, but it works, and for small numbers it's perfectly fine.

Multiples of 36: 36, 72, 108, 144, 180, 216, 252, 288, 324, 360...

Multiples of 45: 45, 90, 135, 180, 225, 270, 315, 360...

The first common value is 180. So the LCM is 180.

The downside? For bigger numbers, this takes forever. So naturally, if you were finding the LCM of, say, 847 and 1,233, you'd be listing multiples for a very long time. That's why the prime factorization method is worth learning — it scales.

Method 4: The Formula (Using GCD)

There's a neat relationship between LCM and GCD that gives us a formula:

LCM(a, b) = (a × b) / GCD(a, b)

We already know the GCD of 36 and 45 is 9. So:

  • LCM(36, 45) = (36 × 45) / 9 = 1,

600 / 9 = 180

This formula is incredibly useful when you already know the GCD, or when you can find it more easily than the LCM directly. It also reveals a beautiful connection in number theory: the product of two numbers equals the product of their LCM and GCD.

Which Method Should You Use?

Here's my practical advice:

  • For learning: Start with prime factorization. It builds the strongest foundation and works for any numbers.
  • For speed with small numbers: Listing multiples can be fastest if you spot the answer quickly.
  • When you know the GCD: Use the formula—it's elegant and efficient.
  • For visual learners: Try the division/ladder method.

The prime factorization method remains my top recommendation because it's systematic, educational, and scales beautifully to more complex problems involving multiple numbers or algebraic expressions.

Beyond Two Numbers

All these methods extend to three or more numbers. With prime factorization, you simply identify the highest power of each prime across all factorizations. Here's one way to look at it: to find LCM(12, 18, 30):

  • 12 = 2² × 3
  • 18 = 2 × 3²
  • 30 = 2 × 3 × 5

Taking the highest power of each prime: LCM = 2² × 3² × 5 = 180

Real-World Applications

LCM isn't just an academic exercise. It appears whenever you need things to synchronize:

  • Scheduling: If one event repeats every 36 days and another every 45 days, they'll coincide every 180 days.
  • Music: Finding common beats in different rhythmic patterns.
  • Engineering: Aligning gears or mechanical systems with different rotation periods.
  • Computer Science: Scheduling processes with different cycles.

Understanding LCM gives you a powerful tool for solving problems where cycles, patterns, or repetitions intersect. Whether you're planning a complex project, analyzing waveforms, or just helping your child with math homework, mastering these methods will serve you well.

The key is recognizing that LCM represents the "first meeting point" of different counting sequences—a fundamental concept that appears everywhere once you know to look for it.

New

Latest Posts

Related

Related Posts

Thank you for reading about Lowest Common Multiple Of 36 And 45. We hope this guide was helpful.

Share This Article

X Facebook WhatsApp
← Back to Home
AC

accountshelp

Staff writer at accountshelp.org. We publish practical guides and insights to help you stay informed and make better decisions.