Given - 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.
To find - 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. A set consists of all the 3-digit palindromes will be in "\(aba\)" form
and their product of the digits has 1 as the unit digit.
Means mathematically it will be like
\(a^2*b = xx1\)now we need to find max and min value for b.
min of b can't be zero because it will make product 0So,
range of b will be from 1 to 9
so lets check.
we want final product to have 1 as unit digit,
and that can be happen with 3 digit numbers for \(bmin = 1\) when a^2 ends with the unit digit place as 1, and this will happen when a is 1 or 9.
Now take a look at following digits formation.
when a=1 and b=1, aba = 111 = 1*1*1 =
1and when a=9 and b=1, aba = 919 = 9*1*9 = 8
1as question asked us for any of number in the set. Hence for \(bmin = 1\) we have two possible 3 digit formations 111 and 919.Now lets check for \(bmax\) I will start with max digit 9. \(bmax = 9\)
So now for product of \(a^2*b\) to be ended in \("xx1"\) with the value of \(bmax\) as 9.
we will need \(a^2\) to end in unit digit \(xx9\) and further we know when we multiply that value of \(a^2\) with 9 will get number that will ends with unit digit 1.
So the possible values for \(a^2\) which will lead us to number in the form of \(xx9\) are 3 and 7.
Now take a look at following digits formation.
when a=3 and b=9, aba = 393 = 3*9*3 = 8
1and when a=7 and b=9, aba = 797 = 7*9*7 = 44
1as question asked us for any of number in the set. Hence for \(bmax = 9\) we have two possible 3 digit formation 393 and 797.
Minimum \(bmin = 1\) Option B
Maximum \(bmax = 9\) Option F