jfdelgado
For any integers x and y, min(x,y) and max(x,y) denote the minimum and the maximum of x and y, respectively. For example, min(5,2)=2 and max(5,2)=5. For the integers a and b, what is the value of max(a,b)?
(1) a > b
(2) ab = −1
This problem contains a common DS trap: a statement doesn't allow you to solve for individual variables but is still sufficient.Here, the prompt defines two functions (min and max) that each have two inputs. So, it's easy to assume that you need to know the values of both a and b to answer the question.
Statement 1:
By itself, this statement gives you no actual values, only relative size, so it is clearly
insufficient.
Statement 2:
Since a and b must both be integers, there are only two possibilities: either a = 1 and b = -1, or a = -1 and b = 1. Only if you include the first statement will you know which possibility is correct, which could lead you to pick choice C.
However, the question isn't asking for the values of a and b individually, but the value of max(a,b). Whether a = 1 or b = 1, the maximum value is 1. This statement is
sufficient alone and the answer is B.
Always make sure you understand what the question is asking for up front, and when you answer, confirm that you're answering the right question.This will help you avoid traps like this one. Another common example is when a question asks for the value of x + y and there is no way to solve for x or y individually, yet you are still able to determine the sum.