Skip to main content
Logo image

Section A.5 Solving Polynomial Equations

Higher-degree polynomial equations have the form
\begin{align*} \text{degree 3:} \quad \amp a\ r^3 + b\ r + c\ r + d = 0, \\ \text{degree 4:} \quad \amp a\ r^4 + b\ r^3 + c\ r^2 + d\ r + e = 0, \\ \text{degree 5:} \quad \amp a\ r^5 + b\ r^4 + c\ r^3 + d\ r^2 + e\ r + f = 0, \\ \amp \vdots \end{align*}
and it turns out that these equations can always be factored into simpler polynomials. In particular, a polynomial of degree \(n\) can always be factored into \(n\) linear factors:
\begin{align*} \text{degree 3:} \quad \amp (r - r_1)(r - r_2)(r - r_3) = 0, \\ \text{degree 4:} \quad \amp (r - r_1)(r - r_2)(r - r_3)(r - r_4) = 0, \\ \text{degree 5:} \quad \amp (r - r_1)(r - r_2)(r - r_3)(r - r_4)(r - r_5) = 0, \\ \amp \vdots \end{align*}
where \(r_1, r_2, r_3, ...\) are the solutions and can be real or complex.
 3 
This fact is known as the Fundamental Theorem of Algebra.
 4 
A "complex" solution is one that can contain \(\sqrt{-1}\) (imaginary part).
For example, the equation \(x^2 = -4\) has two complex solutions since
\begin{align*} x =\amp\ \pm \sqrt{-4} \\ =\amp\ \pm \sqrt{4\cdot -1} \\ =\amp\ \pm \sqrt{4}\cdot \sqrt{-1} \\ =\amp\ \pm 2\ i \end{align*}
While knowing this is powerful, the process of factoring them can be quite challenging. However, there are some special forms and strategies that can help. A few are summarized below.

Techniques for Solving Higher-Degree Polynomials.

Recognizing Special Forms
Some polynomials can be factored using special patterns. Common forms include:
  • Common Factoring: \(ax^n + bx^{n-1} = x^{n-1}(ax + b)\)
  • Difference of Squares: \(a^2 - b^2 = (a - b)(a + b)\)
  • Sum/Difference of Cubes: \(a^3 \pm b^3 = (a \pm b)(a^2 \mp ab + b^2)\)
Recognizing these forms can help simplify the factorization process.
Known Factors
If you know one factor, then you can “divide-out” the polynomial by this factor. For example, suppose we know that \(x = 1\) is a root of the polynomial
\begin{equation*} x^3 - 6x^2 + 11x - 6 = 0\text{.} \end{equation*}
Then, we know that \((x - 1)\) is a factor, so
\begin{equation*} x^3 - 6x^2 + 11x - 6 = (x - 1)p(x) \end{equation*}
where \(p(x)\) is some second-degree polynomial you multiply by \((x - 1)\) to get our original polynomial. We can find \(p(x)\) by dividing both sides by \(x - 1\text{,}\) like so
\begin{equation*} p(x) = \frac{x^3 - 6x^2 + 11x - 6}{x - 1} \os{\knowl{./knowl/xref/poly-div.html}{how?}}{=} x^2 - 5x + 6 \end{equation*}
Therefore,
\begin{align*} x^3 - 6x^2 + 11x - 6 \amp = (x - 1)(x^2 - 5x + 6)\\ \amp = (x - 1)(x - 2)(x - 3) \end{align*}
Possible Rational Roots
There is a theorem that tells us potential fractional roots of the polynomial. If \(r = \frac{p}{q}\) is a solution, then \(r\) must be of the form
\begin{equation*} r = \pm \frac{\text{factor of } a_0}{\text{factor of } a_n}\text{.} \end{equation*}
This gives us a list of possible solutions to test. For example, if we have the polynomial
\begin{equation*} 2x^3 - 3x^2 - 11x + 6 = 0 \end{equation*}
then the possible factors of \(a_0 = 6\) are \(1, 2, 3, 6\) and the possible factors of \(a_n = 2\) are \(1, 2\text{.}\) Therefore, the possible fractional solutions are
\begin{equation*} \pm \frac{\text{factor of 6}}{\text{factor of 2}} = \pm \frac11, \pm \frac12, \pm \frac21, \pm \frac22, \pm \frac31, \pm \frac32, \pm \frac61, \pm \frac62 \end{equation*}
We can test each of these values to find up to 3 solutions. Once we find one, we can use the previous technique to help find more.
Use Technology
Factoring higher-order polynomials can be very difficult to do by and this is one skill that may be better suited for a computer. There are many software packages that can factor polynomials for you. For example, the Wolfram Alpha website will do it with ease.

Example 57.

Completely factor and solve the following characteristic equations
  1. \(\displaystyle 4\ r^2 - 9 = 0 \)
  2. \(\displaystyle r^2 - 3 = 0 \)
  3. \(\displaystyle r^3 + 3\ r^2 - 4\ r = 0 \)
  4. \(\displaystyle r^5 + 10\ r^4 = 0 \)
  5. \(\displaystyle r^4 - 100\ r^2 = 0 \)
  6. \(\displaystyle r^5 - 4\ r^3 = 0 \)
  7. \(\displaystyle r^4 - 32 = 0 \)
Solution.
The degree of each equation tells you how many factors you should have.
  1. \(4\ r^2 - 9 = 0 \)
    \((2\ r + 3)(2\ r - 3) = 0 \) \(\leftarrow\) difference of squares
    \(2\ r + 3 = 0, \quad 2\ r - 3 = 0 \) \(\leftarrow\) set each factor to 0
    \(\displaystyle r_1 = -\frac32, \quad r_2 = \frac32 \) \(\leftarrow\) solutions
  2. \(r^2 - 3 = 0 \)
    \((r + \sqrt{3})(r - \sqrt{3}) = 0 \) \(\leftarrow\) difference of squares
    \(\displaystyle r_1 = -\sqrt{3}, \quad r_2 = \sqrt{3} \) \(\leftarrow\) solutions
  3. \(r^3 + 3\ r^2 - 4\ r = 0 \)
    \(r\ (r^2 + 3\ r - 4) = 0 \) \(\leftarrow\) common factor
    \(r\ (r + 4)(r - 1) = 0 \) \(\leftarrow\) standard quadratic factoring
    \(\displaystyle r_1 = 0, \quad r_2 = -4, \quad r_3 = 1 \) \(\leftarrow\) solutions
  4. \(r^5 + 10\ r^4 = 0 \)
    \(r^4\ (r + 10) = 0 \) \(\leftarrow\) common factor
    \(\displaystyle r_1 = 0\ (\text{4 repeats}), \quad r_2 = -10 \) \(\leftarrow\) solutions
    Technically, \(r^4 = (r-0)^4\) and represents 4 repeated factors.
  5. \(r^4 - 100\ r^2 = 0 \)
    \(r^2\ (r^2 - 100) = 0 \) \(\leftarrow\) common factor
    \(r^2\ (r + 10)(r - 10) = 0 \) \(\leftarrow\) difference of squares
    \(\displaystyle r_1 = 0\ (\text{2 repeats}), \quad r_2 = -10, \quad r_3 = 10 \) \(\leftarrow\) solutions
  6. \(r^5 - 4\ r^3 = 0 \)
    \(r^3\ (r^2 - 4) = 0 \) \(\leftarrow\) common factor
    \(r^3\ (r + 2)(r - 2) = 0 \) \(\leftarrow\) difference of squares
    \(\displaystyle r_1 = 0\ (\text{3 repeats}), \quad r_2 = -2, \quad r_3 = 2 \) \(\leftarrow\) solutions
  7. \(r^4 - 25 = 0 \)
    \((r^2 + 5)(r^2 - 5) = 0 \) \(\leftarrow\) difference of squares
    \((r^2 + 5)(r - \sqrt{5})(r + \sqrt{5}) = 0 \) \(\leftarrow\) difference of squares
    \(r^2 + 5 = 0, \quad r - \sqrt{5} = 0, \quad r + \sqrt{5} = 0 \) \(\leftarrow\) set each factor to 0
    \(\displaystyle r_1 = -i\sqrt{5}, \quad r_2 = i\sqrt{5}, \quad r_3 = -\sqrt{5}, \quad r_4 = \sqrt{5} \) \(\leftarrow\) solutions
An important concept to remember is that any polynomial can be factored into the product of linear factors, allowing for complex solutions. This is known as the Fundamental Theorem of Algebra. However, factoring higher-degree polynomials can sometimes be challenging and may require the use of technology, such as computer algebra systems or graphing calculators, to find complex or irrational roots.
By combining these techniques, we can solve for the roots of any higher-degree polynomial. Once we have the roots, we can construct the general solution to the higher-order LHCC equation.
For a higher-order LHCC equation like:
\begin{equation} a_n y^{(n)} + a_{n-1} y^{(n-1)} + \cdots + a_1 y' + a_0 y = 0\text{,}\tag{A.3} \end{equation}
the characteristic equation is the polynomial equation we just discussed. Finding the roots \(r_1, r_2, \ldots, r_n\) of this polynomial gives us the general solution:
\begin{equation*} y = C_1 e^{r_1 x} + C_2 e^{r_2 x} + \cdots + C_n e^{r_n x}\text{,} \end{equation*}
where \(C_1, C_2, \ldots, C_n\) are constants determined by initial conditions.
Let’s see an example to solidify these concepts.

Example 58. Solving a Third-Degree Polynomial Equation.

Find the general solution to the third-order LHCC equation:
\(y''' - 6y'' + 11y' - 6y = 0 \)
Solution.
First, write down the characteristic equation:
\begin{gather*} r^3 - 6r^2 + 11r - 6 = 0 \text{.} \end{gather*}
Factoring the polynomial, we get:
\begin{equation*} (r - 1)(r - 2)(r - 3) = 0\text{.} \end{equation*}
Therefore, the roots are \(r = 1, 2, 3\text{.}\)
Since we have three distinct real roots, the general solution to the LHCC equation is:
\begin{equation*} y = C_1 e^{x} + C_2 e^{2x} + C_3 e^{3x}\text{,} \end{equation*}
where \(C_1, C_2, C_3\) are constants determined by initial conditions.

Polynomail Division.

Use polynomial divison to compute
\begin{equation*} \frac{x^3 - 6x^2 + 11x - 6}{x-1} =\ ? \end{equation*}
\(x^2\) \(-\) \(5x\) \(+\) \(6\)
\(x-1\) \(x^3\) \(-\) \(6x^2\) \(+\) \(11x\) \(-\) \(6\)
\(x^3\) \(-\) \(x^2\)
\(-5x^2\) \(+\) \(11x\) \(-\) \(6\)
\(-5x^2\) \(+\) \(5x\)
\(6x\) \(-\) \(6\)
\(6x\) \(-\) \(6\)
\(0\)
Therefore,
\begin{equation*} \frac{x^3 - 6x^2 + 11x - 6}{x-1} = x^2 - 5x + 6\text{.} \end{equation*}
You have attempted of activities on this page.