Bunuel
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.
x, y and z are different digits between 0 to 9 (both inclusive).
Let us check for possible values:
x * y = zIf x = 0, then 0 * y = 0, means z would also be equal to 0 but x,y, and z are different digits. So, not a possible case.
If x = 1, then 1 * y = y, means z would also be equal to y but x,y, and z are different digits. So, not a possible case.
If x = 2, and let y = 3 ( as y>x), 2 * 3 = 6........a possible case satisfying the equation.
or x = 2, and let y = 4 ( as y>x), 2 * 4 = 8........a possible case satisfying the equation.
If x=3, and y = 4, then 3 * 4 = 12...the value of z cannot be 12 as its value can only be between 0 to 9 (both inclusive).
Hence, at only x=2, the two possible scenarion exists.
Minimum x = 2
Maximum x = 2