Introduction
Factors and multiples are essential tools for simplifying fractions, solving divisibility problems, and scheduling repeating events. Finding the Highest Common Factor (HCF / GCD) and Least Common Multiple (LCM) quickly saves time in aptitude tests and competitive exams.
Pattern: Factors & Multiples (HCF & LCM)
Pattern
Compute HCF by taking common prime powers with minimum exponents; compute LCM by taking all prime powers with maximum exponents. Use Euclid’s algorithm for fast GCD and the product identity to get LCM.
- Factor: d is a factor of n if n ÷ d is integer.
- Multiple: m is a multiple of n if m = n × k for some integer k.
- Prime factorization: Write numbers as products of primes:
a = ∏ p_i^{α_i}, b = ∏ p_i^{β_i} (use exponent 0 if prime absent). - HCF/GCD (prime-power formula):
HCF(a,b) = ∏ p_i^{min(α_i,β_i)}. - LCM (prime-power formula):
LCM(a,b) = ∏ p_i^{max(α_i,β_i)}. - Product identity (two numbers):
HCF(a,b) × LCM(a,b) = |a × b|. - Euclidean algorithm (fast GCD):
gcd(a,b) = gcd(b, a mod b). Repeat until remainder = 0; last nonzero divisor is gcd. - LCM from GCD:
LCM(a,b) = |a × b| / GCD(a,b). - Extend to many numbers:
GCD(a,b,c) = GCD(GCD(a,b),c). LCM(a,b,c) = LCM(LCM(a,b),c).
Step-by-Step Example
Question
Find the HCF (GCD) and LCM of 84 and 108.
Solution
-
Step 1: Prime factorization:
84 = 2 × 42 = 2^2 × 3 × 7 → 84 = 22 × 31 × 71.
108 = 2 × 54 = 2^2 × 3 × 27 = 2^2 × 3^3 → 108 = 22 × 33. -
Step 2: Compute HCF using min exponents:
HCF(84,108) = 2min(2,2) × 3min(1,3) × 7min(1,0) = 22 × 31 × 70 = 4 × 3 × 1 = 12.
-
Step 3: Compute LCM using max exponents:
LCM(84,108) = 2max(2,2) × 3max(1,3) × 7max(1,0) = 22 × 33 × 71 = 4 × 27 × 7 = 756.
-
Step 4: Verify with product identity (Quick Check):
84 × 108 = 9072. HCF × LCM = 12 × 756 = 9072 → matches. ✅
-
Final Answer:
HCF(84,108) = 12. LCM(84,108) = 756.
-
Quick Check:
756 ÷ 84 = 9 (integer) and 756 ÷ 108 = 7 (integer). 12 divides both 84 and 108. Product identity holds. ✅
Quick Variations
1. Use Euclidean algorithm for large numbers: e.g., gcd(108,84) → gcd(84,24) → gcd(24,12) → gcd(12,0) = 12.
2. For three numbers a,b,c: compute GCD iteratively: GCD(a,b,c)=GCD(GCD(a,b),c) and similarly for LCM.
3. If numbers are co-prime (GCD = 1), then LCM = product of numbers.
Trick to Always Use
- Step 1 → Try Euclidean algorithm for GCD first (fast and avoids full factorization).
- Step 2 → Use LCM = |a × b| / GCD(a,b) to compute LCM quickly.
- Step 3 → For small numbers, prime factorization and min/max exponent rule is clear and reliable.
- Step 4 → For many numbers, compute pairwise iteratively rather than factoring all at once.
Summary
Summary
- Find HCF using prime powers with minimum exponents or by applying the Euclidean algorithm.
- Find LCM using prime powers with maximum exponents or by applying LCM = |a × b| / GCD.
- The product identity HCF × LCM = |a × b| always holds for two numbers.
- Extend both GCD and LCM to many numbers by applying the operations iteratively.
Example to remember:
For 84 and 108, HCF = 12 and LCM = 756 because min/max prime exponents give exact values, and 12 × 756 = 9072 = 84 × 108.
