How many ordered triples of positive integers satisfy and ?
- A)
- B)
- C)
- D)
- E)
Answer
A
Key insight
Work one prime at a time: each lcm condition fixes the maximum of two exponents, and the counts for primes 2, 3, 5 (5, 3, 1) multiply.
Solution
Factor: , , . No other primes can appear in . Since an lcm takes the larger exponent of each prime, the three conditions separate prime by prime; let carry exponents for the prime under consideration.
Prime 2: , , . Neither nor can be , so . Then with : pairs.
Prime 3: , , . Since , we need . Then with : pairs.
Prime 5: forces , and then forces : way.
The exponent choices for different primes are independent, so the number of triples is .
The answer is .
Why this works
Conditions built from gcd and lcm are statements about exponents, one prime at a time, and the primes never interact, so the answer is a product of small counts. Within each prime, an lcm equation means one of equals and the other is at most ; combining three such equations usually forces one exponent outright and leaves a "max equals " count of for the other two.
The trap
Counting exponent pairs with max equal to the target as (target + 1)^2 pairs instead of 2(target) + 1, or forgetting that a forced exponent (like 3 for the prime 2 in x) removes freedom.
Common mistakes
- Counting exponent pairs with max equal to the target as (target + 1)^2 pairs instead of 2(target) + 1, or forgetting that a forced exponent (like 3 for the prime 2 in x) removes freedom.
- Mixing up which variable is forced for each prime (for the prime 3 it is , not ), which changes the remaining count.
Techniques
Split into exhaustive cases and handle each · Set up the equation/formula and compute; no special trick needed