Building on Number System Foundations
Having explored prime numbers, divisibility tests, and the structure of numerical decomposition, we now examine two interconnected concepts: the Highest Common Factor (HCF) and the Least Common Multiple (LCM). These concepts reveal how different numbers relate to one another through their shared and accumulated properties.

Foundational Definitions
Factor: A number that, when multiplied with another, produces a given number or expression.
Multiple: A number that can be divided by another a certain number of times without remainder. Equivalently, if number a divides number b exactly, then a is a factor of b, and b is a multiple of a.
Division Algorithm: The relationship between division components: Dividend = (Divisor × Quotient) + Remainder
This algorithmic relationship forms the foundation for understanding HCF and LCM calculations.
Highest Common Factor (HCF): Understanding Shared Divisibility
The HCF—also called Greatest Common Divisor (GCD)—is the largest number that divides two or more numbers exactly with no remainder.
When numbers a and b are both divisible by number x, then x is a common divisor. The highest of all such common divisors is the HCF.
Method 1: Factorization Approach
Express all numbers as products of prime factors. The HCF is the product of the lowest powers of all common prime factors.
Example: Find HCF of 24 and 36
- 24 = 2³ × 3
- 36 = 2² × 3²
- Common factors: 2² and 3¹
- HCF = 2² × 3 = 12
Method 2: Division Method (Euclidean Algorithm)
Divide the larger number by the smaller, then repeatedly divide the preceding number by each remainder until the remainder becomes zero. The last divisor is the HCF.
Example: Find HCF of 48 and 18
- 48 ÷ 18 = 2 remainder 12
- 18 ÷ 12 = 1 remainder 6
- 12 ÷ 6 = 2 remainder 0
- HCF = 6
For Multiple Numbers: Find the HCF of pairs sequentially. HCF(a, b, c) = HCF(HCF(a, b), c)
Shortcut Method for HCF: A Practical Efficiency Technique
Traditional HCF methods are computationally intensive. A more efficient approach leverages a key principle: the HCF must be a factor of the difference between any pair of numbers.
Logic: For a number to divide both a and b, it must divide their difference (a – b). Therefore, the HCF divides all pairwise differences.
Example: Find HCF of 39, 78, and 195
Calculate differences:
- 78 – 39 = 39
- 195 – 39 = 156
- 195 – 78 = 117
The HCF must divide 39 (the smallest difference, which reduces calculation).
Find factors of 39 (only check below √39 ≈ 6):
- Factors of 39: 1, 3, 13, 39
Test divisibility from the largest factor:
- Does 39 divide 78? Yes (78 ÷ 39 = 2)
- Does 39 divide 195? Yes (195 ÷ 39 = 5)
Therefore, HCF (39, 78, 195) = 39
Why This Works: By using differences, we exploit a mathematical property that significantly reduces the search space, making HCF calculation practical for larger numbers and multiple values.
Least Common Multiple (LCM): Finding the Smallest Common Ground
The LCM is the smallest number that is exactly divisible by each of the given numbers.
For natural numbers a and b, the LCM (denoted LCM(a, b)) is the smallest natural number that both a and b divide evenly.
Method 1: Factorization Approach
Express all numbers as products of prime factors. The LCM is the product of the highest powers of all prime factors present.
Example: Find LCM of 12 and 18
- 12 = 2² × 3
- 18 = 2 × 3²
- LCM = 2² × 3² = 36
Method 2: Common Division Method
Arrange numbers in a row. Divide by numbers that divide at least two values, carrying forward undivisible numbers. Repeat until no two numbers share a divisor except 1. The product of all divisors and remaining numbers is the LCM.
Shortcut Method for LCM: Using Co-prime Logic
The traditional LCM calculation requires prime factorization of all numbers—a tedious process. A more efficient approach uses co-prime relationships.
Key Insight: If we identify co-prime pairs (numbers with HCF = 1) within our set, their product automatically includes all their prime factors. We then only need to add missing prime factors from remaining numbers.
Example: Find LCM of 9, 10, 12, 15
Step 1: Identify co-primes
- 9 and 10 are co-prime (consecutive natural numbers are always co-prime)
- Start with 9 × 10 = 90
Step 2: Check which prime factors from other numbers are missing
For 12 = 2² × 3:
- 90 = 9 × 10 = (3²) × (2 × 5) already contains one 2 and one 3
- 12 needs one more 2
- Multiply: 90 × 2 = 180
For 15 = 3 × 5:
- 180 = 2² × 3² × 5 already contains 3 and 5
- Nothing additional needed
Therefore, LCM(9, 10, 12, 15) = 180
Advantage: This method bypasses full prime factorization of every number, making calculations significantly faster while maintaining accuracy.
Important Properties: Connecting HCF and LCM
Several fundamental relationships connect these concepts:
Property 1: The Fundamental Relationship
For any two numbers: Product of the numbers = HCF × LCM
Example: For 12 and 18:
- HCF = 6, LCM = 36
- 12 × 18 = 216 = 6 × 36 ✓
Property 2: Co-prime Definition
Two numbers are co-prime if and only if their HCF = 1.
Property 3: HCF of Fractions
HCF(a/b, c/d) = HCF(a, c) / LCM(b, d)
Property 4: LCM of Fractions
LCM(a/b, c/d) = LCM(a, c) / HCF(b, d)
These properties are particularly useful when working with rational numbers and more complex problems.
Why These Concepts Matter
HCF and LCM extend beyond pure number theory. They appear in practical contexts:
- Scheduling problems: Finding when events with different cycles coincide (LCM)
- Ratio and proportion: Simplifying fractions to lowest terms (HCF)
- Resource allocation: Dividing quantities fairly among groups (HCF)
- Pattern recognition: Understanding periodic relationships between different cycles (LCM)
Time Efficiency in Problem-Solving
The shortcut methods presented—using difference properties for HCF and co-prime relationships for LCM—represent a practical principle: efficient problem-solving often requires recognizing structural patterns rather than applying standard algorithms mechanically.
Traditional methods (factorization, long division) are reliable but computationally intensive. Shortcut methods leverage mathematical properties to reduce calculation steps. Both approaches yield the same answer; the choice depends on context, time constraints, and the specific numbers involved.
Conclusion: Interconnected Number Properties
HCF and LCM represent two directions of numerical analysis: finding what is common and finding what is universally contained. Together with prime numbers and divisibility properties, they form a coherent framework for understanding how numbers relate to one another.
Mastering these concepts requires understanding both the theoretical foundations and practical computation techniques. The most effective problem-solvers recognize which approach suits a particular problem—when to use factorization, when to use division methods, and when to leverage co-prime shortcuts.