sandy wrote:
A palindrome is a number, such as 32123, that reads the same forward and backward. How many palindromes are there between 100 and 1000?
Note, all integers between 100 and 1000 will have 3 digits.
Take the task of creating palindromes and break it into stages:
Stage 1: Select a digit to be the hundreds digit AND the units digit
NOTE: In order for the resulting integer to be a palindrome, the units digit must be the SAME as the hundreds digit
The hundreds digit (and units units digit) can be 1,2,3,4,5,6,7,8, or 9
So, this stage can be completed in
9 ways.
Stage 2: Select the tens digit.
This digit can be 0,1,2,3,4,5,6,7,8, or 9
So, this stage can be completed in
10 ways.
By the Fundamental Counting Principle (FCP), we can complete the 2 stages (and thus create a 3-digit palindrome) in (
9)(
10) ways
Answer:
Cheers,
Brent