Synthetic Division of Polynomials- Step-by-Step Process

What Synthetic Division Actually Is

Synthetic division is a shortcut method for dividing polynomials when you're working with a linear divisor. It works specifically when the divisor is in the form (x - c) or (x + c).

You could use long polynomial division every single time. But synthetic division is faster, requires less writing, and is less prone to arithmetic errors. If you've ever spent 10 minutes on polynomial division only to make a sign error somewhere, you already know why shortcuts exist.

When Synthetic Division Works (And When It Doesn't)

This method only applies in specific situations:

If your divisor has a coefficient other than 1 on x, or isn't linear, go back to long division. There's no synthetic shortcut for everything.

The Setup: What Goes In Your Table

Before you start calculating, you need the right setup. This is where most people mess up.

Take your divisor (x - c) and find c. For (x - 3), c = 3. For (x + 5), c = -5. The sign flips.

Write c in the top right corner of your box. Then write all coefficients of your dividend polynomial in descending order of degree. Include zeros for any missing terms.

Example Setup

Dividing (2x³ + 3x² - 8x + 7) by (x - 2):

c = 2. Coefficients: 2, 3, -8, 7.

Your table looks like this before you start:

2   3   -8   7
2

Step-by-Step Synthetic Division Process

Here's the actual procedure. Five steps. That's it.

Step 1: Bring Down the First Coefficient

Take the leftmost coefficient and drop it straight down below the line. This becomes the first coefficient of your quotient.

Step 2: Multiply by c

Take that dropped number and multiply it by c. Write the result under the next column.

Step 3: Add Down

Add the numbers in that column. Write the sum below the line.

Step 4: Repeat

Multiply the new sum by c. Add it to the next column. Keep going until you've processed every column.

Step 5: Read Your Results

The numbers below the line are your answer. The last number is your remainder. The rest form the coefficients of your quotient polynomial.

Full Worked Example

Divide (2x³ + 3x² - 8x + 7) by (x - 2).

Setup: c = 2. Coefficients: 2, 3, -8, 7.

2 3 -8 7
2 2 7 6 19

Here's what happened at each step:

The bottom row: 2, 7, 6, 19

The quotient is 2x² + 7x + 6. The remainder is 19.

Verify by multiplying back: (x - 2)(2x² + 7x + 6) + 19 should equal the original polynomial.

Synthetic Division vs. Long Division

Here's the direct comparison:

Feature Synthetic Division Long Division
Speed Fast Slow
Best for Linear divisors (x - c) Any divisor
Writing space needed Small table Full polynomial layout
Error rate Lower Higher
Works with non-unit coefficients No Yes

Use synthetic when you can. Use long division when you must.

Common Mistakes That Destroy Your Answer

Practical How-To: Quick Reference

When you need to divide a polynomial by (x - c) quickly:

  1. Find c from your divisor
  2. List all coefficients of the dividend (including zeros)
  3. Bring down the first coefficient
  4. Multiply by c, add to next column
  5. Repeat until done
  6. Last number = remainder, rest = quotient coefficients

That's the entire method. Practice with three or four problems and it'll click.

Why This Matters

Synthetic division isn't just busywork. It's used to evaluate polynomials (that's the Remainder Theorem), find roots, and simplify expressions before other operations. If you're working with any polynomial function, this is a tool you need in your toolkit.

The method is fast enough that using long division every time is genuinely a waste of time. Learn synthetic, use it when it applies, and move on.