I was asked by an elementary school teacher for a proof that you can ignore all 9's when calculating the digital root of a number.
For instance, when calculating the digital root of 7593329, you start by doing 7+5+9+3+3+2+9 = 38, then 3+8 = 11, and finally 1+1 = 2, so the digital root is 2 - but you can also throw away the 9's and consider the number 75332, where 7+5+3+3+2 = 20, and 2+0 = 2, giving the same digital root.
For proving this, I would use that a number $n$ and its digital root $dr(n)$ are equivalent mod $9$, but I am curious about other (or similar) suggestions for the most straightforward or most pedagogical proof/explanation of this fact.
(Of course there's an exception, when a number consists only of $9$'s)
Formally, the digital root is defined as follows, mimicking http://en.wikipedia.org/wiki/Digital_root
Let $n$ be an integer, and let $S(n)$ be the sum of the digits of $n$. Define recursively $S^k(n) = S(S^{k-1}(n))$. At some point, the sequence $S(n), S^2(n), S^3(n), \ldots$ will be constant, and I define the digital root $dr(n)$ to be this constant.
(Edited to respond to OP comment):
Take a 9 in the original number and put it aside. Add up the remaining digits and iterate, getting a digital root between 1 and 9. Now show that adding the 9 to that root gives a number with the same digital root. More formally:
First, note that $dr(x+9) = dr(x)$. Indeed, suppose first that $x$ consists of all $9$'s; then $dr(x) = 9$, and $x+9 = 19\cdots 98$, which also has a digital root of $9$. If $x$ contains some digit not equal to $9$, say $x = \cdots y9\cdots 9$, then $x+9 = \cdots (y+1)9\cdots 98$, and clearly $dr(x+9) = dr(x)$.
This argument also shows that $dr(x+9\cdot 10^n) = dr(x)$ by considering only the portion of $x$ at or to the left of the $10^n$ position.
So suppose $x = y+9\cdot 10^n$, where $y$ has a zero in the $10^n$ position. Then \begin{equation*} dr(x) = dr(y+9\cdot 10^n) = dr(y). \end{equation*} That is, removing the $9$ had no effect on the digital root.