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:
b = (13 * 1989) / 117.Note 117 = 9 * 13; thus (13 * 1989) / 117 = 1989 / 9.Compute 1989 / 9 = 221.Hence the other number is 221.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