I didn't find any of the solutions very intuitive or doable in 2 minutes, so I came up with a method but I'm not entirely sure it is correct. Here it is:
Given: x(y + 1) = z
Question: Is |x+y| > z?
Restate the question by opening the absolute value bars and taking both cases.
Is |x+y| > z? is restated as
Is x + y > z --> Is x + y - z > 0
AND
Is -x - y > z --> Is -x - y - z > 0?
If the conditions given satisfy both cases above, we should be able to say that |x+y| > z.
So combine both inequalities by adding them: x + y - z + (- x - y - z) > 0? ---> -2z > 0? ---> z < 0?
We have finally restated the question as, "is z < 0?"
1) x < 0
Tells us nothing about z, insufficient.
2) y > 0
Tells us nothing about z, insufficient.
1) & 2) x < 0 and y > 0 means that x(y+1) = z is <0. Sufficient.
Not sure if I've assumed something wrong here or if there is any other error.
Bunuel chetan2u would be grateful if you guys could help me with this - is this approach correct? If not, could you suggest a better method? Thanks in advance