Difficulty: Easy
Correct Answer: 264
Explanation:
Introduction / Context:The fundamental identity for two positive integers a and b is a*b = gcd(a, b) * lcm(a, b). Knowing the LCM, HCF, and one number allows us to compute the other directly by rearrangement.
Given Data / Assumptions:
Concept / Approach:Use b = (HCF * LCM) / a. Ensure a divides the product exactly, since the result must be an integer. Perform simplification before multiplication if convenient.
Step-by-Step Solution:
Compute b = (33 * 2376) / 297.Observe 2376 / 297 = 8 (since 297 * 8 = 2376).Therefore b = 33 * 8 = 264.Verification / Alternative check:Check gcd(297, 264) = 33 and lcm(297, 264) = (297*264)/33 = 2376. Both match the given data, confirming correctness.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:264
Discussion & Comments