Polynomial equations with absolute values

351 Views Asked by At

How can I solve: $x^2 + 2|x| - 3 = 0$ ?

My attempt:

$|x| = \frac{3 - x^2}{2}$

$x = \pm \frac{3 - x^2}{2}$

$x^2 \pm 2x - 3 = 0$

The solutions to this 2nd degree polynomial is

$x_1 = -3$

$x_2 = 1$

$x_3 = -1$

$x_4 = 3$

However, only $-1$ and $1$ are solutions. Why?

3

There are 3 best solutions below

0
On

From $|x|=\frac{3-x^2}{2}$, you have to have $\frac{3-x^2}{2}\ge 0$, i.e. $-\sqrt 3\le x\le \sqrt 3$.

2
On

That is very complicated.

Simple hint:

$x^2=\lvert x\rvert^2$. You get a quadratic equation with unknown $\lvert x\rvert$.

0
On

Well, for starters, I'd pretend that the absolute value sign wasn't there and solve it normally. We get $x^2$+2x+3 = (x+3)(x-1).

Since x cannot be negative in your actual equation, -3 can't possibly be a solution. Bernard's hint paves the way to solve the problem.