Difficulty: Easy
Correct Answer: 132
Explanation:
Introduction / Context:
The product of two positive integers equals the product of their GCD and LCM. Given the GCD (H.C.F.), LCM, and one number, we can find the other number directly from this relationship. Here, the first number is clarified as 88 via the quotient condition “first number divided by 2 equals 44.”
Given Data / Assumptions:
Concept / Approach:
Use the identity a*b = HCF * LCM. Rearranging gives b = (HCF * LCM) / a. Substitute the known values and compute b. This method is standard and robust for such problems.
Step-by-Step Solution:
Verification / Alternative check:
Check gcd(88, 132) = 44 and lcm(88, 132) = (88*132)/44 = 264. Both match the given, confirming correctness.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
132
Discussion & Comments