Source codeVideos

Command Palette

Search for a command to run...

Polynomial

Factor Theorem

Understanding the Factor Theorem

When we divide a polynomial P(x)P(x) by (xc)(x - c), sometimes the remainder is zero. We know from the Remainder Theorem that if the remainder is zero, then P(c)=0P(c) = 0. So, what does it mean if P(c)=0P(c) = 0?

The value cc that causes P(c)=0P(c) = 0 is called a zero or a root of the polynomial P(x)P(x). The Factor Theorem explains the close relationship between these zeros and the factors of the polynomial.

Statement of the Factor Theorem

Let P(x)P(x) be a polynomial and cc be a real number.

(xc)(x - c) is a factor of P(x)P(x) if and only if P(c)=0P(c) = 0.

This is a two-way statement:

  1. If (xc)(x - c) is a factor of P(x)P(x), then P(c)=0P(c) = 0.

    (If a number is perfectly divisible by another number, the remainder must be zero).

  2. If P(c)=0P(c) = 0, then (xc)(x - c) is a factor of P(x)P(x).

    (If the value of the polynomial at x=cx=c is zero, it means (xc)(x-c) divides the polynomial exactly).

Connection to the Remainder Theorem

The Factor Theorem is actually a special case of the Remainder Theorem. Recall the division algorithm:

P(x)=(xc)H(x)+SP(x) = (x - c) \cdot H(x) + S

And from the Remainder Theorem, we know S=P(c)S = P(c).

P(x)=(xc)H(x)+P(c)P(x) = (x - c) \cdot H(x) + P(c)
  • If (xc)(x - c) is a factor, it means P(x)P(x) is divisible by (xc)(x - c). This only happens if the remainder is zero. Thus, S=P(c)=0S = P(c) = 0.
  • If P(c)=0P(c) = 0, then S=0S = 0. The equation becomes P(x)=(xc)H(x)+0P(x) = (x - c) \cdot H(x) + 0, or P(x)=(xc)H(x)P(x) = (x - c) \cdot H(x). This shows that (xc)(x - c) is a factor of P(x)P(x).

Using the Factor Theorem to Factor Polynomials

The Factor Theorem is very useful for finding linear factors of a polynomial and then factoring it completely.

General Steps:

  1. Find a Zero: Try guessing or using clues (like the sum of coefficients) to find a value cc such that P(c)=0P(c) = 0.

  2. Confirm Factor: If P(c)=0P(c) = 0, then according to the Factor Theorem, (xc)(x - c) is a factor of P(x)P(x).

  3. Divide the Polynomial: Use Horner's method or long division to divide P(x)P(x) by the factor (xc)(x - c) found. The quotient is H(x)H(x).

    P(x)=(xc)H(x)P(x) = (x - c) \cdot H(x)
  4. Factor the Quotient: If H(x)H(x) can still be factored (e.g., if H(x)H(x) is a quadratic or cubic polynomial whose roots can be found), repeat the process starting from step 1 on H(x)H(x).

  5. Complete Factorization: Write P(x)P(x) as the product of all the linear factors found.

Factoring a Polynomial

Let P(x)=x3+2x213x+10P(x) = x^3 + 2x^2 - 13x + 10. We notice that the sum of all coefficients and the constant (1+213+101 + 2 - 13 + 10) is 0. This indicates that P(1)=0P(1) = 0.

  1. Confirm Zero:

    Calculate P(1)P(1).

    P(1)=(1)3+2(1)213(1)+10P(1) = (1)^3 + 2(1)^2 - 13(1) + 10
    P(1)=1+213+10P(1) = 1 + 2 - 13 + 10
    P(1)=0P(1) = 0
  2. Confirm Factor:

    Since P(1)=0P(1) = 0, (x1)(x - 1) is a factor of P(x)P(x).

  3. Divide Polynomial:

    We use Horner's method to divide P(x)P(x) by (x1)(x - 1) (c=1c = 1).

    1121310131013100 \begin{array}{c|cccc} 1 & 1 & 2 & -13 & 10 \\ & & 1 & 3 & -10 \\ \hline & 1 & 3 & -10 & \boxed{0} \\ \end{array}

    The quotient is H(x)=1x2+3x10=x2+3x10H(x) = 1x^2 + 3x - 10 = x^2 + 3x - 10. The remainder is 0, as expected.

    So, P(x)=(x1)(x2+3x10)P(x) = (x - 1)(x^2 + 3x - 10).

  4. Factor the Quotient:

    Factor the quadratic polynomial H(x)=x2+3x10H(x) = x^2 + 3x - 10.

    x2+3x10=(x2)(x+5)x^2 + 3x - 10 = (x - 2)(x + 5)
  5. Complete Factorization:

    Combine all factors.

    P(x)=(x1)(x2)(x+5)P(x) = (x - 1)(x - 2)(x + 5)

Exercise

Let P(x)=x32x221x18P(x) = x^3 - 2x^2 - 21x - 18. Show that P(1)=0P(-1) = 0, and use this to factor P(x)P(x) completely.

Answer Key

  1. Show P(1)=0P(-1) = 0:

    P(1)=(1)32(1)221(1)18P(-1) = (-1)^3 - 2(-1)^2 - 21(-1) - 18
    P(1)=12(1)+2118P(-1) = -1 - 2(1) + 21 - 18
    P(1)=12+2118P(-1) = -1 - 2 + 21 - 18
    P(1)=3+3=0P(-1) = -3 + 3 = 0

    Proven P(1)=0P(-1) = 0.

  2. Confirm Factor:

    Since P(1)=0P(-1) = 0, (x(1))=(x+1)(x - (-1)) = (x + 1) is a factor of P(x)P(x).

  3. Divide Polynomial (Horner's Method with c=1c = -1):

    1122118131813180 \begin{array}{c|cccc} -1 & 1 & -2 & -21 & -18 \\ & & -1 & 3 & 18 \\ \hline & 1 & -3 & -18 & \boxed{0} \\ \end{array}

    The quotient is H(x)=x23x18H(x) = x^2 - 3x - 18.

    So, P(x)=(x+1)(x23x18)P(x) = (x + 1)(x^2 - 3x - 18).

  4. Factor the Quotient:

    Factor H(x)=x23x18H(x) = x^2 - 3x - 18.

    x23x18=(x6)(x+3)x^2 - 3x - 18 = (x - 6)(x + 3)
  5. Complete Factorization:

    P(x)=(x+1)(x6)(x+3)P(x) = (x + 1)(x - 6)(x + 3)