Table of Contents
Last modified on November 29th, 2024
Solving polynomial equations involves finding the values of the variable(s) that satisfy the given equation. These values are known as the roots or solutions.
The methods for solving polynomial equations depend on the degree of the polynomial, which is the highest power of the variable in the expression.
Let us solve the linear polynomial (degree 1) 2x + 3 = 0
Isolating the Variable x
Subtracting 3 from both sides, we get
2x + 3 – 3 = 0 – 3
⇒ 2x = -3
Solving for the Variable x
On dividing both sides by 2, we get
⇒ ${\dfrac{2x}{2}=-\dfrac{3}{2}}$
⇒ ${x=-\dfrac{3}{2}}$
Thus, the solution is ${x=-\dfrac{3}{2}}$
However, solving higher-degree polynomials is a little more complex.
Factoring involves rewriting the polynomial as a product of binomials and applying the Zero Product Property, which states that if the product of two factors equals zero, then at least one of the factors must be zero.
If a ⋅ b = 0, then either a = 0 or b = 0 (or both)
Now, let us solve the quadratic polynomials x2 + 6x + 8 = 0
Splitting the Middle-Term
⇒ x2 + 4x + 2x + 8 = 0
Factoring the Polynomial
⇒ x(x + 4) + 2(x + 4) = 0
⇒ (x + 4)(x + 2) = 0
Using Zero Product Property
⇒ (x + 4) = 0 or (x + 2) = 0
Solving for the Variable x
⇒ x = -4 or x = -2
Thus, the solutions are x = -4, x = -2
The quadratic formula is another method for solving quadratic polynomial equations of the form:
ax2 + bx + c = 0
Here, the roots can be found by
${x=\dfrac{-b\pm \sqrt{b^{2}-4ac}}{2a}}$
Let us solve 2x2 – 4x – 6 = 0
Comparing With the Standard Form
Here, a = 2, b = -4, and c = -6
Substituting in the Formula
${x=\dfrac{-\left( -4\right) \pm \sqrt{\left( -4\right) ^{2}-4\times 2\times \left( -6\right) }}{2\times 2}}$
Simplifying
⇒ ${x=\dfrac{4\pm \sqrt{16+48}}{4}}$
⇒ ${x=\dfrac{4\pm \sqrt{64}}{4}}$
⇒ ${x=\dfrac{4\pm 8}{4}}$
⇒ x = 3 or x = -1
Thus, the solutions are x = 3, x = -1
This method involves factoring by grouping and applying the Zero Product Property.
Let us solve the cubic polynomial x3 + 2x2 – x – 2 = 0
Grouping Terms
⇒ (x3 + 2x2) – (x + 2) = 0
Factoring Each Group
⇒ x2(x + 2) – 1(x + 2) = 0
⇒ (x + 2)(x2 – 1) = 0
⇒ (x + 2)(x + 1)(x – 1) = 0
Using Zero Product Property
⇒ (x + 2) = 0, (x + 1) = 0, or (x – 1) = 0
Solving for the Variable x
⇒ x = -2, x = -1, or x = 1
Thus, the solutions are x = -2, x = -1, or x = 1
This method helps us solve higher-degree polynomials when one root is known. Here, we divide a polynomial by a linear factor of the form (x – r), where r is the known root.
Let us solve x3 – 6x2 + 11x – 6 = 0 when x = 1 is one of the roots.
Perform Synthetic Division
Here,
Factoring the Polynomial
Now, x3 – 6x2 + 11x – 6 = 0
⇒ (x – 1)(x2 – 5x + 6) = 0
Factoring Each Group
⇒ (x – 1)(x2 – 3x – 2x + 6) = 0
⇒ (x – 1) [x(x – 3) – 2(x – 3)] = 0
⇒ (x – 1)(x – 3)(x – 2) = 0
Using Zero Product Property
⇒ (x – 1) = 0, (x – 3) = 0, or (x – 2) = 0
⇒ x = 1, x = 3, or x = 2
Thus, the solutions are x = 1, x = 3, or x = 2
Solve x3 – 3x2 – 4x + 12 = 0
Given, x3 – 3x2 – 4x + 12 = 0
⇒ x2(x – 3) – 4(x – 3) = 0
⇒ (x – 3)(x2 – 4) = 0
⇒ (x – 3) = 0 or (x2 – 4) = 0
⇒ x = 3 or x = ± 2
Solve x2 + 4x – 5 = 0
Given, x2 + 4x – 5 = 0
⇒ x2 + 5x – x – 5 = 0
⇒ x(x + 5) – 1(x + 5) = 0
⇒ (x + 5)(x – 1) = 0
⇒ (x + 5) = 0 or (x – 1) = 0
⇒ x = -5 or x = 1
Solve the 4th order polynomial: x4 – 6x3 + x2 – 6x
Given, x4 – 6x3 + x2 – 6x = 0
⇒ x3(x – 6) + x(x – 6) = 0
⇒ (x – 6)(x3 + x) = 0
⇒ (x – 6) [x(x2 + 1)] = 0
⇒ x(x – 6)(x2 + 1) = 0
Find the solutions of the polynomial equation 2x2 – 5x = -3 using the quadratic formula
Given, 2x2 – 5x = -3 …..(i)
Comparing (i) with the standard form of the quadratic equation ax2 + bx + c = 0, we get
2x2 – 5x = -3
⇒ 2x2 – 5x + 3 = 0
Thus, a = 2, b = -5, and c = 3
Now, ${x=\dfrac{-b\pm \sqrt{b^{2}-4ac}}{2a}}$
⇒ ${x=\dfrac{-\left( -5\right) \pm \sqrt{\left( -5\right) ^{2}-4\times 2\times 3}}{2\times 2}}$
⇒ ${x=\dfrac{5\pm \sqrt{25-24}}{4}}$
⇒ ${x=\dfrac{5\pm \sqrt{1}}{4}}$
⇒ ${x=\dfrac{5\pm 1}{4}}$
⇒ x = ${\dfrac{3}{2}}$ or x = ${1}$
Thus, the solutions are x = ${\dfrac{3}{2}}$, x = ${1}$
Last modified on November 29th, 2024