[Math] Why are multiples of 11 palindromes

palindrome

One thing I noticed is that for any integer $-10<a<10$, $11a$ is always a palindrome. I'm assuming this is because 11 is the first row of Pascal's triangle. For that same reason, for any nonnegative integer $n<5$, $(11a)^n$ is a palindrome.

Is there a proof for this? Is there a proper formula that proves that multiples of 11 are palindromes?

Best Answer

Since $11 = 10 + 1$, the binomial theorem gives $$ 11^{n} = (10 + 1)^{n} = \sum_{k=0}^{n} \binom{n}{k} 10^{n - k}. $$ If $0 \leq n < 5$, then $\binom{n}{k} < 10$, i.e., is represented base $10$ by a single digit. Concretely, \begin{align*} 11^{2} &= 121, \\ 11^{3} &= 1331, \\ 11^{4} &= 14641, \\ 11^{5} &= 161051. \end{align*} (At the fifth power, there's carrying from $\binom{5}{2} = \binom{5}{3} = 10$.)

The question about $11a$ is similar but trivial: If $0 < a < 10$ is a single digit base $10$, then $11a = 10a + a$ has decimal representation $aa$.

It's not true that $(11a)^{n}$ is a palindrome, e.g., $22^{5} = 5153632$.