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.
We have 2 constraints at hand.
1. x, y, and z are different digits
2. y>x
If we take x as smallest possible digit i.e. x=0, z will also be same i.e. z=0. Not allowed
If we take x as next smallest possible digit i.e. x=1, z will also be same as y i.e. z=y. Not allowed
If we take x as next smallest possible digit i.e. x=2, 2*y=z.
If y=3>2, z=6
If y=4>2, z=8
Thus X minimum is 2.
Now, if we take x=3, then y has to ≥ 4.
If y=4, z=12 but that is not a digit.
Thus not allowed.
Post this analysis, we can conclude that x can not take any value other than 2.
Minimum x = Maximum x = 2
Option B is correct for both columns.