Source codeVideos

Command Palette

Search for a command to run...

Polynomial

Complete Polynomial Factorization

Understanding Complete Factorization

We have learned to factor polynomials, for example using the Factor Theorem. However, sometimes the factorization result still leaves factors that are not linear (like quadratic factors) which cannot be factored further using real numbers.

Complete Factorization (or Complete Linear Factorization) is the process of factoring a polynomial into a product of linear factors, where these factors may involve complex numbers.

This concept is based on the Fundamental Theorem of Algebra, which states that every polynomial of degree n1n \ge 1 has exactly nn roots (zeros) in the set of complex numbers (including real roots and repeated roots).

Complete Factorization Property of Polynomials

If P(x)P(x) is a polynomial of degree n1n \ge 1 with leading coefficient an0a_n \neq 0, then there exist complex numbers c1,c2,,cnc_1, c_2, \dots, c_n (which are the roots of P(x)P(x)) such that:

P(x)=an(xc1)(xc2)(xcn)P(x) = a_n(x - c_1)(x - c_2)\dots(x - c_n)

This means that every polynomial of degree nn can be broken down into exactly nn linear factors (xroot)(x - \text{root}) multiplied by its leading coefficient.

Steps for Complete Factorization

To perform a complete factorization of a polynomial P(x)P(x):

  1. Find All Complex Roots: Find all nn complex roots (zeros) of P(x)=0P(x) = 0. This might involve:

    • Factoring directly (grouping, etc.).
    • Using the Rational Zero Theorem to find rational roots.
    • Using division (Horner/long division) to reduce the degree of the polynomial after a root is found.
    • Solving quadratic equations (using the quadratic formula) which might yield complex roots a±bia \pm bi.
  2. Apply the Factor Theorem: For each root cic_i found, form its linear factor, which is (xci)(x - c_i).

  3. Write the Complete Factorization: Multiply all the obtained linear factors by the leading coefficient ana_n of P(x)P(x).

    P(x)=an(xc1)(xc2)(xcn)P(x) = a_n(x - c_1)(x - c_2)\dots(x - c_n)

Using Complete Factorization

Find all complex zeros of P(x)=x3x2+x1P(x) = x^3 - x^2 + x - 1 and factor the polynomial completely.

Solution:

  1. Find Roots: Let's try to factor P(x)P(x) first.

    • Factor by grouping:

      P(x)=(x3x2)+(x1)P(x) = (x^3 - x^2) + (x - 1)
      P(x)=x2(x1)+1(x1)P(x) = x^2(x - 1) + 1(x - 1)
      P(x)=(x2+1)(x1)P(x) = (x^2 + 1)(x - 1)
    • Now, find the roots by setting P(x)=0P(x) = 0:

      (x2+1)(x1)=0(x^2 + 1)(x - 1) = 0
    • This gives two possibilities:

      • x1=0    x=1x - 1 = 0 \implies x = 1
      • x2+1=0    x2=1    x=±1    x=±ix^2 + 1 = 0 \implies x^2 = -1 \implies x = \pm\sqrt{-1} \implies x = \pm i

    So, the complex roots are 1,i,i1, i, -i.

  2. Form Linear Factors:

    • From the root 11, the factor is (x1)(x - 1).
    • From the root ii, the factor is (xi)(x - i).
    • From the root i-i, the factor is (x(i))=(x+i)(x - (-i)) = (x + i).
  3. Write Complete Factorization:

    The leading coefficient of P(x)P(x) is a3=1a_3 = 1.

    P(x)=1(x1)(xi)(x+i)P(x) = 1 \cdot (x - 1)(x - i)(x + i)
    P(x)=(x1)(xi)(x+i)P(x) = (x - 1)(x - i)(x + i)

Exercise

Find all complex zeros of P(x)=x33x2+x+5P(x) = x^3 - 3x^2 + x + 5, then factor P(x)P(x) completely.

Answer Key

  1. Find Rational Roots (Rational Zero Theorem):

    • a0=5a_0 = 5, factors pp: ±1,±5\pm 1, \pm 5.

    • an=1a_n = 1, factors qq: ±1\pm 1.

    • Possible roots p/qp/q: ±1,±5\pm 1, \pm 5.

    • Test x=1x = -1:

      P(1)=(1)33(1)2+(1)+5=13(1)1+5=131+5=0P(-1) = (-1)^3 - 3(-1)^2 + (-1) + 5 = -1 - 3(1) - 1 + 5 = -1 - 3 - 1 + 5 = 0

      So, x=1x = -1 is a root, and (x+1)(x+1) is a factor.

  2. Divide using Horner's Method (c=1c = -1):

    113151451450 \begin{array}{c|cccc} -1 & 1 & -3 & 1 & 5 \\ & & -1 & 4 & -5 \\ \hline & 1 & -4 & 5 & \boxed{0} \\ \end{array}

    Quotient H(x)=x24x+5H(x) = x^2 - 4x + 5.

    P(x)=(x+1)(x24x+5)P(x) = (x+1)(x^2 - 4x + 5).

  3. Find Roots of the Quotient: Solve x24x+5=0x^2 - 4x + 5 = 0 using the quadratic formula.

    x=(4)±(4)24(1)(5)2(1)x = \frac{-(-4) \pm \sqrt{(-4)^2 - 4(1)(5)}}{2(1)}
    x=4±16202x = \frac{4 \pm \sqrt{16 - 20}}{2}
    x=4±42x = \frac{4 \pm \sqrt{-4}}{2}
    x=4±2i2x = \frac{4 \pm 2i}{2}
    x=2±ix = 2 \pm i

    The other roots are 2+i2 + i and 2i2 - i.

  4. All Complex Roots: The roots are 1,2+i,2i-1, 2+i, 2-i.

  5. Complete Factorization (an=1a_n = 1):

    P(x)=1(x(1))(x(2+i))(x(2i))P(x) = 1 \cdot (x - (-1))(x - (2+i))(x - (2-i))
    P(x)=(x+1)(x2i)(x2+i)P(x) = (x + 1)(x - 2 - i)(x - 2 + i)

Complex Conjugate Root Pairs

An important question arises: Is it possible for a polynomial with all real coefficients and constant term to have exactly one complex zero that is not a real number?

The answer is impossible.

This is due to the property of complex conjugate pairs. If a polynomial has real coefficients, then its non-real complex roots (a+bia + bi with b0b \neq 0) always occur in conjugate pairs.

This means that if a+bia + bi is a root, then its conjugate, abia - bi, must also be a root of the polynomial.

Therefore, non-real complex roots cannot appear alone; they always come in pairs. Thus, it is impossible to have exactly one non-real complex root for a polynomial with real coefficients.