study
Is \(|x - y| > |x| - |y|\)?
(1) \(y < x\)
(2) \(xy < 0\)
Explanation from RON (Manhattan)
Statement (1)
let's try x = 2, y = 1
is |2 - 1| > |2| - |1| ?
no.
let's try x = -1, y = -2
is |-1 - (-2)| > |-1| - |-2| ?
yes.
Insufficient.
Statement (2)
this means we have to pick OPPOSITE SIGNS. therefore, there are basically 6 cases to try:
* x is negative "bigger", y is positive "smaller"
* x is negative, y is positive, same magnitude
* x is negative "smaller", y is positive "bigger"
* x is positive "bigger", y is negative "smaller"
* x is positive, y is negative, same magnitude
* x is positive "smaller", y is negative "bigger"
If you try all of these --
-2, 1 --> is |-3| > 2 - 1? YES
-1, 1 --> is |-2| > 0? YES
-1, 2 --> is |-3| > 1 - 2? YES
2, -1 --> is |3| > 2 - 1? YES
1, -1 --> is |2| > 0? YES
1, -2 --> is |3| > 1 - 2? YES
the pattern is pretty clear: in each of these cases, the two numbers' magnitudes are working together on the left, but against each other on the right. therefore, the left-hand side is always going to be bigger.
Sufficient.