So I've had some trouble understanding what happens when you take the square roots of an inequality.
Am I correct in saying that if
x^2 > n
then
-squareroot(n) > x > +squareroot(n)
and if
x^2 < n
then
-squareroot(n) > x < +squareroot(n)
??
So I've had some trouble understanding what happens when you take the square roots of an inequality.
Am I correct in saying that if
x^2 > n
then
-squareroot(n) > x > +squareroot(n)
and if
x^2 < n
then
-squareroot(n) > x < +squareroot(n)
??
When you take the square root you have the absolute value, so $$x^2 < n \Rightarrow \sqrt{x^2} < \sqrt{n} \\ \Rightarrow |x|<\sqrt{n}$$ That then implies that $-\sqrt{n}<x<\sqrt{n}$
For the other case we have $$x^2 > n \Rightarrow \sqrt{x^2} > \sqrt{n} \\ \Rightarrow |x|> \sqrt{n}$$ which then implies $x>\sqrt{n}$ OR $x<-\sqrt{n}$
You can also draw a picture:

The parabola represents $x^2$ and the horizontal line represents $n$ (assumed to be positive in this picture).
Where do the blue parabola and the purple horizontal line intersect? From that, what can you say about the values of $x$ such that $x^2>n$? What about $x^2<n$?
No, it's incorrect, for example for $n=4$ and $x=5$ (for first) and $x=1$ (for second). It should be:
If $x^2>n$, then $x>\sqrt{n}$ or $x<-\sqrt{n}$.
If $x^2<n$, then $-\sqrt{n}<x$ and $x<\sqrt{n}$
-squareroot(4) > x > +squareroot(4) .... then x must be bigger than 2 (so for example 3^2 is bigger than 4), and it must be smaller than -2, so (-3)^2 is also bigger than 4. Why is this wrong?
– Jin Sep 01 '14 at 20:22