If a and b are two prime numbers then find LCM(a, b).

Question:

If a and b are two prime numbers then find LCM(ab).

Solution:

Prime factorization:
a = a
b = b

LCM = product of greatest power of each prime factor involved in the numbers = a × b

Thus, LCM(ab) = ab.

Leave a comment