How to Find the LCM
The Least Common Multiple (LCM) is the smallest positive number that is a multiple of all given numbers. There are several methods to find it:
Prime Factorization Method
Factor each number into primes, then take the highest power of every prime that appears:
- 12 = 2² × 3
- 18 = 2 × 3²
- LCM = 2² × 3² = 36
GCD Method
For two numbers, use the relationship: LCM(a, b) = |a × b| / GCD(a, b)
Example: LCM(12, 18) = (12 × 18) / GCD(12, 18) = 216 / 6 = 36
Listing Multiples Method
List multiples of each number until you find the first common one:
- Multiples of 4: 4, 8, 12, 16, 20, 24...
- Multiples of 6: 6, 12, 18, 24...
- LCM(4, 6) = 12
Common Uses for LCM
- Adding fractions: Find the least common denominator (LCD), which is the LCM of the denominators
- Scheduling: Determine when repeating events coincide (e.g., two buses with different intervals)
- Gears and pulleys: Calculate when teeth or rotations align
- Music: Finding when rhythmic patterns repeat together
LCM and GCD Relationship
For any two positive integers a and b:
LCM(a, b) × GCD(a, b) = a × b
This means if you know the GCD, you can quickly find the LCM, and vice versa. This calculator shows both values automatically.