Difficulty: Medium
Correct Answer: 10
Explanation:
Given data
Concept / Approach
Step-by-step calculation
Ones: 3 + 4 = 7 ⇒ matches the ones digit 7, carry = 0.Tens: a + 8 (+0) = b. For now, b = a + 8, with carrytens = 0 (since a ∈ {0,1} to keep sum < 10; see next line).Hundreds: 4 + 9 + carrytens must produce hundreds digit 3 with a carry 1 to thousands. So 4 + 9 + carrytens = 13 ⇒ carrytens = 0, hence a ∈ {0,1} and b = a + 8.Check a = 0 ⇒ 13b7 = 1387. Divisibility by 11: (1 + 8) − (3 + 7) = 9 − 10 = −1 ≠ 0 ⇒ reject.Check a = 1 ⇒ b = 9 ⇒ 13b7 = 1397. Divisibility by 11: (1 + 9) − (3 + 7) = 10 − 10 = 0 ⇒ divisible.
Result
a = 1, b = 9 ⇒ a + b = 10.
Verification
413 + 984 = 1397 ✓ and 1397 is a multiple of 11.
Common pitfalls
Final Answer
10
Discussion & Comments