Difficulty: Easy
Correct Answer: 82
Explanation:
Introduction:
Represent a two-digit number in terms of its tens and units digits. Swapping the digits changes the value predictably. Combine the swap difference with the sum constraint to solve for both digits.
Given Data / Assumptions:
Concept / Approach:
From the difference equation, derive t − u, then combine with t + u to solve uniquely for digits. Ensure each digit is 0–9 and t ≠ 0 (since it’s a two-digit number).
Step-by-Step Solution:
Verification / Alternative check:
Swapped number 28 is indeed 54 less than 82, and digit sum 8 + 2 = 10.
Why Other Options Are Wrong:
28 and 39 do not satisfy both constraints as the original number; “Cannot be determined” is incorrect because the solution is unique.
Common Pitfalls:
Reversing the difference sign or assuming the smaller number is original.
Final Answer:
82
Discussion & Comments