Question

Difficulty: MediumPrime Factorization, GCD, and LCM

For two positive integers mm and nn, the greatest common divisor is gcd(m,n)=15\gcd(m, n) = 15 and the least common multiple is lcm(m,n)=900\text{lcm}(m, n) = 900. If m=75m = 75, what is the total number of positive divisors of nn?

  1. 18Answer
  2. B
    9
  3. C
    5
  4. D
    12
  5. E
    3

Answer

18
The correct answer is 18. First, use the relation mn=gcd(m,n)lcm(m,n)m \cdot n = \gcd(m, n) \cdot \text{lcm}(m, n) to find n=1590075=180n = \frac{15 \cdot 900}{75} = 180. Next, write 180 in prime factorized form: 180=223251180 = 2^2 \cdot 3^2 \cdot 5^1. The total number of positive divisors is found by adding 1 to each exponent and multiplying the results: (2+1)(2+1)(1+1)=332=18(2 + 1)(2 + 1)(1 + 1) = 3 \cdot 3 \cdot 2 = 18.

Step-by-Step Solution

1
Calculate the value of nn using the fundamental product identity for GCD and LCM.
n=gcd(m,n)lcm(m,n)m=1590075=180n = \frac{\gcd(m, n) \cdot \text{lcm}(m, n)}{m} = \frac{15 \cdot 900}{75} = 180.
For any two positive integers, the product of the integers equals the product of their GCD and LCM.
2
Find the prime factorization of 180180.
180=223251180 = 2^2 \cdot 3^2 \cdot 5^1.
Breaking down 180 into prime powers allows determination of the total count of positive divisors.
3
Apply the divisor counting formula by adding 1 to each prime exponent and multiplying.
(2+1)(2+1)(1+1)=332=18(2+1)(2+1)(1+1) = 3 \cdot 3 \cdot 2 = 18.
If an integer has prime factorization p1e1p2e2pkekp_1^{e_1} p_2^{e_2} \cdots p_k^{e_k}, the number of positive divisors is (e1+1)(e2+1)(ek+1)(e_1+1)(e_2+1)\cdots(e_k+1).

Key Concept

GCD and LCM fundamental identity (ab=gcd(a,b)lcm(a,b)a \cdot b = \gcd(a,b) \cdot \text{lcm}(a,b)) combined with the prime factorization divisor counting formula.
Estimated Time:1m 30s
Rate this question