Arithmetic

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

  1. Find GCF(a, b).
  2. Compute ab ÷ GCF.
  3. Check: both a and b should divide the result.

Example

LCM(6, 8)

  1. GCF(6, 8) = 2.
  2. LCM = 6·8 / 2 = 24.

Answer: 24

Loading drills…