Difficulty: Easy
Correct Answer: 270
Explanation:
Introduction / Context:For any two positive integers a and b, the fundamental identity holds: HCF(a, b) * LCM(a, b) = a * b. This allows quick computation of one product given the numbers themselves.
Given Data / Assumptions:
Concept / Approach:Use the identity directly: the product of HCF and LCM equals the product of the two numbers. There is no need to compute HCF and LCM separately in this case.
Step-by-Step Solution:
Compute a * b = 18 * 15 = 270.Therefore HCF(18,15) * LCM(18,15) = 270.Verification / Alternative check:
Indeed, HCF(18,15) = 3 and LCM(18,15) = 90, and 3 * 90 = 270, confirming the identity.Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
270
Discussion & Comments