Bunuel
Solution:
We see that the last digit of the number can be 2, 4, 6, or 8 since it has to be even, and since it’s a palindrome, the last and first digits have to match and the first digit can’t be 0. In other words, the first digit can also be 2, 4, 6, or 8. However, since the middle digit has no restriction, it can be any of the 10 digits. Therefore, there are 4 x 10 x 1 = 40 such numbers (notice that the last factor is 1 because the last digit has to match whatever the first digit is). So the question is what is the sum of these 40 numbers?
Of these 40 numbers, 10 numbers begin with the digit 2, next 10 with 4, another 10 with 6 and the remaining 10 with 8. Let’s look at the 10 numbers that begin with 2. Their sum is:
202 + 212 + 222 + … + 292 = (200 x 10) + (10 + 20 + … + 90) + (2 x 10)
Similarly, the 10 numbers that begin with 4 have a sum of:
404 + 414 + 424 + … + 494 = (400 x 10) + (10 + 20 + … + 90) + (4 x 10)
The 10 numbers that begin with 6 have a sum of:
606 + 616 + 626 + … + 696 = (600 x 10) + (10 + 20 + … + 90) + (6 x 10)
And finally, the 10 numbers that begin with 8 have a sum of:
808 + 818 + 828 + … + 898 = (800 x 10) + (10 + 20 + … + 90) + (8 x 10)
Adding all the expressions on the right hand side of the equal sign and simplifying it, we have:
(200 + 400 + 600 + 800) x 10 + (10 + 20 + … + 90) x 4 + (2 + 4 + 6 + 8) x 10
= 2000 x 10 + 450 x 4 + 20 x 10
= 20,000 + 1,800 + 200
= 22,000
Answer: A