HCF and LCM
Highest Common Factor, Least Common Multiple
HCF (Highest Common Factor), also known as GCD (Greatest Common Divisor), is the largest number that divides two or more numbers without leaving a remainder. LCM (Lowest Common Multiple) is the smallest number that is a multiple of two or more numbers. HCF and LCM are fundamental concepts used extensively in problems involving divisibility, synchronization of cycles, comparison of fractions, and finding common periods in real-world scenarios such as scheduling and production.
Key formulas and rules
Key concepts
Prime Factorisation Method
Express each number as a product of prime factors. For HCF, take each common prime factor with its MINIMUM power (lowest exponent) across all numbers and multiply them. For LCM, take each prime factor that appears in ANY number with its MAXIMUM power (highest exponent) and multiply them. Example: 12 = 2^2 x 3^1, 18 = 2^1 x 3^2. HCF = 2^1 x 3^1 = 6. LCM = 2^2 x 3^2 = 36.
Division Method (Euclidean Algorithm)
For finding HCF of two numbers, divide the larger number by the smaller and note the remainder. Then divide the previous divisor by this remainder. Repeat until the remainder becomes 0. The last non-zero remainder's divisor is the HCF. This method is especially efficient for large numbers where prime factorisation is impractical. Example: HCF(48, 18): 48 / 18 = 2 remainder 12; 18 / 12 = 1 remainder 6; 12 / 6 = 2 remainder 0 -> HCF = 6.