HCF • Topic 1 of 2

Euclid Method

There are two clean ways to find an HCF. The first is prime factorization: break each number into primes and multiply the common primes taken to their LOWEST power. For 60 = 2²×3×5 and 84 = 2²×3×7, the shared part is 2²×3 = 12. This is intuitive but slow when numbers are large or hard to factor. The second is the Euclidean algorithm, the CAT favourite for big numbers: divide the larger by the smaller, replace the larger with the remainder, and repeat until the remainder is 0 — the last non-zero remainder is the HCF. In short, HCF(a, b) = HCF(b, a mod b). It needs no factoring, so HCF(1517, 902) falls out in three or four divisions. A key property worth memorising: HCF(ka, kb) = k × HCF(a, b), so you can pull out an obvious common factor first to shrink the numbers. The HCF can never exceed the smallest of the given numbers.

✅ Solved examples

1. Find the HCF of 48 and 60 by prime factorization.
48 = 2⁴×3, 60 = 2²×3×5. Common primes at lowest power = 2²×3 = 12.
2. Use the Euclidean algorithm to find HCF(252, 105).
252 = 2×105 + 42; 105 = 2×42 + 21; 42 = 2×21 + 0. Last non-zero remainder = 21.
3. Find HCF(1517, 902) by the Euclidean algorithm.
1517 = 1×902 + 615; 902 = 1×615 + 287; 615 = 2×287 + 41; 287 = 7×41 + 0 ⇒ HCF = 41.
4. Find the HCF of 1230 and 1450 by first pulling out a common factor.
Both divisible by 10: HCF(1230,1450) = 10 × HCF(123,145). 145 = 1×123 + 22; 123 = 5×22 + 13; 22 = 1×13 + 9; 13 = 1×9 + 4; 9 = 2×4 + 1; 4 = 4×1 ⇒ HCF(123,145)=1. So HCF = 10×1 = 10.

✏️ Practice — try these, take hints as needed

1. Find the HCF of 36 and 90.
36 = 2²×3², 90 = 2×3²×5.
Take lowest power of each common prime.
2¹ × 3² = ?
18
2. Use the Euclidean algorithm for HCF(391, 425).
Divide larger by smaller.
425 = 1×391 + 34; 391 = 11×34 + 17.
34 = 2×17 + 0.
17
3. Find HCF(204, 1190).
1190 = 5×204 + 170.
204 = 1×170 + 34; 170 = 5×34 + 0.
Last non-zero remainder.
34
4. Find the HCF of 144, 180 and 192.
Find HCF of first two, then with the third.
HCF(144,180) = 36.
HCF(36,192) = 12.
12
5. If HCF(a, b) = 8, what is HCF(5a, 5b)?
Use HCF(ka, kb) = k × HCF(a, b).
k = 5 here.
5 × 8.
40

📝 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…