Difficulty: Medium
Correct Answer: 47
Explanation:
Introduction / Context:This number puzzle involves digit algebra for a two-digit number. The sum of the digits is fixed, and adding a constant reverses the digit order. Translate into equations using tens and units digits, then solve systematically.
Given Data / Assumptions:
Concept / Approach:Use the reversal condition to form a linear equation in a and b. Combine it with the digit-sum equation to find unique integer digits 0–9 that satisfy both constraints.
Step-by-Step Solution:
From reversal: 10a + b + 27 = 10b + a ⇒ 9a - 9b = -27 ⇒ a - b = -3 ⇒ b = a + 3.Digit sum: a + b = 11 ⇒ a + (a + 3) = 11 ⇒ 2a = 8 ⇒ a = 4.Then b = a + 3 = 7.Number = 10a + b = 47.Verification / Alternative check:47 + 27 = 74, which is indeed the reversal of 47. Digit sum 4 + 7 = 11 holds. All conditions satisfied.
Why Other Options Are Wrong:
Common Pitfalls:Mixing tens and units roles or misreading “reversal.” Always write the two equations explicitly to avoid mistakes.
Final Answer:47
Discussion & Comments