next up previous
Next: Solving Polynomial Equations (C) Up: Quadratic Formula (C) Previous: Quadratic Formula (C)

Hidden Quadratic Equations (C)

Sometimes quadratic equations come in disguise like

\begin{displaymath}
u^4 - 3u^2 + 4 = 0\;\;{\rm or}\;\;\frac{u + 2}{u^2 + 1} = 4\end{displaymath}

or even  
 \begin{displaymath}
\frac{e^x - e^{-x}}{2} = 4\end{displaymath} (2)
which can be seen to be a quadratic equation in ex by multiplying through by 2ex.

Hidden quadratic equations such as (2) are most easily solved by substitution. For example, in (2) x only appears as ex (e-x = 1/ex), we let w = ex to get  
 \begin{displaymath}
\frac{w - (1/w)}{2} = 4.\end{displaymath} (3)
Multiplying (3) through by 2w yields w2 - 1 = 8w or w2-8w - 1 = 0, with the side condition that w > 0. Ignoring the side condition for the moment and applying the quadratic formula gives

\begin{displaymath}
w = \frac{8 \pm \sqrt{64 + 4}}{2} = \frac{8 \pm \sqrt{68}}{2} = 4 \pm
\sqrt{17}. \end{displaymath}

Since w > 0 we have $e^x = w = 4 + \sqrt{17}$, so $x = \ln(4 + \sqrt{17})$.

Exercises In each case, solve for x. Remember, x could be a complex number.

1.
x4 + 2x2 + 1 = 0;
2.
$\displaystyle{\frac{x^2 + 9x + 1}{x^2 + 5x + 3} = \frac{1}{3}}$;
3.
$\displaystyle{\frac{x^2 + 9x + 1}{5x + 3} = 5x-3}$;
4.
ex + e-x = 8.
5.
Find the length of the equal sides of an isosceles triangle if the area of the triangle is 5 and the remaining side has length 4.

next up previous
Next: Solving Polynomial Equations (C) Up: Quadratic Formula (C) Previous: Quadratic Formula (C)
Eric S Key
5/8/2001