ProfessorFilostrato said:
square root of(x + 2) = x
Ah, that's a little different.
First, very first, before anything else, is Domain considerations.
sqrt(x+2) <== In order for this to existin the Real numbers, x+2 >= 0, or x >= -2.
Now, we have a whole patch of Real numbers that we won't even have to try. If we get x = -3, we'll just throw it out. Don't even bother to check it.
Further, sqrt(x+2), by convetion, means the Positive square root. It does NOT mean +/- anything. Thus, with a bit of ponder that I'll let you do, x >= 0. We managed to narrow down the Domain a bit more. Negative values WILL NOT do. Don't even bother th check them.
sqrt(x+2) = x
Square both sides (a risky business)
x+2 = x^2
x^2 - x - 2 = 0
(x-2)(x+1) = 0
x = 2 or x = -1
Only x = 2 is in the Domain, so let's check it in the ORIGINAL equation.
sqrt(2+2) = 2 ???
sqrt(4) = 2 ???
2 = 2 Check
Done.
If you would like to check x = -1, you may, bet we know already that it won't work.
sqrt(-1+2) = -1 ???
sqrt(1) = -1 ???
1 = -1 Nope - That's no good.
Did I mention how important the Domain consideration were?