Problem 1
For prime numbers p and q, determine the LCM of A = $p^{5}q^{6}$ and B = $p^{6}q^{3}$.
Answer
LCM(A, B) = $p^{6}q^{6}$.
Solution
- For prime-power forms, the LCM takes the larger exponent of each prime that appears.
- For p, the larger exponent is $\max(5, 6)$ = 6.
- For q, the larger exponent is $\max(6, 3)$ = 6.
- So LCM(A, B) = $p^{6}q^{6}$.