There's a really simple framework for this. There are really five possibilities:
- where x is positive and y is positive ==> statement is true; you can imagine away the absolute values in this case
- where x is positive and y is negative ==> statement is not true (try +1 and -1)
- where x is negative and y is positive ==> statement is not true (try -1 and +1)
- where x is negative and y is negative ==> statement is true*
- one of x, y is zero ==> statement is obviously true
Statement (1) tells you that x and y share the same sign, i.e. (+,+) or (-,-). So it's sufficient.
Statement (2) tells you that x and y are negative, i.e. (-,-). So it's sufficient.
Both are individually sufficient.
------
*
Suppose a and b are positive integers; then (-a) and (-b) are negative integers
Let's start with an algebraically true statement: (-a) - (-b) = -a + b = b - a
Let's pose another true statement: |b - a| = |a - b|
And another true statement: |-a| = |a|; |-b| = |b|
So we put these together and say |(-a) - (-b)| = |b - a| = |a-b| = ||a| - |b|| = ||(-a)| - |(-b)||