OFFICIAL SOLUTION:
If x and y are integers and \(-x \leq y \leq x\), does \(\sqrt{x^2 - y^2} = x + y\)?First of all, \(-x \leq y \leq x\) ensures two things:
1. \(x^2-y^2\geq 0\), so the square root of this number will be defined.
2. \(x+y\geq 0\), so the square root won't be equal to negative number.
Next, \(-x \leq x\) implies that \(x \geq 0\).
And finally, before moving to the statements, let's rephrase the question:
Does \(\sqrt{x^2 - y^2} = x + y\)?
Square both sides: does \(x^2 - y^2 = x^2+2xy + y^2\)?
Does \(xy+y^2=0\)?
Notice here that we cannot reduce this by y, because we'll loose a possible root: \(y=0\).Does \(y(x+y)=0\)?
Does \(y=0\) or \(x=-y\)?
(1) |xy| is NOT a square of an integer. If y = 0 were true, then |xy| would be 0, which is a square of an integer.
If x = -y were true, then |xy| would be y^2, which is a square of an integer (since we are told that y is an integer).
Therefore, since we are told that |xy| is NOT a square of an integer, then neither \(y=0\) nor \(x=-y\) is true. Sufficient.
(2) Point (x, y) is above x-axisIf y = 0 were true, then point (x, y) would be ON the x-axis.
If x = -y were true, then then point (x, y) would be (x, -x), so (non-negative, non-positive), which would mean that it's either on x-axis or below it.
Therefore, since we are told that point (x, y) is above x-axis, then neither \(y=0\) nor \(x=-y\) is true. Sufficient.
Answer: D.