I'd never seen this kind problem before, and don't know where to start. Any help is appreciated. Thank you very much!
A palindrome is a number that is the same forwards and backwards. For example, $212$ and $21466412$ are palindromes. Consider an arbitrary palindrome with n digits where n is even. Find a formula, in terms of $n$, of how many $n$-digit palindromes exist. All equivalent answers will be accepted.
Since you're given that $n$ is even, simply think of it as a sequence of $\frac n2$ digits that's mirrored to give the latter half.
The number of such unique $\frac n2$ left-most digit sequences is found by considering that the first digit has $9$ possibilities ($1$ to $9$ inclusive) and the rest have $10$ each ($0$ to $9$ inclusive).
So the number of possibilities is $9 \times 10^{\frac n2 - 1} = (0.9)10^{\frac n2}$