The rule
LCM = product of every prime present, each with its highest exponent
Why it works
The lowest common multiple is the smallest number that all of them divide exactly. From the prime factorisations it is straightforward: take every prime that appears anywhere, each raised to the largest exponent it reaches.
How to do it by hand
- Factor every number into primes
- Take every prime that appears in any of them
- Give each the largest exponent it has anywhere
- Multiply those together
What is worth knowing
The LCM is what you are really finding when you look for a common denominator to add fractions, which is why it turns up in school long before its name does. It is also the answer to any 'when do these coincide again?' question: two buses leaving every 12 and 18 minutes meet again after 36. For two numbers there is a shortcut worth knowing — the LCM is their product divided by their GCD — which avoids factoring entirely when the GCD is easy to find.