Use the Euclidean algorithm or prime powers to find the HCF of three numbers efficiently.
For three numbers: compute GCD of two, then use that result with the third. Always verify by division.
The greatest common divisor (GCD), also called the highest common factor (HCF), is the largest positive integer that divides two or more numbers exactly. At GCSE Higher level, problems often involve three numbers or require you to use efficient methods such as the Euclidean algorithm, not just factor lists. Mastering both prime factorisation and the Euclidean algorithm makes you faster and more reliable in exams.
Example A (Euclidean method): Find GCD(210, 168, 84).
GCD(210,168): 210 = 1·168 + 42 → GCD = 42 GCD(42,84): 84 = 2·42 + 0 → GCD = 42
Therefore, GCD(210,168,84) = 42.
Example B (Prime factorisation): Find GCD(144, 216, 252).
144 = 2^4 × 3^2 216 = 2^3 × 3^3 252 = 2^2 × 3^2 × 7 Common primes: 2^2 and 3^2 → GCD = 4 × 9 = 36
Prime factorisation is clear and visual, but for large or awkward values it can be slow. The Euclidean algorithm avoids full factor trees: it uses division and remainders only, making it ideal for big integers or when you need speed under time pressure. Importantly, it scales well to three or more numbers by iterating pairwise.
GCDs are essential in simplifying ratios and fractions, scheduling problems, tiling or cutting tasks with maximum equal sizes, and number-theoretic arguments. For instance, if three cable lengths must be cut into the longest equal pieces with no waste, the piece length is their GCD.
Q: How do I extend Euclid to three numbers?
A: Compute d = GCD(a, b), then GCD(d, c). The operation is associative.
Q: Can the GCD of three numbers ever be larger than the smallest of them?
A: No. It cannot exceed the smallest number.
Q: What if numbers are all powers of 2?
A: The GCD is 2 raised to the smallest exponent among them.
Practise both methods. Use prime powers when numbers factor nicely; switch to Euclid when numbers are large, unfriendly, or when time is short. For three-number questions, think “pair first, then combine.”