So the question refers to 3-digit palindromes. Since the first and last digits must be the same, we can write this like this
X Y X
The next bit of crucial information is that the product of the digits has 1 as the unit digit. We can write that as follows
X*Y*X = ____1
Lastly we are asked to find the minimum possible value of the tens digit of any of the numbers in the set and the maximum possible value of the tens digit of any of the numbers in the set.
First let's have a look at all the digits that are possible for X.
0 - Not possible
1 - Possible as the multiple of the digits in
111 equals 1 and therefore a valid palindrome.
2 - 2*2 = 4, and no multiple of 4 ends in a 1, so NOT possible.
3 - 3*3 = 9, and 9*9 = 81 which ends in a 1 so
393 is a valid palindrome.
4 - 4*4 = 16 and no multiple of 16 ends in a 1 so NOT possible.
5 - 5*5 = 25 and no multiple of 25 ends in a 1 so NOT possible.
6 - 6*6 = 36 and like with 4, no multiple of 36 ends in a 1: NOT possible
7 - 7*7 = 49 and 49*9 will end in a 1, so
797 is a valid palindrome.
8 - 8*8 = 64 and no multiple of 64 ends in a 1 so NOT possible
9 - 9*9 = 81, which when multiplied by 1 will end in 1 so
919 is a valid palindrome.
As we can see, there are four valid palindromes and if we look at the tens value, it is either
9 or
1Therefore
Maximum: 9
Minimum: 1
Bunuel
A palindrome is a number that reads the same when read from either end. For example, 12321 is a palindrome. A set consists of all the 3-digit palindromes whose product of digits has 1 as the unit digit. Select for
Minimum the minimum possible value of the tens digit of any of the numbers in the set, and select for
Maximum the maximum possible value of the tens digit of any of the numbers in the set. Make only two selections, one in each column.