Polynomial Division

Long division and synthetic division

Polynomial Division

Long Division

Same process as numerical long division!

Steps:

  1. Divide leading terms
  2. Multiply divisor by quotient term
  3. Subtract
  4. Bring down next term
  5. Repeat

Example: (x2+5x+6)÷(x+2)(x^2 + 5x + 6) \div (x + 2)

x+3x+2x2+5x+6x2+2x3x+63x+60\begin{array}{c|cc} & x + 3 \\ \hline x + 2 & x^2 + 5x + 6 \\ & x^2 + 2x \\ \hline & 3x + 6 \\ & 3x + 6 \\ \hline & 0 \end{array}

Result: x+3x + 3 with remainder 00

Synthetic Division

Only works when dividing by (xc)(x - c)

Much faster than long division!

Steps:

  1. Write coefficients of dividend
  2. Use cc from divisor (xc)(x - c)
  3. Bring down first coefficient
  4. Multiply and add repeatedly

Example: (2x35x2+3x2)÷(x2)(2x^3 - 5x^2 + 3x - 2) \div (x - 2)

Use c=2c = 2: 225324222110\begin{array}{c|cccc} 2 & 2 & -5 & 3 & -2 \\ & & 4 & -2 & 2 \\ \hline & 2 & -1 & 1 & 0 \end{array}

Result: 2x2x+12x^2 - x + 1 with remainder 00

Remainder Theorem

When dividing f(x)f(x) by (xc)(x - c): Remainder=f(c)\text{Remainder} = f(c)

Division Algorithm

f(x)=q(x)d(x)+r(x)f(x) = q(x) \cdot d(x) + r(x)

Where qq is quotient, dd is divisor, rr is remainder

📚 Practice Problems

1Problem 1easy

Question:

Use synthetic division: (x2+7x+10)÷(x+2)(x^2 + 7x + 10) \div (x + 2)

💡 Show Solution

Divisor is (x+2)(x + 2), so use c=2c = -2

Coefficients: 1,7,101, 7, 10

21710210150\begin{array}{c|ccc} -2 & 1 & 7 & 10 \\ & & -2 & -10 \\ \hline & 1 & 5 & 0 \end{array}

Process:

  • Bring down 11
  • 1×(2)=21 \times (-2) = -2, add to 7755
  • 5×(2)=105 \times (-2) = -10, add to 101000

Answer: Quotient x+5x + 5, remainder 00

2Problem 2medium

Question:

Divide: (3x32x2+x5)÷(x1)(3x^3 - 2x^2 + x - 5) \div (x - 1)

💡 Show Solution

Use synthetic division with c=1c = 1

132153123123\begin{array}{c|cccc} 1 & 3 & -2 & 1 & -5 \\ & & 3 & 1 & 2 \\ \hline & 3 & 1 & 2 & -3 \end{array}

Bottom row interpretation:

  • Coefficients: 3,1,23, 1, 2 → quotient 3x2+x+23x^2 + x + 2
  • Last number: 3-3 → remainder

Answer: 3x2+x+23x13x^2 + x + 2 - \frac{3}{x - 1}

3Problem 3medium

Question:

Use the Remainder Theorem to find the remainder when f(x)=2x35x+1f(x) = 2x^3 - 5x + 1 is divided by (x3)(x - 3)

💡 Show Solution

By the Remainder Theorem, the remainder equals f(3)f(3).

f(3)=2(3)35(3)+1f(3) = 2(3)^3 - 5(3) + 1 =2(27)15+1= 2(27) - 15 + 1 =5415+1= 54 - 15 + 1 =40= 40

Answer: Remainder is 4040