A student was given an equation, x * y = z, where x, y, and z are different digits and y > x. Select for Minimum x the least possible value of x, and select for Maximum x the maximum possible value of x. Make only two selections, one in each column.
Answer ->Given ->
- x * y = z
- x, y, and z are different digits
- y > x
x, y and z lie between 0 and 9 included.
For maximum - If z = 9, then factors of 9 are 1, 3, 9. It does not meet the above requirements.
If z = 8, then factors are 1, 2, 4, 8.
8 = 2 * 4, meets the requirements. 2 can be the maximum value that meets the requirements.
Even if we check for z = 7 or z = 6, x = 2 can be the maximum value that meets the requirements.
For mininum - If z = 0, it does not meet the above requirements.
Similarly z = 1, 2, 3, 4, 5 does not meet the above requirements.
If z = 6, then factors are 1, 2, 3, 6.
6 = 2 * 3, meets the requirements. 2 can be the minimun value that meets the requirements.
So, x = 2 is the only value.