Difficulty: Easy
Correct Answer: 221
Explanation:
Introduction / Context:
We use the product identity for two integers a and b: a*b = gcd(a, b) * lcm(a, b). Given gcd and lcm along with one number, the other number follows immediately from algebraic manipulation.
Given Data / Assumptions:
Concept / Approach:
Compute b = (gcd * lcm) / a. Simplify before multiplying if helpful, to avoid large intermediate values and reduce arithmetic errors.
Step-by-Step Solution:
Verification / Alternative check:
Check gcd(117, 221) = 13 and lcm(117, 221) = (117*221)/13 = 1989. Both conditions are satisfied, verifying the result.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
221
Discussion & Comments