What's the smallest number that both 4 and 10 divide into evenly?
If you said 20, you're right. But here's the thing — most people either guess or use a method they half-remember from middle school. And that's fine for a quick homework check. But if you're building a schedule, syncing repeating events, or trying to figure out when two machines will both need maintenance on the same day, guessing doesn't cut it.
The lowest common multiple of 4 and 10 is 20. So that's the answer. But the why and the how — and the times you'll actually need this — that's where it gets useful.
What Is the Lowest Common Multiple
The lowest common multiple (LCM) of two numbers is exactly what it sounds like: the smallest positive number that both numbers divide into without leaving a remainder.
Not "a" common multiple. The lowest one.
4 goes into 20 five times. 10 goes into 20 two times. Consider this: no smaller positive number works for both. That's it. That's the definition.
But here's where people get tripped up — they confuse LCM with GCF (greatest common factor). GCF asks "what's the biggest number that divides into* both?Now, " LCM asks "what's the smallest number that both divide into*? " Opposite directions. Totally different answers.
For 4 and 10:
- GCF = 2
- LCM = 20
See the difference? Practically speaking, good. Keep that straight and you're already ahead.
Why "lowest" matters
You could say 40 is a common multiple of 4 and 10. So is 60. So is 200. Which means there are infinitely many. But only one is the lowest*. And in practice, the lowest is almost always the one you want — it's the first time things line up, the earliest collision point, the most efficient cycle.
Why It Matters / Why People Care
You're not calculating LCM for fun. You're calculating it because two repeating things need to sync up.
Real-world examples
Scheduling: Bus A runs every 4 minutes. Bus B runs every 10 minutes. They both leave the station at 8:00 AM. When do they leave together again? LCM of 4 and 10 = 20 minutes. Next joint departure: 8:20 AM.
Manufacturing: Machine X needs calibration every 4 days. Machine Y every 10 days. Both calibrated today. When's the next day they both need it? Day 20.
Fractions: Adding 1/4 + 1/10? You need a common denominator. The least* common denominator is the LCM of 4 and 10 — which is 20. So 1/4 = 5/20, 1/10 = 2/20, sum = 7/20. Done.
Gear ratios, signal processing, music theory, cryptography — LCM shows up everywhere cycles intersect.
The pattern is always the same: two (or more) periodic events. And you need to know when they align. That's LCM.
How to Find the LCM of 4 and 10
There are three main methods. On top of that, they all give 20. They all work. But some scale better than others when the numbers get ugly.
Method 1: List the multiples
Write out multiples of each number until you hit a match.
Multiples of 4: 4, 8, 12, 16, 20, 24, 28... Multiples of 10: 10, 20, 30, 40...
First match: 20.
This works great for small numbers. It's visual. But try it with 144 and 180. Think about it: it's intuitive. You'll be listing for a while.
Method 2: Prime factorization (the reliable workhorse)
Break each number into its prime factors. Then build the LCM by taking the highest power* of each prime that appears.
4 = 2²
10 = 2 × 5
Primes involved: 2 and 5.
Highest power of 2: 2² (from 4)
Highest power of 5: 5¹ (from 10)
LCM = 2² × 5 = 4 × 5 = 20
This method scales. That said, works for any size numbers. Also, works for three, four, five numbers at once. It's the one worth memorizing.
If you found this helpful, you might also enjoy what is the average iq for a 12-year-old or 6 weeks is how many days.
Method 3: The GCF shortcut (fastest for two numbers)
There's a relationship between LCM and GCF that saves time:
LCM(a, b) × GCF(a, b) = a × b
So: LCM(4, 10) = (4 × 10) / GCF(4, 10)
GCF of 4 and 10 is 2.
(4 × 10) / 2 = 40 / 2 = 20
This is stupidly fast if you can spot the GCF quickly. You'd need to find the GCF first (it's 36), then do (144 × 180) / 36. For 144 and 180? For 4 and 10, it's obvious. Still faster than listing multiples.
Which method should you use?
- Tiny numbers, one-off: list multiples
- Any size, want a universal tool: prime factorization
- Two numbers, GCF is obvious: GCF shortcut
- Three or more numbers: prime factorization (GCF shortcut gets messy)
Common Mistakes / What Most People Get Wrong
Confusing LCM with GCF
Already covered this. But it's the #1 error. Day to day, people calculate GCF when they need LCM, or vice versa. That said, pause. Ask: "Am I looking for what divides into* both, or what both divide into*?
Multiplying the numbers and calling it done
4 × 10 = 40. That is a common multiple. But it's not the lowest*. This mistake happens a lot when people half-remember "multiply the numbers" from fraction addition — but that only gives the least* common denominator when the numbers are coprime (share no factors). 4 and 10 share a factor (2), so 40 is double what you need.
Forgetting that LCM is always ≥ the larger number
LCM of 4 and 10 can't be less than 10. Still, it's a multiple of 10. The smallest multiple of 10 is 10 itself — but 4 doesn't divide 10. So the answer has to be 20 or higher. If you get an answer smaller than your largest number, you messed up.
Using the wrong prime powers
In prime factorization, you take the highest* power of each prime. Day to day, not the one from the first number. Not the lowest. The highest across all numbers.
Example: LCM of 8 and 12
8 =
8 = 2³
12 = 2² × 3
Primes involved: 2 and 3.
Highest power of 2: 2³ (from 8)
Highest power of 3: 3¹ (from 12)
LCM = 2³ × 3 = 8 × 3 = 24
If you mistakenly took 2² instead of 2³, you'd get 12, which isn't even divisible by 8.
Real-World Applications
Scheduling conflicts: Two trains run every 15 minutes and 20 minutes. When do they align? LCM(15, 20) = 60 minutes.
Repeating decimals: 1/4 = 0.25 (terminates), 1/6 = 0.166... (repeats). To add them, you need LCM of denominators to find common ground.
Music theory: Finding the shortest rhythmic pattern that fits both 3-beat and 4-beat cycles requires LCM(3, 4) = 12 beats.
Cryptography: Large number LCM calculations appear in RSA encryption algorithms.
Quick Practice Problems
- LCM(6, 9) = ?
- LCM(12, 18) = ?
- LCM(15, 25, 30) = ?
Answers: 18, 36, 150
The Big Picture
The LCM isn't just a classroom exercise—it's a fundamental tool for finding alignment, synchronization, and common ground between repeating patterns. Whether you're scheduling events, simplifying fractions, or designing digital circuits, the LCM helps you find the most efficient point of convergence.
Master these methods and you'll never be stuck staring at two numbers wondering where to start.