Difficulty: Medium
Correct Answer: 15.6
Explanation:
Introduction / Context:This problem blends digit constraints with a fixed difference after digit reversal. Because the units digit equals the square of the tens digit, only a few two-digit candidates exist, which can be checked quickly against the given difference. Once the original number is identified, computing 40% is straightforward.
Given Data / Assumptions:
Concept / Approach:Since b = a^2 must be a single digit, possible a values are 1, 2, or 3 (yielding b = 1, 4, 9). Form the candidate numbers 11, 24, and 39 and test the absolute difference after swapping digits. Select the one that satisfies the 54 difference condition, then evaluate 40% of that number.
Step-by-Step Solution:
Candidates: a = 1 → 11; a = 2 → 24; a = 3 → 39.Compute differences with reversals: |11 − 11| = 0, |24 − 42| = 18, |39 − 93| = 54.Only 39 satisfies the 54-difference condition.Compute 40%: 0.40 * 39 = 15.6.Verification / Alternative check:Reversal check holds for 39 ↔ 93 with difference 54; the digit constraint b = a^2 is satisfied since 9 = 3^2.
Why Other Options Are Wrong:14.4 (which is 40% of 36), 16, 12, and 18 correspond to incorrect original numbers or arbitrary guesses; they do not align with both the digit-square constraint and the 54 difference requirement.
Common Pitfalls:Including a = 4 (which would require b = 16, not a single digit), or forgetting the absolute value in the “difference” statement, which could flip signs and mislead the check.
Final Answer:15.6
Discussion & Comments