Difficulty: Easy
Correct Answer: 54
Explanation:
Introduction:
This is a simple linear system about two digits. We know the sum and the absolute difference, which uniquely determines the pair (up to order). Once the digits are found, compute their product.
Given Data / Assumptions:
Concept / Approach:
Solve the system using simultaneous equations. Consider both possibilities for the difference: a − b = 3 or b − a = 3. Either way, the product is the same.
Step-by-Step Solution:
Verification / Alternative check:
Try both pairs (9, 6) and (6, 9). Sum 15, difference 3, product 54 in both cases.
Why Other Options Are Wrong:
56, 63, 42 do not correspond to the product of any pair of digits whose sum is 15 and difference is 3; “Cannot be determined” is incorrect because the product is fixed.
Common Pitfalls:
Thinking order affects product (it does not) or miscalculating the difference constraint.
Final Answer:
54
Discussion & Comments