Dividing Polynomials

Master long division and synthetic division for polynomials

You already know how to divide. When you split 15 cookies among 3 people, you’re dividing. When you figure out how many $7 movie tickets you can buy with $50 (and realize you’ll have $1 left over), you’re dividing with a remainder. Dividing polynomials works the same way - you’re asking “how many times does this fit into that, and what’s left over?”

If regular long division felt mechanical in elementary school, polynomial long division might feel the same way at first. But here’s the good news: once you see the pattern, it becomes just as routine. And there’s even a shortcut called synthetic division that makes certain problems almost trivially fast.

Core Concepts

Why Divide Polynomials?

Before we dive into the mechanics, let’s talk about why you’d ever want to divide polynomials in the first place. There are several practical reasons:

Factoring: If you know that $(x - 2)$ is a factor of some polynomial $f(x)$, you can divide to find the other factor. This is like knowing that 3 is a factor of 15, then dividing to find the other factor is 5.

Finding zeros: Division helps you break down higher-degree polynomials into simpler pieces. If you can factor $x^3 - 6x^2 + 11x - 6$ into $(x - 1)(x - 2)(x - 3)$, you immediately know the zeros are 1, 2, and 3.

Simplifying rational expressions: When you have a fraction like $\frac{x^2 + 5x + 6}{x + 2}$, division can simplify it (in this case, to just $x + 3$).

Evaluating functions: The Remainder Theorem (which we’ll cover) gives you a surprisingly efficient way to calculate $f(c)$ for any polynomial function.

Polynomial Long Division

Polynomial long division follows the same algorithm as numerical long division. The key is to focus on the leading terms at each step.

Here’s the process:

  1. Divide the leading term of the dividend by the leading term of the divisor
  2. Multiply the entire divisor by that result
  3. Subtract from the dividend
  4. Bring down the next term
  5. Repeat until the remainder has a lower degree than the divisor

Let’s see this in action. To divide $(x^2 + 5x + 6)$ by $(x + 2)$:

$$\require{enclose} \begin{array}{r} x + 3 \[-3pt] x + 2 \enclose{longdiv}{x^2 + 5x + 6} \[-3pt] \underline{-(x^2 + 2x)} \[-3pt] 3x + 6 \[-3pt] \underline{-(3x + 6)} \[-3pt] 0 \end{array}$$

Step by step:

  • $x^2 \div x = x$ (first term of quotient)
  • $x \cdot (x + 2) = x^2 + 2x$ (multiply)
  • $(x^2 + 5x) - (x^2 + 2x) = 3x$ (subtract, bring down the 6)
  • $3x \div x = 3$ (second term of quotient)
  • $3 \cdot (x + 2) = 3x + 6$ (multiply)
  • $(3x + 6) - (3x + 6) = 0$ (subtract)

The quotient is $x + 3$ with remainder 0. This means $(x^2 + 5x + 6) = (x + 2)(x + 3)$.

When there’s a remainder, we write the result as:

$$\text{Dividend} = \text{Divisor} \times \text{Quotient} + \text{Remainder}$$

Or equivalently:

$$\frac{\text{Dividend}}{\text{Divisor}} = \text{Quotient} + \frac{\text{Remainder}}{\text{Divisor}}$$

Handling Missing Terms

What if your polynomial has “gaps” - missing powers of $x$? You need to include placeholders with coefficient 0.

For example, to divide $(x^3 - 8)$ by $(x - 2)$, you should write the dividend as $x^3 + 0x^2 + 0x - 8$. Those zeros keep your columns aligned, just like you’d write 305 instead of 35 when the tens place is empty.

Synthetic Division

When you’re dividing by a linear expression of the form $(x - c)$, there’s a much faster method called synthetic division. It uses only the coefficients and skips all the variable writing.

To use synthetic division for dividing by $(x - c)$:

  1. Write $c$ (note: if dividing by $(x - 2)$, use $+2$; if dividing by $(x + 3)$, use $-3$)
  2. Write the coefficients of the dividend (including 0s for missing terms)
  3. Bring down the first coefficient
  4. Multiply by $c$, add to the next coefficient
  5. Repeat until done
  6. The last number is the remainder; the others are coefficients of the quotient

Example: Divide $(x^3 - 8)$ by $(x - 2)$

Write it as $x^3 + 0x^2 + 0x - 8$, so coefficients are: 1, 0, 0, -8

$$\begin{array}{c|cccc} 2 & 1 & 0 & 0 & -8 \ & & 2 & 4 & 8 \ \hline & 1 & 2 & 4 & 0 \end{array}$$

Reading the result: quotient is $x^2 + 2x + 4$, remainder is 0.

This means $x^3 - 8 = (x - 2)(x^2 + 2x + 4)$.

Why does synthetic division work? It’s actually doing the same thing as long division, just compressed. Each step is essentially dividing, multiplying, and subtracting - but since the divisor is always $(x - c)$, the pattern simplifies dramatically.

The Remainder Theorem

Here’s something beautiful: when you divide a polynomial $f(x)$ by $(x - c)$, the remainder equals $f(c)$.

The Remainder Theorem: If a polynomial $f(x)$ is divided by $(x - c)$, then the remainder is $f(c)$.

Think about why this works. When we divide, we get:

$$f(x) = (x - c) \cdot q(x) + r$$

where $q(x)$ is the quotient and $r$ is the remainder (a constant, since its degree must be less than the divisor’s degree of 1).

Now substitute $x = c$:

$$f(c) = (c - c) \cdot q(c) + r = 0 \cdot q(c) + r = r$$

So $f(c) = r$. The remainder is the function value.

This gives you a fast way to evaluate polynomials. Instead of substituting $c$ into $f(x)$ and computing all those powers, you can use synthetic division - especially nice for large values of $c$ or high-degree polynomials.

The Factor Theorem

The Factor Theorem is a direct consequence of the Remainder Theorem:

The Factor Theorem: $(x - c)$ is a factor of $f(x)$ if and only if $f(c) = 0$.

In other words, $c$ is a zero of the polynomial exactly when $(x - c)$ divides evenly into it.

This gives you two powerful tools:

  • Testing potential factors: To check if $(x - 3)$ is a factor of $f(x)$, just compute $f(3)$. If you get 0, it’s a factor.
  • Building from zeros: If you know $x = 2$ is a zero of $f(x)$, then $(x - 2)$ must be a factor.

Using Division to Factor Completely

Once you find one factor, division helps you find the rest. Here’s the strategy:

  1. Find one zero (by testing values, graphing, or the Rational Root Theorem)
  2. Divide the polynomial by $(x - c)$ where $c$ is your zero
  3. Repeat with the quotient until you’ve reduced to linear or irreducible quadratic factors

This process works because each time you factor out $(x - c)$, the degree drops by one. A cubic becomes a quadratic, a quartic becomes a cubic, and so on.

Finding All Zeros Using Division

To find all zeros of a polynomial:

  1. Find one zero $c$ (perhaps by inspection, graphing, or the Rational Root Theorem)
  2. Divide by $(x - c)$ to get a lower-degree polynomial
  3. Find zeros of the quotient
  4. Repeat until you’ve found all zeros

For a degree-$n$ polynomial, you’ll have at most $n$ real zeros (counting multiplicity).

Notation and Terminology

Term Meaning Example
Dividend Polynomial being divided In $\frac{x^3 + 2x}{x - 1}$, dividend is $x^3 + 2x$
Divisor What you’re dividing by Divisor is $x - 1$
Quotient Result of division The polynomial you get
Remainder What’s left over Has degree less than divisor
Synthetic division Shortcut for dividing by $(x - c)$ Uses only coefficients

Examples

Example 1: Polynomial Long Division

Divide $(x^2 + 5x + 6) \div (x + 2)$.

Solution:

Set up the long division and divide leading terms at each step:

Step 1: $x^2 \div x = x$

Multiply: $x(x + 2) = x^2 + 2x$

Subtract: $(x^2 + 5x + 6) - (x^2 + 2x) = 3x + 6$

Step 2: $3x \div x = 3$

Multiply: $3(x + 2) = 3x + 6$

Subtract: $(3x + 6) - (3x + 6) = 0$

Result: Quotient = $x + 3$, Remainder = 0

We can verify: $(x + 2)(x + 3) = x^2 + 3x + 2x + 6 = x^2 + 5x + 6$ ✓

Example 2: Synthetic Division

Use synthetic division to divide $(x^3 - 8) \div (x - 2)$.

Solution:

Since we’re dividing by $(x - 2)$, we use $c = 2$.

First, write the dividend with all terms: $x^3 + 0x^2 + 0x - 8$

Coefficients: 1, 0, 0, -8

$$\begin{array}{c|cccc} 2 & 1 & 0 & 0 & -8 \ & & 2 & 4 & 8 \ \hline & 1 & 2 & 4 & 0 \end{array}$$

Process:

  • Bring down the 1
  • $1 \times 2 = 2$; add to 0 to get 2
  • $2 \times 2 = 4$; add to 0 to get 4
  • $4 \times 2 = 8$; add to -8 to get 0

Result: Quotient = $x^2 + 2x + 4$, Remainder = 0

This confirms that $x^3 - 8 = (x - 2)(x^2 + 2x + 4)$.

Example 3: Division with Remainder

Divide $(2x^3 + 3x^2 - 17x + 12) \div (x + 4)$.

Solution:

Using synthetic division with $c = -4$ (note: $(x + 4) = (x - (-4))$):

Coefficients: 2, 3, -17, 12

$$\begin{array}{c|cccc} -4 & 2 & 3 & -17 & 12 \ & & -8 & 20 & -12 \ \hline & 2 & -5 & 3 & 0 \end{array}$$

Process:

  • Bring down 2
  • $2 \times (-4) = -8$; add to 3 to get -5
  • $(-5) \times (-4) = 20$; add to -17 to get 3
  • $3 \times (-4) = -12$; add to 12 to get 0

Result: Quotient = $2x^2 - 5x + 3$, Remainder = 0

Since the remainder is 0, $(x + 4)$ is a factor: $$2x^3 + 3x^2 - 17x + 12 = (x + 4)(2x^2 - 5x + 3)$$

We can factor further: $2x^2 - 5x + 3 = (2x - 3)(x - 1)$

So the complete factorization is $(x + 4)(2x - 3)(x - 1)$.

Example 4: Using the Remainder Theorem

Use the Remainder Theorem to find $f(3)$ for $f(x) = 2x^3 - 5x^2 + x - 7$.

Solution:

By the Remainder Theorem, $f(3)$ equals the remainder when we divide $f(x)$ by $(x - 3)$.

Use synthetic division with $c = 3$:

Coefficients: 2, -5, 1, -7

$$\begin{array}{c|cccc} 3 & 2 & -5 & 1 & -7 \ & & 6 & 3 & 12 \ \hline & 2 & 1 & 4 & 5 \end{array}$$

Process:

  • Bring down 2
  • $2 \times 3 = 6$; add to -5 to get 1
  • $1 \times 3 = 3$; add to 1 to get 4
  • $4 \times 3 = 12$; add to -7 to get 5

Result: The remainder is 5, so $f(3) = 5$.

Verification: $f(3) = 2(27) - 5(9) + 3 - 7 = 54 - 45 + 3 - 7 = 5$ ✓

Example 5: Factor Completely Given One Zero

Given $f(x) = x^4 - 6x^3 + 11x^2 - 6x$ and that $x = 1$ is a zero, factor completely.

Solution:

Step 1: First, notice that every term has $x$ as a factor: $$f(x) = x(x^3 - 6x^2 + 11x - 6)$$

So $x = 0$ is also a zero.

Step 2: Since $x = 1$ is a zero, $(x - 1)$ is a factor of $(x^3 - 6x^2 + 11x - 6)$.

Use synthetic division with $c = 1$:

$$\begin{array}{c|cccc} 1 & 1 & -6 & 11 & -6 \ & & 1 & -5 & 6 \ \hline & 1 & -5 & 6 & 0 \end{array}$$

So $x^3 - 6x^2 + 11x - 6 = (x - 1)(x^2 - 5x + 6)$.

Step 3: Factor the quadratic $x^2 - 5x + 6$.

We need two numbers that multiply to 6 and add to -5: that’s -2 and -3.

$$x^2 - 5x + 6 = (x - 2)(x - 3)$$

Step 4: Write the complete factorization: $$f(x) = x(x - 1)(x - 2)(x - 3)$$

The zeros are: $x = 0, 1, 2, 3$

Example 6: Finding All Zeros

Find all zeros of $f(x) = x^3 - 2x^2 - 5x + 6$.

Solution:

Step 1: Test potential rational zeros. By the Rational Root Theorem, possible rational zeros are factors of 6 divided by factors of 1: $\pm 1, \pm 2, \pm 3, \pm 6$.

Test $x = 1$: $f(1) = 1 - 2 - 5 + 6 = 0$ ✓

So $x = 1$ is a zero, and $(x - 1)$ is a factor.

Step 2: Divide by $(x - 1)$:

$$\begin{array}{c|cccc} 1 & 1 & -2 & -5 & 6 \ & & 1 & -1 & -6 \ \hline & 1 & -1 & -6 & 0 \end{array}$$

So $f(x) = (x - 1)(x^2 - x - 6)$.

Step 3: Factor $x^2 - x - 6$.

We need two numbers that multiply to -6 and add to -1: that’s 2 and -3.

$$x^2 - x - 6 = (x + 2)(x - 3)$$

Step 4: Complete factorization: $$f(x) = (x - 1)(x + 2)(x - 3)$$

The zeros are: $x = 1, x = -2, x = 3$

Verification: We can check that $f(-2) = (-8) - 2(4) - 5(-2) + 6 = -8 - 8 + 10 + 6 = 0$ ✓

Key Properties and Rules

Division Algorithm for Polynomials

For any polynomials $f(x)$ and $d(x)$ (where $d(x) \neq 0$), there exist unique polynomials $q(x)$ and $r(x)$ such that:

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

where either $r(x) = 0$ or the degree of $r(x)$ is less than the degree of $d(x)$.

When to Use Each Method

Method Use When Advantages
Long division Divisor is any polynomial Always works
Synthetic division Divisor is $(x - c)$ Much faster, fewer errors

Common Mistakes to Avoid

  • Sign error in synthetic division: When dividing by $(x + 3)$, use $c = -3$, not $+3$
  • Forgetting placeholders: Include 0 coefficients for missing terms
  • Misreading the quotient: In synthetic division, the last number is the remainder - the others are the quotient coefficients
  • Stopping too early: After dividing, check if the quotient can be factored further

Quick Reference: Synthetic Division Setup

Divisor Value of $c$ to use
$(x - 2)$ $c = 2$
$(x + 5)$ $c = -5$
$(x - 7)$ $c = 7$
$(x + 1)$ $c = -1$

Real-World Applications

Simplifying Rational Expressions

When working with rational expressions (fractions with polynomials), division helps simplify. If the numerator is divisible by the denominator, you get a simpler polynomial. If not, you can still rewrite the expression in a more useful form.

For instance, $\frac{x^2 + 5x + 6}{x + 2} = x + 3$ (for $x \neq -2$).

Finding Exact Zeros of Polynomial Models

In physics, economics, and engineering, phenomena are often modeled by polynomials. Finding where these models equal zero (equilibrium points, break-even points, intersections) requires finding polynomial zeros. Division is the key tool for breaking down higher-degree polynomials once you’ve found one root.

Partial Fraction Decomposition

In calculus, you’ll need to break apart rational expressions into simpler fractions for integration. This process relies heavily on polynomial division and factoring. For example, integrating $\frac{x^3 + 2}{x^2 - 1}$ requires first doing polynomial division, then decomposing the remainder.

Algorithm Design

Computer algebra systems use polynomial division algorithms extensively. When you ask a calculator to factor a polynomial or find its zeros, it’s running division operations behind the scenes. Understanding the process helps you appreciate (and troubleshoot) what these tools are doing.

Self-Test Problems

Problem 1: Use long division to divide $(x^2 + 7x + 10) \div (x + 5)$.

Show Answer

Step 1: $x^2 \div x = x$

Multiply: $x(x + 5) = x^2 + 5x$

Subtract: $(x^2 + 7x + 10) - (x^2 + 5x) = 2x + 10$

Step 2: $2x \div x = 2$

Multiply: $2(x + 5) = 2x + 10$

Subtract: $(2x + 10) - (2x + 10) = 0$

Result: Quotient = $x + 2$, Remainder = 0

Check: $(x + 5)(x + 2) = x^2 + 2x + 5x + 10 = x^2 + 7x + 10$ ✓

Problem 2: Use synthetic division to divide $(x^3 + 2x^2 - 5x - 6) \div (x - 2)$.

Show Answer

Use $c = 2$:

$$\begin{array}{c|cccc} 2 & 1 & 2 & -5 & -6 \ & & 2 & 8 & 6 \ \hline & 1 & 4 & 3 & 0 \end{array}$$

Result: Quotient = $x^2 + 4x + 3$, Remainder = 0

This means $x^3 + 2x^2 - 5x - 6 = (x - 2)(x^2 + 4x + 3) = (x - 2)(x + 1)(x + 3)$

Problem 3: Use synthetic division to divide $(2x^3 - 3x^2 + 4x - 5) \div (x + 1)$.

Show Answer

Use $c = -1$ (since $x + 1 = x - (-1)$):

$$\begin{array}{c|cccc} -1 & 2 & -3 & 4 & -5 \ & & -2 & 5 & -9 \ \hline & 2 & -5 & 9 & -14 \end{array}$$

Result: Quotient = $2x^2 - 5x + 9$, Remainder = $-14$

This means $2x^3 - 3x^2 + 4x - 5 = (x + 1)(2x^2 - 5x + 9) - 14$

Problem 4: Use the Remainder Theorem to find $f(-2)$ for $f(x) = x^4 + 3x^3 - x^2 + 5$.

Show Answer

Use synthetic division with $c = -2$:

Note: $f(x) = x^4 + 3x^3 - x^2 + 0x + 5$

$$\begin{array}{c|ccccc} -2 & 1 & 3 & -1 & 0 & 5 \ & & -2 & -2 & 6 & -12 \ \hline & 1 & 1 & -3 & 6 & -7 \end{array}$$

Result: $f(-2) = -7$

Verification: $f(-2) = 16 + 3(-8) - 4 + 5 = 16 - 24 - 4 + 5 = -7$ ✓

Problem 5: If $f(x) = x^3 - 4x^2 - 7x + 10$, use the Factor Theorem to determine if $(x - 5)$ is a factor.

Show Answer

By the Factor Theorem, $(x - 5)$ is a factor if and only if $f(5) = 0$.

Calculate $f(5)$: $f(5) = 125 - 4(25) - 7(5) + 10 = 125 - 100 - 35 + 10 = 0$

Since $f(5) = 0$, yes, $(x - 5)$ is a factor.

We can verify by dividing:

$$\begin{array}{c|cccc} 5 & 1 & -4 & -7 & 10 \ & & 5 & 5 & -10 \ \hline & 1 & 1 & -2 & 0 \end{array}$$

So $f(x) = (x - 5)(x^2 + x - 2) = (x - 5)(x + 2)(x - 1)$

Problem 6: Find all zeros of $f(x) = x^3 + 4x^2 + x - 6$.

Show Answer

Step 1: Test potential rational zeros: $\pm 1, \pm 2, \pm 3, \pm 6$

$f(1) = 1 + 4 + 1 - 6 = 0$ ✓

So $x = 1$ is a zero.

Step 2: Divide by $(x - 1)$:

$$\begin{array}{c|cccc} 1 & 1 & 4 & 1 & -6 \ & & 1 & 5 & 6 \ \hline & 1 & 5 & 6 & 0 \end{array}$$

So $f(x) = (x - 1)(x^2 + 5x + 6)$

Step 3: Factor $x^2 + 5x + 6 = (x + 2)(x + 3)$

Step 4: $f(x) = (x - 1)(x + 2)(x + 3)$

The zeros are: $x = 1, x = -2, x = -3$

Problem 7: Given that $f(x) = 2x^4 - x^3 - 13x^2 + 5x + 15$ has $x = -1$ as a zero, find another zero.

Show Answer

Step 1: Divide by $(x + 1)$ using synthetic division with $c = -1$:

$$\begin{array}{c|ccccc} -1 & 2 & -1 & -13 & 5 & 15 \ & & -2 & 3 & 10 & -15 \ \hline & 2 & -3 & -10 & 15 & 0 \end{array}$$

So $f(x) = (x + 1)(2x^3 - 3x^2 - 10x + 15)$

Step 2: Test zeros of the quotient. Try $x = 3$:

$$\begin{array}{c|cccc} 3 & 2 & -3 & -10 & 15 \ & & 6 & 9 & -3 \ \hline & 2 & 3 & -1 & 12 \end{array}$$

Remainder is 12, so $x = 3$ is not a zero.

Try $x = \frac{3}{2}$: Using synthetic division:

$$\begin{array}{c|cccc} \frac{3}{2} & 2 & -3 & -10 & 15 \ & & 3 & 0 & -15 \ \hline & 2 & 0 & -10 & 0 \end{array}$$

Remainder is 0! So $x = \frac{3}{2}$ is another zero.

(The remaining factor is $2x^2 - 10 = 2(x^2 - 5)$, which gives zeros $x = \pm\sqrt{5}$.)

Summary

  • Polynomial division works like numerical long division: divide, multiply, subtract, bring down, repeat
  • Synthetic division is a shortcut that only works when dividing by $(x - c)$. Use the value $c$ (watch the sign!) with just the coefficients
  • The Remainder Theorem says that when you divide $f(x)$ by $(x - c)$, the remainder equals $f(c)$. This gives you a fast way to evaluate polynomials
  • The Factor Theorem says $(x - c)$ is a factor of $f(x)$ if and only if $f(c) = 0$. Use this to test potential factors
  • To factor completely, find one zero, divide it out, and repeat with the quotient
  • Finding all zeros becomes systematic: test potential rational zeros, divide out the ones that work, factor what remains
  • Always include placeholder zeros for missing terms when setting up division
  • Check your work by multiplying: Divisor $\times$ Quotient $+$ Remainder should equal the original Dividend

Division transforms hard polynomial problems into easier ones. It’s the bridge between knowing one factor (or zero) and knowing them all. Once you’re comfortable with the mechanics, you’ll find it’s a reliable tool that opens up many other techniques in algebra and beyond.