Re: A palindrome is a number that reads the same backward and forward, suc
[#permalink]
21 Jan 2022, 00:12
I doubt it could be solved in under 3minutes!.. Please let me know if there is a shorter method
for 100s, we have following palindromes... 101 and 111,121, 131.... 191. We can split this as 100+11, 100+21, 100+31.. sum of this is equal to 100*9 + 11+21+...91
Similarly for 2s, we have 202, 212, 222, 232, 242... 292.. We can again split this as 200+11+1, 200+21+2, 200+11+3... This will result in 200 + 11, 200 +21... 200 +91, + 9. Sum of this is 200*9 + 11+21+31...+91 + 9
For 300s, this will result in 300+11, 300+21, 300+21 + 2*9..
Going for other numbers, we will find a similar pattern. So we will have 4 APs altogether...
101+202+303+...+909 ; 900+1800+2700...+8100; 11+21+31+...+91; and 0+9+18+..+72. Note that 11+21+31+..+91 series is repeated 9 times so we need to multiply sum of this series by 9.
Sum of AP = Middle term * no. of terms
Hence,
Sum of
AP 1 = 505*9; AP 2 = 4500*9; AP 3 = 51*9*9; AP 4 = 36*9
= 9 * (505+4500+459+35)
= 9* (5500)
= 495000
(C) IMO