The Quadratic Formula
In order to solve a quadratic equation (a second degree polynomial equation) using the quadratic formula, we must first put the equation into the "standard form" $ax^2 + bx + c=0$. Once this is done, we simply substitute the coefficients $a, b, \text{and }, c$ into the formula
$$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$$
The quantity $b^2 - 4ac$ under the radical sign is called the "discriminant" of the equation. Its sign can tell us about the number and type of solutions of the equation:
- If $b^2 - 4ac > 0$, then there are two distinct real solution of the equation.
- If $b^2 - 4ac < 0$, then there are two complex conjugate solutions of the equation.
- If $b^2 - 4ac = 0$, then the equation has a single real number solution, $\frac{-b}{2a}$.
As an example, suppose the equation is $(2x - 3)(x + 1) = x^2 - 9$. First, we must put the equation into standard form ($ax^2 + bx + c = 0$):
\begin{align}
(2x - 3)(x + 1) = x^2 - 9 &\implies 2x^2 - x - 3 = x^2 - 9\\
&\implies x^2 - x + 6 = 0
\end{align}
Now we can identify the coefficients $a = 1$, $b = -1$ and $c = 6$. The discriminant $b^2 - 4ac$ has value $(-1)^2 - 4(1)(6) = 1 - 24 = -23$. Therefore, the solutions are complex conjugates given by:
\begin{equation}
x = \frac{-(-1) \pm \sqrt{-23}}{2(1)} = \frac{1 \pm \sqrt{-23}}{2} =
\frac{1}{2} \pm \frac{\sqrt{23}}{2}\,i
\end{equation}