How to solve
The LCM is the smallest positive integer that is a multiple of both. Use LCM(a, b) = ab / GCF(a, b).
Steps
- Find GCF(a, b).
- Compute ab ÷ GCF.
- Check: both a and b should divide the result.
Example
LCM(6, 8)
- GCF(6, 8) = 2.
- LCM = 6·8 / 2 = 24.
Answer: 24
Loading drills…