How many 4-digit palindromic numbers are divisible by 99?
A palindromic number is a number that reads the same backward or forward.
Examples: 2002, 3113, 9999...etc
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
We know that any four digit palindromic number is divisible by 11. To see that take the following:
a b b a = a × 1 0 0 0 + b × 1 0 0 + b × 1 0 + a = 1 0 0 1 a + 1 1 0 b = 1 1 ( 9 1 a + 1 0 b ) , which indicates that a b b a is divisible by 1 1 .
In general, any palindromic number with even number of digits is divisible by 11.
Now, we need to take out of those the ones that are divisible by 9 too.
9 ∣ a b b a ⟹ 9 ∣ 2 ( a + b ) ⟹ 9 ∣ ( a + b )
Since a = 0 ⟹ a + b = 9 o r a + b = 1 8 .
For a + b = 9 , we have 9 solutions ( 1 , 8 ) , ( 2 , 7 ) , ( 3 , 6 ) , . . . , ( 9 , 0 ) and for a + b = 1 8 we have 1 solution ( 9 , 9 ) .
Thus, the number of 4-digit palindromic numbers that are divisible by (11 and 9) is 10.