The digital root of an 8-digit number is 5. What will be the digital root of 10 more than that number?
Hint. Use the fact that the digital root is the remainder mod 9, rather than trying to track the digits.
Step 1 — Translate the given information. The digital root of a number equals its remainder on division by 9. So if the digital root of n is 5, then n ≡ 5 (mod 9).
Step 2 — See what adding 10 does. 10 leaves remainder 1 on division by 9, since 10 = 9 + 1. So n + 10 ≡ 5 + 1 = 6 (mod 9).
The digital root of n + 10 is therefore 6.
Step 3 — Why the mod-9 route is the right one. It is tempting to say "adding 10 raises the tens digit by 1, so the digit sum goes up by 1". That is true only when the tens digit is not 9 — otherwise carrying changes several digits at once. Working with the remainder avoids the issue completely, because the remainder argument holds no matter how much carrying occurs.
Example with carrying: take n = 40000091, whose digit sum is 14 → 5 ✓. Then n + 10 = 40000101, digit sum 6 ✓ — still 6, even though three digits changed. Example without: n = 40000001 has digital root 5, and n + 10 = 40000011 has digital root 6 ✓
The fact that the number has 8 digits is a red herring — the answer does not depend on the length at all.
✦ 6, since the digital root is the remainder mod 9 and 10 ≡ 1 (mod 9), so the root increases by exactly 1 regardless of any carrying.
