When I was doing some hexadecimal calculation, I found that a trick that I've known that it exists in decimal arithmetic, also exists in hexadecimal one, that is, the shortcut for multiplying by 11.
Here are some examples, multiply some decimals by 11, giving that: \begin{align*} 11_{10} \times{} 11_{10} &:= 1\ (1+1)\ 1 = 121_{10} \\ 62_{10} \times{} 11_{10} &:= 6\ (6+2)\ 2 = 682_{10} \\ 65_{10} \times{} 11_{10} &:= 6\ (6+5)\ 5 = 715_{10} \\ 78_{10} \times{} 11_{10} &:= 7\ (7+8)\ 8 = 858_{10} \\ \end{align*}
While treating them as hexadecimals, then multiply them by hexadecimal $11_{16}$ as well, giving that: \begin{align*} 11_{16} \times{} 11_{16} &:= 1\ (1+1)\ 1 = 121_{16} \\ 62_{16} \times{} 11_{16} &:= 6\ (6+2)\ 2 = 682_{16} \\ 65_{16} \times{} 11_{16} &:= 6\ (6+5)\ 5 = 6\text{B}5_{16} \\ 78_{16} \times{} 11_{16} &:= 7\ (7+8)\ 8 = 7\text{F}8_{16} \\ \end{align*}
I don't think this is of a coincidence, there must be a rigorous mathematical proof that supports it. However I have no idea how to prove this kind of things, could anyone give some suggestions? Thanks in advance!