Multiples • Topic 1 of 2

Common Multiples

A common multiple of two numbers a and b is any number divisible by both. The smallest is the LCM, and every common multiple is a multiple of that LCM — so the common multiples of a and b are exactly LCM, 2·LCM, 3·LCM, and so on. This single fact answers most CAT questions: to count common multiples of a and b up to N, you do not list anything; you compute floor(N / LCM(a, b)). For example, multiples of both 6 and 8 up to 200 means multiples of LCM(6,8)=24, giving floor(200/24)=8. The kth common multiple is just k × LCM. A frequent trap is treating "common multiple" as a × b; that only works when a and b are coprime (HCF = 1). When they share factors, a × b overcounts, so always reduce to the LCM first. Tie this to HCF using LCM × HCF = a × b to recover one from the other quickly.

✅ Solved examples

1. How many numbers up to 300 are multiples of both 8 and 12?
LCM(8,12) = 24. Count = floor(300/24) = 12.
2. Find the 5th common multiple of 9 and 15.
LCM(9,15) = 45. 5th common multiple = 5 × 45 = 225.
3. How many common multiples of 4 and 6 lie between 1 and 100 (inclusive)?
LCM(4,6) = 12. Count = floor(100/12) = 8 (12, 24, …, 96).
4. The HCF of two numbers is 6 and their LCM is 180. How many multiples of both numbers are there up to 1000?
A number divisible by both is divisible by their LCM = 180. Count = floor(1000/180) = 5.

✏️ Practice — try these, take hints as needed

1. How many numbers up to 500 are multiples of both 10 and 15?
Find LCM(10,15).
LCM = 30.
floor(500/30).
16
2. Find the 7th common multiple of 12 and 18.
LCM(12,18) = 36.
kth common multiple = k × LCM.
7 × 36.
252
3. How many multiples of both 6 and 8 are there from 1 to 240?
LCM(6,8) = 24.
floor(240/24).
Exact division.
10
4. Two numbers have HCF 5 and LCM 60. How many numbers up to 700 are divisible by both?
Divisible by both ⇒ divisible by LCM.
LCM = 60.
floor(700/60).
11
5. How many common multiples of 14 and 21 are there up to 1000?
LCM(14,21) = 42.
floor(1000/42).
Take the integer part.
23

📝 Topic test — 8 questions

Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.

Loading questions…