If you've ever simplified a fraction or found a common denominator, you've probably heard the words GCD (greatest common divisor) and LCM (least common multiple) more times than you can count. These two ideas sound intimidating, but once you understand how they work, they're simpler than you'd think.
The GCD is the largest number that divides two numbers at the same time. For example, list out the divisors of 12 and 18: 12 has 1, 2, 3, 4, 6, 12, and 18 has 1, 2, 3, 6, 9, 18 — the largest number common to both lists is 6. The LCM, on the other hand, is the smallest number that shows up in both numbers' lists of multiples. List the multiples of 12 and 18, and you'll see they first overlap at 36.
Plenty of students mix these two up. Here's how I like to explain it: the GCD is about "dividing down," so it's always less than or equal to the original numbers, while the LCM is about "combining up," so it's always greater than or equal to them. Remembering this direction lets you sanity-check yourself whenever an answer looks off.
Real-life examples help a lot too. Say you have two traffic lights, one turning green every 12 seconds and the other every 18 seconds. To find the moment they both turn green at the same time, you'd find the LCM. On the other hand, if you want to cut a 12cm by 18cm sheet of paper into the largest possible square tiles with nothing left over, you'd need the GCD.
There's also a faster way to find the GCD and LCM using prime factorization. Break both numbers into products of primes, then multiply the shared primes using the smaller exponent to get the GCD, and multiply using the larger exponent to get the LCM. For example, breaking down 12=2²×3 and 18=2×3² gives a GCD of 2¹×3¹=6 and an LCM of 2²×3²=36 — exactly matching what we found by listing them out earlier. And here's another fun fact: multiplying a pair of numbers' GCD and LCM together always equals the product of the original two numbers. With 12 and 18, that's 6×36=216, and 12×18 is also exactly 216. Knowing this relationship lets you find the LCM with a single division once you already have the GCD, which is a handy trick for saving time on a test.
Visually, a great way to learn this is to line up two numbers' multiples in a table side by side and shade in the overlapping cells. Seeing exactly where they first overlap, and how often, makes the concept much clearer. On our activity page, changing the two numbers with sliders automatically shows their multiple and divisor lists side by side, with the overlapping parts highlighted automatically. Try changing the numbers into different combinations and watching how the overlap position shifts — the GCD and LCM, which might have just been memorized formulas, will start to feel like something you can really grasp. Get into the habit of guessing "will the GCD or the LCM be bigger this time?" before checking, every time you change the numbers, and you'll remember the direction of these two ideas for much longer. Pick a few number pairs ahead of time — like 12 and 30, or 8 and 20 — and practice finding the GCD and LCM back and forth for each; by the time you learn common denominators and simplifying fractions later on, you'll be able to reach for these two ideas far more naturally.