I do not really have much background knowledge in number theory, so maybe this question might be fairly trivial to someone that has more experience in such field. However, I was working on a coding problem and noticed that every even digit palindromic number is divisible by $11$, meaning that if a number such as $126621$ is given, then I already know that one of the factors is $11$. I tried to look up some properties of such numbers but did not really help. I tried the following:
The expression $xyst\cdots tsyx$ indicates a palindromic number, where $x,y,s,t,\dots $ are any integers in $\{0,1,\dots ,9\}$, except for $x$ which cannot be $0$. In general, an even palindromic number may be expressed as, with $k\in\mathbb{N}$,
$$x\cdot10^{2k}+y\cdot10^{2k-1}+\cdots+y\cdot10+x.$$ I want to show that \begin{align*}&0\stackrel{?}{=}x\cdot10^{2k}+y\cdot10^{2k-1}+\cdots+y\cdot10+x\mod 11\\ \Rightarrow \qquad&0\stackrel{?}{=}x(10^{2k}+1)+10y(10^{2k-2}+1)+\cdots\mod11\\ \Rightarrow\qquad&0\stackrel{?}{=}\left[\left(x(10^{2k}+1)\mod11\right)+\left(10y(10^{2k-2}+1)\mod11\right)+\cdots\right]\mod 11 \end{align*} as it can be seen each exponent of $10$ is even. I noticed that, when $n$ is even, $$(10^n+1)\mod11=2.$$
So
\begin{align*} &x(10^{2k}+1)\mod11=\left[(x\mod11)\cdot(\right(10^{2k}+1)\mod11)]\mod11=2x\!\!\!\!\!\mod11\\ &10y(10^{2k-2}+1)\mod11=\left[10\cdot y\cdot2\right]\mod 11=20y\mod11\\ \vdots \end{align*} so $$0\stackrel{?}{=}\left[2x\mod11+20y\mod11+200s\mod11+\cdots\right]\mod 11$$ Although I feel like this is leading me nowhere. Is this possible to show or is my initial assumption wrong?