This question tests your ability to find the greatest common divisor (GCD) of three numbers using the prime factorisation method.
For three numbers, find the GCD of the first two, then use that result with the third number.
The greatest common divisor (GCD), also called the highest common factor (HCF), is the largest integer that divides two or more numbers exactly with no remainder. In GCSE Higher Maths, this concept extends beyond small numbers — it can involve three or more values, prime factorisation, or even algebraic terms.
To find the GCD using prime factorisation:
Example (different numbers):
Find the GCD of 84, 90, and 126.
84 = 2 × 2 × 3 × 7 = 2^2 × 3 × 7
90 = 2 × 3 × 3 × 5 = 2 × 3^2 × 5
126 = 2 × 3 × 3 × 7 = 2 × 3^2 × 7
Common primes: 2 × 3 = 6
Therefore, GCD = 6
This algorithm uses division and remainders:
Step 1: Divide the larger number by the smaller.
Step 2: Replace the larger number with the remainder.
Step 3: Repeat until the remainder is 0.
The last non-zero remainder is the GCD.
For instance, the GCD of 210 and 84:
210 ÷ 84 = 2 remainder 42
84 ÷ 42 = 2 remainder 0
GCD = 42
GCD appears frequently in ratio simplification, scaling problems, and algebraic simplifications. For example, if three containers hold 100 ml, 150 ml, and 200 ml of liquid, the largest equal portion that can be measured using all containers is their GCD — 50 ml.
Q: Can we find the GCD of more than two numbers?
A: Yes. Find the GCD of the first two, then use that result with the third number.
Q: Why use prime factorisation instead of listing factors?
A: It’s faster for large numbers and avoids missing hidden factors.
Q: What if all numbers are even?
A: Then at least 2 will always be part of the GCD.
When revising, practise both listing and prime factorisation methods. Higher-level questions may involve three numbers or algebraic terms, so train yourself to quickly spot patterns in powers and primes.
The GCD is a fundamental tool for simplifying problems involving multiple quantities. Understanding how to calculate it efficiently builds a strong base for algebraic manipulation, simultaneous equations, and proportion reasoning later in GCSE Maths.