How do you solve #sqrt(x^2 + 4) -sqrt(x + 10) = 0#?

1 Answer
Aug 5, 2015

#{(x = -2), (x=3) :}#

Explanation:

Notice that you are dealing with the difference of two terms, which can only be equal to zero if the two terms in question are equal to each other.

This means that you can write

#sqrt(x^2+4) - sqrt(x+10) = 0 <=> sqrt(x^2+4) = sqrt(x+10)#

Your possible solution(s) must satisfy the condition #x+10>=0#, since you cannot take the square root of a negative number if you're interested in a solution that's a real number.

So, you need

#x+10 >=0 => x>= -10#

Square both sides of the equation to get rid of the radicals

#(sqrt(x^2+4))^2 = (sqrt(x+10))^2#

#x^2 + 4 = x + 10#

Move all the terms to one side of the equation and use the quadratic formula to determine the two solutions

#x^2 - x - 6 = 0#

#x_(1,2) = ((-1) +- sqrt((-1)^2 - 4 * 1 * (-6)))/(2 * 1)#

#x_(1,2) = (1 +- sqrt(25))/2 = (1+-5)/2 = {(x_1 = (1 + 5)/2 = 3), (x_2 = (1-5)/2 = -2) :}#

Since both values satisfy the condition #x>=-10#, they will be both valid solutions to the original equation.