Cubic Equation Solver logo
Cubic Equation Solver
Education 7/3/2026

Synthetic Division: Complete Step by Step Guide with Examples

Master synthetic division! Learn the fastest method to divide polynomials, find roots, and test factors with 25 step-by-step worked examples and practice.

By Mathematics Educator
Synthetic Division: Complete Step by Step Guide with Examples

Introduction

In the world of algebra, dividing polynomials can be an exhausting task. Traditional polynomial long division involves writing out every single xx, subtracting massive algebraic chunks, and tracking a chaotic mess of negative signs. If only there was a shortcut that stripped away the letters, erased the subtraction, and let you calculate the answer using just basic addition and multiplication.

There is. It is called Synthetic Division.

What synthetic division is: It is a shorthand method of polynomial division. By temporarily removing all the variables (xx) and focusing entirely on the coefficients (the numbers), it drastically reduces the time and space required to divide polynomials.

Why it is important: Synthetic division is the mathematical engine behind higher-level algebra. Without it, factoring third-degree or fourth-degree equations would take hours instead of minutes.

When to use it: You use it primarily when you need to divide a massive polynomial by a simple linear binomial (like x3x - 3). It is the preferred method for testing whether a number is a mathematical root.

How it simplifies polynomial division: It replaces tedious subtraction with simple addition. It removes the visual clutter of variables. It turns a half-page math problem into a 3-line calculation.

Relationship with cubic equations: To solve a cubic equation, you must find one root, and then divide the equation by that root to reduce it to a quadratic. Synthetic division is the exact tool used to shrink that cubic down to size.

What readers will learn: This incredibly exhaustive guide will teach you the exact mechanics of synthetic division. We will explore how it connects to the Factor Theorem and Rational Root Theorem, contrast it with long division, walk through 25 fully solved examples, and challenge your skills with 30 practice problems. Let’s begin.


What Is Synthetic Division?

Let’s begin with a clear, simple definition.

Synthetic division is an algorithmic shortcut used to divide a polynomial by a linear binomial of the form (xc)(x - c). It operates purely on the numerical coefficients of the polynomial, ignoring the variables entirely during the calculation process.

Purpose

The primary purpose of synthetic division is not just division; it is evaluation. By dividing a polynomial, we are checking to see what the remainder is. If the remainder is zero, we have struck mathematical gold: we have found a perfect factor.

History

The underlying algorithm has roots extending back to mathematician Paolo Ruffini in the early 19th century (which is why in some parts of the world, it is called Ruffini’s Rule). It was formalized into the “synthetic” format we use today to save ink, paper, and computation time before calculators existed.

Why mathematicians use it

Mathematicians hate doing unnecessary work. Writing x4,x3,x2x^4, x^3, x^2 over and over during long division is repetitive. Synthetic division relies on the positional value of the numbers (just like standard arithmetic) to keep track of the variables invisibly.

Advantages over long division

  1. Speed: It takes about 20% of the time required for long division.
  2. Space: It requires 3 lines of paper, rather than 10 or 15 lines.
  3. Accuracy: It replaces polynomial subtraction (which causes massive negative-sign errors) with simple integer addition.

When Can Synthetic Division Be Used?

Synthetic division is incredibly powerful, but it has one massive structural limitation. It cannot be used on just any math problem.

The Requirements

You can only use standard synthetic division when the divisor (the thing you are dividing by) is a linear binomial in the form (xc)(x - c) or (x+c)(x + c).

  • The variable xx must have an exponent of exactly 1.
  • The coefficient of xx in the divisor should ideally be 1.

Examples of Valid Divisors

  • Divide by (x4)(x - 4)
  • Divide by (x+2)(x + 2)
  • Divide by xx (which is just (x0)(x - 0))

Non-Examples (When you CANNOT use it)

  • Divide by (x23)(x^2 - 3) -> Fails because of the x2x^2.
  • Divide by (x3+2x1)(x^3 + 2x - 1) -> Fails because the degree is too high.
  • Divide by (2x5)(2x - 5) -> Technically possible with a modification, but highly prone to errors compared to standard long division.

Finding Roots and Factoring Cubics

Because of this specific limitation, synthetic division is almost exclusively paired with root-finding algorithms. If you guess that x=3x = 3 is a root of a cubic equation, you are essentially trying to divide the equation by (x3)(x - 3). This is the exact scenario synthetic division was engineered to solve. It acts as the executioner, reducing the polynomial degree from a cubic (x3x^3) down to a manageable quadratic (x2x^2).


Understanding the Synthetic Division Setup

Before doing any math, you must set up the “synthetic shelf” correctly.

Imagine a grid with 3 distinct rows.

  1. The Root Box (Divisor): In the top left corner, you draw a small half-box or a shelf. Inside this box goes the root value cc. If you are dividing by (x5)(x - 5), the root value is positive 5. If you are dividing by (x+2)(x + 2), the root value is negative -2.
  2. The Coefficients (Top Row): Next to the root box, you write out ONLY the coefficients of the polynomial you are dividing, in descending order. You must include the signs.
  3. The Working Row (Middle Row): This row starts empty. It is where you will place the numbers created by multiplication.
  4. The Result Row (Bottom Row): This is where you will do your addition. The numbers that form the final answer will appear here.
  5. The Remainder Box: The very last number in the bottom row gets sectioned off with a vertical line or its own little box. This is the remainder.
Visual Setup:
Root Box |   Coefficients
   c     |   a_n   a_{n-1}   a_{n-2}  ...  a_0
         |         (multiply)
         |-------------------------------------
             b_n   b_{n-1}   b_{n-2}  ... | Remainder

Step by Step Process

Let’s walk through the exact algorithm. We call it the “Bring Down, Multiply, Add” loop.

Problem: Divide 2x35x2x+32x^3 - 5x^2 - x + 3 by (x3)(x - 3).

Step 1: Identify divisor root

We are dividing by (x3)(x - 3). Set x3=0x - 3 = 0. The root is 3. Put 3 in the box.

Step 2: Write coefficients

The coefficients of our cubic are 2,5,12, -5, -1, and 33. Write them in a row.

 3 |   2   -5   -1    3
   |
   |_____________________

Step 3: Bring down the first coefficient

The very first number (22) simply drops straight down to the Result Row.

 3 |   2   -5   -1    3
   |
   |_____________________
       2

Step 4: Multiply

Multiply the number in the root box (33) by the number you just brought down (22). 3×2=63 \times 2 = 6. Write this 66 in the Working Row directly under the next coefficient (the 5-5).

 3 |   2   -5   -1    3
   |        6
   |_____________________
       2

Step 5: Add

Add the column straight down. 5+6=1-5 + 6 = 1. Write 11 in the Result Row.

 3 |   2   -5   -1    3
   |        6
   |_____________________
       2    1

Step 6: Repeat

Loop back to Step 4. Multiply the box number (33) by the new bottom number (11). 3×1=33 \times 1 = 3. Write 33 under the 1-1. Add them: 1+3=2-1 + 3 = 2. Multiply the box number (33) by the new bottom number (22). 3×2=63 \times 2 = 6. Write 66 under the 33. Add them: 3+6=93 + 6 = 9.

 3 |   2   -5   -1    3
   |        6    3    6
   |_____________________
       2    1    2  | 9

Step 7: Interpret the remainder

The last number is 9. This means the division did not happen perfectly evenly. The remainder is 99.

Step 8: Interpret the quotient

Look at the numbers before the remainder: 2,1,22, 1, 2. Because we divided an x3x^3 polynomial by an xx polynomial, the answer drops one degree. The answer starts with x2x^2. The quotient is 2x2+1x+22x^2 + 1x + 2, with a remainder of 99.

Final Answer: 2x2+x+2+9x32x^2 + x + 2 + \frac{9}{x-3}.


Why Synthetic Division Works

Why does this magic trick work without writing any variables?

Intuitive Explanation: Standard algebraic long division involves multiplying terms, matching them up, and then subtracting. Subtraction is notoriously difficult to track. Synthetic division changes the sign of the divisor immediately. Instead of dividing by (x3)(x - 3), we put positive 33 in the box. By changing the sign right at the beginning, we change all future subtractions into additions.

Relationship with Long Division: If you look at the numbers generated in the middle “Working Row” of synthetic division, they are the exact same numbers you generate when multiplying in Long Division—they just have opposite signs! We stripped away the xx‘s because, mathematically, the xx‘s do nothing but hold positional value. A 3 in the x2x^2 column will only ever interact with other numbers in the x2x^2 column. By writing the coefficients in a strict horizontal row, the physical space on the paper does the work of the variables.


Synthetic Division vs Polynomial Long Division

When should you use which? Here is the definitive breakdown.

FeatureSynthetic DivisionPolynomial Long Division
SpeedLightning fast.Slow and methodical.
DifficultyLow. Relies on simple addition.High. Relies on polynomial subtraction.
AccuracyVery high (fewer minus-sign errors).Lower (prone to arithmetic mistakes).
Space Required3 lines of paper.Half a page.
When to useDivisor is (xc)(x - c) or (x+c)(x + c). Testing roots.Divisor is quadratic (x2x^2), or coefficient >1>1 (like 2x52x-5).
LimitationsOnly works on linear binomial divisors.None. It works on literally everything.

Synthetic Division and the Factor Theorem

Synthetic division is not just for finding division answers. It is the primary tool used to test mathematical factors.

The Factor Theorem

The Factor Theorem states that a polynomial P(x)P(x) has a factor of (xc)(x - c) if and only if P(c)=0P(c) = 0. In terms of division, this means the remainder must be exactly zero.

Relationship with remainders

If you run a synthetic division calculation and the final number in the little remainder box is a 0, you have struck gold. The number in your root box is a verified mathematical root of the equation, and the divisor is a verified factor.

Worked Example


Problem: Is (x+2)(x + 2) a factor of x3+3x24x12x^3 + 3x^2 - 4x - 12?

  1. Set divisor to 0: x+2=0x=2x + 2 = 0 \rightarrow x = -2. Put -2 in the box.
  2. Coefficients: 1 3 -4 -12
  3. Bring down the 1.
  4. Multiply: 2×1=2-2 \times 1 = -2. Add: 3+(2)=13 + (-2) = 1.
  5. Multiply: 2×1=2-2 \times 1 = -2. Add: 4+(2)=6-4 + (-2) = -6.
  6. Multiply: 2×6=12-2 \times -6 = 12. Add: 12+12=0-12 + 12 = 0.
    Result: The remainder is exactly 0. Yes, (x+2)(x + 2) is a perfect factor!

Synthetic Division and the Rational Root Theorem

When you are facing an impossible cubic equation that cannot be factored, you combine two powerful tools.

Complete Workflow

  1. Finding candidate roots: Use the Rational Root Theorem (±p/q\pm p/q) to generate a list of possible fractions and integers that might be roots.
  2. Testing candidates: Take the first number on your list. Put it in the synthetic division box. Run the algorithm.
  3. Did you get a remainder of 0? If no, cross that number off your list and test the next one.
  4. Reducing the polynomial: If yes, STOP! You found a root. The bottom row of your synthetic division gives you the remaining quadratic equation. Solve it.

This combination is the standard algorithm taught worldwide for solving higher-degree polynomials.


Synthetic Division for Cubic Equations

Cubic equations (ax3+bx2+cx+d=0ax^3+bx^2+cx+d=0) are the perfect playground for synthetic division.

Reducing a cubic to a quadratic

A cubic equation has three roots. Finding them all simultaneously is nearly impossible. Synthetic division acts as a chisel. It chips off one root, and leaves behind a smaller, two-root equation (a quadratic).

Worked Example: Find all roots of x37x+6=0x^3 - 7x + 6 = 0. (Note: There is a missing x2x^2 term. We MUST use a 0 placeholder!)

  1. Let’s guess that x=1x = 1 is a root. Put 1 in the box.
  2. Coefficients: 1 0 -7 6
  3. Bring down the 1.
  4. Multiply/Add: 1×1=11 \times 1 = 1. Add to 0 1\rightarrow 1.
  5. Multiply/Add: 1×1=11 \times 1 = 1. Add to -7 6\rightarrow -6.
  6. Multiply/Add: 1×6=61 \times -6 = -6. Add to 6 0\rightarrow 0.
  7. The remainder is 0. So x=1x=1 is a root.
  8. The bottom row is 1 1 -6. This translates to x2+x6=0x^2 + x - 6 = 0.
  9. Finding remaining roots: Factor the quadratic: (x+3)(x2)=0(x + 3)(x - 2) = 0.
  10. The remaining roots are 3-3 and 22.
    Verification: The three roots are 1,3,21, -3, 2.

Synthetic Division with Repeated Roots

What happens if an equation has a “double root” (e.g., (x2)2(x - 2)^2)?

Repeated synthetic division: If you find that x=2x = 2 is a root, and you get a remainder of 0, your bottom row gives you a new, smaller polynomial. If you suspect x=2x=2 is a double root, you can immediately draw a second synthetic division shelf directly under the first one, using the new numbers, and put 2 in the box again!

Graph interpretation: If synthetic division yields a remainder of 0 for the same root twice in a row, the physical graph of that polynomial will touch the x-axis at that point and bounce off, rather than crossing through it.


Synthetic Division with Missing Terms

This is the number one cause of failure in algebra exams.

Zero coefficients: If a polynomial skips a degree, you MUST place a zero in the coefficient row to hold its positional value.

For example, dividing x416x^4 - 16 by (x2)(x - 2). The polynomial is actually 1x4+0x3+0x2+0x161x^4 + 0x^3 + 0x^2 + 0x - 16. Your top row MUST be: 1 0 0 0 -16. If you only write 1 -16, the algorithm will instantly fail. The numbers rely on their horizontal position to represent their exponent level.


Synthetic Division with Decimal and Fractional Coefficients

Can you use synthetic division if the root is a fraction like 1/21/2? Yes.

How to handle fractions:
Problem: Divide 2x35x24x+32x^3 - 5x^2 - 4x + 3 by (x1/2)(x - 1/2).

  1. Put 1/21/2 in the box.
  2. Coefficients: 2 -5 -4 3
  3. Bring down the 2.
  4. Multiply: 1/2×2=11/2 \times 2 = 1. Add to -5 4\rightarrow -4.
  5. Multiply: 1/2×4=21/2 \times -4 = -2. Add to -4 6\rightarrow -6.
  6. Multiply: 1/2×6=31/2 \times -6 = -3. Add to 3 0\rightarrow 0.
    Result: The remainder is 0! The quotient is 2x24x62x^2 - 4x - 6.

Best practices: If you are dealing with messy fractions, keep them as fractions (13\frac{1}{3}) rather than decimals (0.333...0.333...) to avoid rounding errors during the multiplication steps.


Synthetic Division with Higher Degree Polynomials

Synthetic division scales infinitely. The algorithm never changes.

Quartic (4th degree) example: Divide x42x37x2+8x+12x^4 - 2x^3 - 7x^2 + 8x + 12 by (x+2)(x + 2).

  1. Box: -2. Top row: 1 -2 -7 8 12
  2. Bring down 1.
  3. 2×1=2-2 \times 1 = -2. Add to -2 4\rightarrow -4.
  4. 2×4=8-2 \times -4 = 8. Add to -7 1\rightarrow 1.
  5. 2×1=2-2 \times 1 = -2. Add to 8 6\rightarrow 6.
  6. 2×6=12-2 \times 6 = -12. Add to 12 0\rightarrow 0.
    Result: The remaining equation is a cubic: x34x2+x+6x^3 - 4x^2 + x + 6.

Common Mistakes

Avoid these critical errors:

  1. Incorrect divisor sign: If the problem asks you to divide by (x5)(x - 5), you must put positive 5 in the box. Students frequently put -5, which ruins the calculation.
  2. Forgetting zero coefficients: As mentioned, missing terms (x38x^3 - 8) require zero placeholders.
  3. Arithmetic mistakes: Because the process relies entirely on mental math (adding negatives), a simple mistake like 5+6=1-5 + 6 = -1 cascades and destroys every subsequent number in the row.
  4. Incorrect interpretation of the remainder: Writing the remainder as just ”+ 5”. It must be written as a fraction over the original divisor: +5xc+ \frac{5}{x - c}.
  5. Stopping too early: Using synthetic division to find one root, and forgetting to factor the remaining quadratic equation to find the rest of the roots.

Worked Examples

Let’s execute 25 complete synthetic division calculations.

Beginner Level

Example 1: Basic Division Divide x25x+6x^2 - 5x + 6 by (x2)(x - 2). Box: 22. Row: 1 -5 6 Drop 1. 2(1)=22(1)=2. 5+2=3-5+2=-3. 2(3)=62(-3)=-6. 66=06-6=0.
Answer: x3x - 3.

Example 2: Simple Remainder Divide x2+4x+5x^2 + 4x + 5 by (x1)(x - 1). Box: 11. Row: 1 4 5 Drop 1. 1(1)=11(1)=1. 4+1=54+1=5. 1(5)=51(5)=5. 5+5=105+5=10.
Answer: x+5+10x1x + 5 + \frac{10}{x-1}.

Example 3: Negative Divisor Divide 2x2+7x+32x^2 + 7x + 3 by (x+3)(x + 3). Box: 3-3. Row: 2 7 3 Drop 2. 3(2)=6-3(2)=-6. 76=17-6=1. 3(1)=3-3(1)=-3. 33=03-3=0.
Answer: 2x+12x + 1.

Example 4: The Factor Theorem Is (x4)(x - 4) a factor of x216x^2 - 16? Box: 44. Row: 1 0 -16 (Added zero placeholder). Drop 1. 4(1)=44(1)=4. 0+4=40+4=4. 4(4)=164(4)=16. 16+16=0-16+16=0.
Answer: Yes, remainder is 0.

Example 5: Simple Cubic Divide x32x2x+2x^3 - 2x^2 - x + 2 by (x1)(x - 1). Box: 11. Row: 1 -2 -1 2 Drop 1. 1(1)=11(1)=1. 2+1=1-2+1=-1. 1(1)=11(-1)=-1. 11=2-1-1=-2. 1(2)=21(-2)=-2. 22=02-2=0.
Answer: x2x2x^2 - x - 2.

Intermediate Level

Example 6: Missing middle terms Divide x327x^3 - 27 by (x3)(x - 3). Box: 33. Row: 1 0 0 -27 Drop 1. 3(1)=33(1)=3. 0+3=30+3=3. 3(3)=93(3)=9. 0+9=90+9=9. 3(9)=273(9)=27. 27+27=0-27+27=0.
Answer: x2+3x+9x^2 + 3x + 9.

Example 7: Large remainder Divide 3x35x2+4x23x^3 - 5x^2 + 4x - 2 by (x+2)(x + 2). Box: 2-2. Row: 3 -5 4 -2 Drop 3. 2(3)=6-2(3)=-6. 56=11-5-6=-11. 2(11)=22-2(-11)=22. 4+22=264+22=26. 2(26)=52-2(26)=-52. 252=54-2-52=-54.
Answer: 3x211x+2654x+23x^2 - 11x + 26 - \frac{54}{x+2}.

Example 8: Fractional root Divide 4x32x2+6x34x^3 - 2x^2 + 6x - 3 by (x1/2)(x - 1/2). Box: 1/21/2. Row: 4 -2 6 -3 Drop 4. 1/2(4)=21/2(4)=2. 2+2=0-2+2=0. 1/2(0)=01/2(0)=0. 6+0=66+0=6. 1/2(6)=31/2(6)=3. 3+3=0-3+3=0.
Answer: 4x2+64x^2 + 6.

Example 9: Factoring completely Factor x36x2+11x6=0x^3 - 6x^2 + 11x - 6 = 0 using root x=2x=2. Box: 22. Row: 1 -6 11 -6 Drop 1. 2(1)=22(1)=2. 6+2=4-6+2=-4. 2(4)=82(-4)=-8. 118=311-8=3. 2(3)=62(3)=6. 6+6=0-6+6=0. Quadratic: x24x+3(x3)(x1)x^2 - 4x + 3 \rightarrow (x-3)(x-1).
Answer: (x2)(x3)(x1)=0(x-2)(x-3)(x-1) = 0.

Example 10: Negative coefficient Divide 2x3+8x23x+1-2x^3 + 8x^2 - 3x + 1 by (x4)(x - 4). Box: 44. Row: -2 8 -3 1 Drop -2. 4(2)=84(-2)=-8. 88=08-8=0. 4(0)=04(0)=0. 3+0=3-3+0=-3. 4(3)=124(-3)=-12. 112=111-12=-11.
Answer: 2x2311x4-2x^2 - 3 - \frac{11}{x-4}.

Example 11: Quartic Division Divide x41x^4 - 1 by (x1)(x - 1). Box: 11. Row: 1 0 0 0 -1 Drop 1. 1(1)=11(1)=1. 0+1=10+1=1. 1(1)=11(1)=1. 0+1=10+1=1. 1(1)=11(1)=1. 0+1=10+1=1. 1(1)=11(1)=1. 1+1=0-1+1=0.
Answer: x3+x2+x+1x^3 + x^2 + x + 1.

Example 12: Equation out of order Divide 5x4+2x35x - 4 + 2x^3 by (x+1)(x + 1). Reorder to 2x3+0x2+5x42x^3 + 0x^2 + 5x - 4. Box: 1-1. Row: 2 0 5 -4 Drop 2. 1(2)=2-1(2)=-2. 02=20-2=-2. 1(2)=2-1(-2)=2. 5+2=75+2=7. 1(7)=7-1(7)=-7. 47=11-4-7=-11.
Answer: 2x22x+711x+12x^2 - 2x + 7 - \frac{11}{x+1}.

Advanced Level

Example 13: Finding a specific value (Remainder Theorem) Find P(3)P(3) if P(x)=2x3x2+3x1P(x) = 2x^3 - x^2 + 3x - 1. (Shortcut: Synthetically divide by 3. The remainder is the answer!) Box: 33. Row: 2 -1 3 -1 Drop 2. 3(2)=63(2)=6. 1+6=5-1+6=5. 3(5)=153(5)=15. 3+15=183+15=18. 3(18)=543(18)=54. 1+54=53-1+54=53.
Answer: P(3)=53P(3) = 53.

Example 14: Messy numbers Divide 0.5x31.5x2+2x40.5x^3 - 1.5x^2 + 2x - 4 by (x2)(x - 2). Box: 22. Row: 0.5 -1.5 2 -4 Drop 0.5. 2(0.5)=12(0.5)=1. 1.5+1=0.5-1.5+1=-0.5. 2(0.5)=12(-0.5)=-1. 21=12-1=1. 2(1)=22(1)=2. 4+2=2-4+2=-2.
Answer: 0.5x20.5x+12x20.5x^2 - 0.5x + 1 - \frac{2}{x-2}.

Example 15: Double roots stacked Is x=1x=1 a double root of x3x2x+1x^3 - x^2 - x + 1? Run 1. Box: 11. Row: 1 -1 -1 1 \rightarrow Remainder is 0. Bottom is 1 0 -1. Run 1 again on the new bottom. Box: 11. Row: 1 0 -1. Drop 1. 1(1)=11(1)=1. 0+1=10+1=1. 1(1)=11(1)=1. 1+1=0-1+1=0.
Answer: Yes! It worked twice in a row.

Example 16: Dividing by (2x1)(2x - 1) (Advanced trick) Divide 2x35x2+4x12x^3 - 5x^2 + 4x - 1 by (2x1)(2x - 1). Set 2x1=0x=1/22x-1=0 \rightarrow x = 1/2. Put 1/21/2 in box. Row: 2 -5 4 -1 Drop 2. 1/2(2)=11/2(2)=1. 5+1=4-5+1=-4. 1/2(4)=21/2(-4)=-2. 42=24-2=2. 1/2(2)=11/2(2)=1. 1+1=0-1+1=0. Bottom is 2 -4 2.
Crucial step: Divide the bottom by 2 (the coefficient of 2x2x).
Answer: x22x+1x^2 - 2x + 1.

Example 17: Quintic (5th Degree) Divide x532x^5 - 32 by (x2)(x - 2). Box: 22. Row: 1 0 0 0 0 -32 Calculations will cascade with powers of 2.
Answer: x4+2x3+4x2+8x+16x^4 + 2x^3 + 4x^2 + 8x + 16.

Example 18: Evaluating negative large numbers Find P(4)P(-4) for x3+8x2+10x5x^3 + 8x^2 + 10x - 5. Box: 4-4. Row: 1 8 10 -5 Drop 1. 4(1)=4-4(1)=-4. 84=48-4=4. 4(4)=16-4(4)=-16. 1016=610-16=-6. 4(6)=24-4(-6)=24. 5+24=19-5+24=19.
Answer: P(4)=19P(-4) = 19.

Example 19: Unknown coefficients If x3+kx2x+6x^3 + kx^2 - x + 6 has a factor of (x2)(x - 2), find kk. Box: 22. Row: 1 k -1 6 Drop 1. 2(1)=22(1)=2. Next is k+2k+2. 2(k+2)=2k+42(k+2) = 2k+4. Add -1: 2k+32k+3. 2(2k+3)=4k+62(2k+3) = 4k+6. Add 6: 4k+124k+12. Since it is a factor, remainder must be 0. 4k+12=04k=12k=34k+12 = 0 \rightarrow 4k = -12 \rightarrow k = -3.
Answer: k=3k = -3.

Competition / Real World Level

Example 20: Factoring completely with imaginary roots Factor x33x2+4x12=0x^3 - 3x^2 + 4x - 12 = 0. Test x=3x=3. Box: 33. Row: 1 -3 4 -12 Drop 1. 3(1)=33(1)=3. 3+3=0-3+3=0. 3(0)=03(0)=0. 4+0=44+0=4. 3(4)=123(4)=12. 12+12=0-12+12=0. Quadratic is x2+0x+4x2+4=0x^2 + 0x + 4 \rightarrow x^2 + 4 = 0. Roots are ±2i\pm 2i.
Answer: x=3,2i,2ix=3, 2i, -2i.

Example 21: Rational Root synthesis Solve 3x34x25x+2=03x^3 - 4x^2 - 5x + 2 = 0. Candidates: ±1,2,1/3,2/3\pm 1, 2, 1/3, 2/3. Test 2. Box: 22. Row: 3 -4 -5 2 Drop 3. 2(3)=62(3)=6. 4+6=2-4+6=2. 2(2)=42(2)=4. 5+4=1-5+4=-1. 2(1)=22(-1)=-2. 22=02-2=0. Quadratic: 3x2+2x1(3x1)(x+1)3x^2 + 2x - 1 \rightarrow (3x-1)(x+1).
Answer: Roots are 2,1/3,12, 1/3, -1.

Example 22: Extremely large coefficients Divide 100x3500x2+200x1000100x^3 - 500x^2 + 200x - 1000 by (x5)(x - 5). Box: 55. Row: 100 -500 200 -1000 Drop 100. 5(100)=5005(100)=500. 500+500=0-500+500=0. 5(0)=05(0)=0. 200+0=200200+0=200. 5(200)=10005(200)=1000. 1000+1000=0-1000+1000=0.
Answer: 100x2+200100x^2 + 200.

Example 23: Irreducible quadratic leftover Solve x3+2x25x6=0x^3 + 2x^2 - 5x - 6 = 0. Test 1-1. Box: 1-1. Row: 1 2 -5 -6 Remainder is 0. Quadratic is x2+x6x^2 + x - 6. Factors to (x+3)(x2)(x+3)(x-2).
Answer: x=1,3,2x = -1, -3, 2.

Example 24: Missing consecutive terms Divide x4+16xx^4 + 16x by (x+2)(x + 2). Box: 2-2. Row: 1 0 0 16 0 Drop 1. 2(1)=2-2(1)=-2. 02=20-2=-2. 2(2)=4-2(-2)=4. 0+4=40+4=4. 2(4)=8-2(4)=-8. 168=816-8=8. 2(8)=16-2(8)=-16. 016=160-16=-16.
Answer: x32x2+4x+816x+2x^3 - 2x^2 + 4x + 8 - \frac{16}{x+2}.

Example 25: Applying synthetic to graphing Find the y-coordinate of the point on y=x34x2+x+6y = x^3 - 4x^2 + x + 6 where x=4x=4. Use Remainder Theorem. Box: 44. Row: 1 -4 1 6 Drop 1. 4(1)=44(1)=4. 4+4=0-4+4=0. 4(0)=04(0)=0. 1+0=11+0=1. 4(1)=44(1)=4. 6+4=106+4=10.
Answer: The point is (4,10)(4, 10).


Practice Problems

Test your skills. The solutions are provided below.

Beginner Level

  1. What number goes in the root box if dividing by (x7)(x - 7)?
  2. What number goes in the root box if dividing by (x+5)(x + 5)?
  3. Set up the coefficient row for 2x35x2+42x^3 - 5x^2 + 4. (Don’t forget the zero!).
  4. Divide x28x+15x^2 - 8x + 15 by (x3)(x - 3).
  5. Divide x2+2x+1x^2 + 2x + 1 by (x+1)(x + 1).
  6. If the remainder is 0, what does it mean about the divisor?
  7. Divide x38x^3 - 8 by (x2)(x - 2).
  8. What is the degree of the quotient when a cubic is divided by a linear term?
  9. Divide x210x^2 - 10 by (x3)(x - 3). What is the remainder?
  10. Is (x1)(x - 1) a factor of x3x2+2x2x^3 - x^2 + 2x - 2?

Intermediate Level

  1. Divide 2x33x2+4x52x^3 - 3x^2 + 4x - 5 by (x1)(x - 1).
  2. Use synthetic division to find P(2)P(2) if P(x)=x35x2+2x+8P(x) = x^3 - 5x^2 + 2x + 8.
  3. Is (x+2)(x + 2) a factor of x3+8x^3 + 8?
  4. Divide x45x2+4x^4 - 5x^2 + 4 by (x2)(x - 2).
  5. A synthetic division problem has a bottom row of 1 -4 3 | 0. Write the quotient equation.
  6. Find the roots of x37x6=0x^3 - 7x - 6 = 0 by testing x=1x=-1 first.
  7. Divide x3+5x2x5x^3 + 5x^2 - x - 5 by (x+5)(x + 5).
  8. What happens if you divide x3x^3 by xx? Set up the synthetic division.
  9. Divide 3x3+2x2x+4-3x^3 + 2x^2 - x + 4 by (x2)(x - 2).
  10. True or false: Long division is faster than synthetic division.

Advanced Level

  1. Divide 2x43x3+x2x+12x^4 - 3x^3 + x^2 - x + 1 by (x1/2)(x - 1/2).
  2. If x=3x=3 is a double root of x46x3+9x2x^4 - 6x^3 + 9x^2, prove it using repeated synthetic division.
  3. Find kk if (x2)(x - 2) is a factor of x3+kx25x+6x^3 + kx^2 - 5x + 6.
  4. Divide x51x^5 - 1 by (x1)(x - 1).
  5. Divide 4x36x2+2x84x^3 - 6x^2 + 2x - 8 by (2x1)(2x - 1). (Remember the shortcut!).
  6. Solve 2x311x2+17x6=02x^3 - 11x^2 + 17x - 6 = 0 given that x=2x=2 is a root.
  7. Evaluate P(3)P(-3) for x4+3x32x25x+1x^4 + 3x^3 - 2x^2 - 5x + 1 using the Remainder Theorem.
  8. A student sets up synthetic division for (x34x+1)/(x2)(x^3 - 4x + 1) / (x - 2) as 1 -4 1. Why is this wrong?
  9. If the bottom row is 0 0 0 | 5, what does the quotient look like?
  10. Prove that synthetic division relies entirely on positional value notation.

Solutions to Practice Problems

Beginner Solutions:
  1. 77.
  2. 5-5.
  3. 2 -5 0 4.
  4. x5x - 5.
  5. x+1x + 1.
  6. It means the divisor is a perfect factor of the polynomial.
  7. x2+2x+4x^2 + 2x + 4.
  8. Degree 2 (Quadratic).
  9. Remainder is 1-1. (Quotient is x+31x3x + 3 - \frac{1}{x-3}).
  10. Yes. Remainder is 0.

Intermediate Solutions: 11. 2x2x+32x12x^2 - x + 3 - \frac{2}{x-1}. 12. Box: 2. Remainder is 0. P(2)=0P(2) = 0. 13. Yes, remainder is 0. Quotient is x22x+4x^2 - 2x + 4. 14. x3+2x2x2x^3 + 2x^2 - x - 2. 15. x24x+3x^2 - 4x + 3. 16. Synthetic div by -1 yields x2x6x^2 - x - 6. Factors to (x3)(x+2)(x-3)(x+2). Roots are 1,3,2-1, 3, -2. 17. x21x^2 - 1. 18. Box: 0. Row: 1 0 0 0. Bottom is 1 0 0 | 0. Answer is x2x^2. 19. 3x24x914x2-3x^2 - 4x - 9 - \frac{14}{x-2}. 20. False. Synthetic division is vastly faster.

Advanced Solutions: 21. 2x32x2+0x1+0.5x0.52x^3 - 2x^2 + 0x - 1 + \frac{0.5}{x-0.5}. 22. Div by 3 yields x33x2+0x+0x^3 - 3x^2 + 0x + 0. Div by 3 again yields x2+0x+0x^2 + 0x + 0. Both have remainder 0. 23. Remainder equation: 8+4k10+6=04k+4=04k=4k=18 + 4k - 10 + 6 = 0 \rightarrow 4k + 4 = 0 \rightarrow 4k = -4 \rightarrow k = -1. 24. x4+x3+x2+x+1x^4 + x^3 + x^2 + x + 1. 25. Div by 1/21/2 yields bottom row 4 -4 0 | -8. Divide bottom row by 2: 2x22x2x^2 - 2x. Remainder stays 8-8. Answer: 2x22x82x12x^2 - 2x - \frac{8}{2x-1}. 26. Div by 2 yields 2x27x+32x^2 - 7x + 3. Factors to (2x1)(x3)(2x-1)(x-3). Roots are 2,3,1/22, 3, 1/2. 27. Box: -3. Remainder calculation yields 2-2. P(3)=2P(-3) = -2. 28. They forgot the zero placeholder for the missing x2x^2 term. It should be 1 0 -4 1. 29. The quotient is 0. The remainder is 5. 30. By eliminating variables, synthetic division treats 2x32x^3 as simply the number “2” in the “thousands” place, proving that variables function identically to base-10 placeholders in arithmetic.


Real World Applications

Why do professionals use synthetic division and root finding algorithms?

  • Scientific Computing: Algorithms programmed into computers to find roots of polynomials use matrix versions of synthetic division (like Horner’s Method) to save processor cycles and reduce calculation time.
  • Computer Graphics: Bezier curves and 3D rendering rely heavily on evaluating cubic polynomials. By using the synthetic division “Remainder Theorem” method, graphics cards can evaluate curves millions of times per second faster than standard arithmetic.
  • Engineering: When calculating the stability of structural nodes using characteristic polynomials, engineers must quickly reduce higher-degree matrices down to manageable quadratics to ensure a building will not vibrate dangerously.
  • Physics: In quantum mechanics, finding the eigenvalues of wave states involves massive polynomial division. Synthetic logic minimizes arithmetic errors during hand derivations.

Frequently Asked Questions

What is synthetic division?

It is a shorthand, streamlined method of dividing a polynomial by a linear binomial that removes variables and uses simple addition and multiplication.

When should I use synthetic division?

Whenever you need to divide a polynomial by (xc)(x - c) or (x+c)(x + c), or when you are testing a number to see if it is a root.

Why is synthetic division faster?

It eliminates the need to constantly write xx‘s, and it replaces messy algebraic subtraction with simple integer addition.

Can synthetic division divide any polynomial?

No. It only works cleanly when the divisor is a linear binomial with a coefficient of 1 (like x3x - 3). It cannot be used to divide by x23x^2 - 3.

What if there is a remainder?

It means the polynomial did not divide evenly. You write the remainder as a fraction over the original divisor (e.g., +5x3+ \frac{5}{x - 3}).

What does the remainder mean?

According to the Remainder Theorem, the remainder is exactly equal to the value you would get if you plugged the root number into the original equation for xx.

How is synthetic division related to the Factor Theorem?

If the remainder of your synthetic division is exactly 00, the Factor Theorem states that your divisor is a perfect factor of the polynomial.

Can synthetic division solve cubic equations?

Yes. By synthetically dividing a cubic equation by one of its roots, you instantly reduce the equation to a quadratic, which can be solved easily.

Can I use synthetic division with fractions?

Yes. If you are dividing by (x1/2)(x - 1/2), you simply put the fraction 1/21/2 into the root box and perform the exact same multiply-and-add loop.

Can calculators perform synthetic division?

Advanced Computer Algebra Systems (CAS) can perform instant division, but standard graphing calculators rely on graphing the curve to find roots rather than showing the algebraic steps.

Why do I change the sign of the divisor?

By changing (x3)(x - 3) to a positive 33 in the box, you are mathematically flipping the signs of the operation. This allows you to add columns instead of subtracting them, eliminating minus-sign errors.

What happens if an equation is missing a term like x^2?

You MUST insert a 00 into the coefficient row. If you don’t, the positional value of the numbers collapses and the math will fail entirely.

What is Horner's Method?

Horner’s Method is the algorithmic, computer-science equivalent of synthetic division. It is used to evaluate polynomials extremely fast.

Do I need to write the variables in the top row?

Never. Synthetic division uses only the numeric coefficients.

How do I write the final answer?

Look at the bottom row. Decrease the exponent of the original polynomial by 1. Attach the variables to the numbers in the bottom row in descending order.

What if the bottom row is all zeros?

Then the quotient is zero, and the polynomial divided perfectly into absolutely nothing (which usually means you divided 0 by something).

Is it possible to get a negative remainder?

Absolutely. A remainder can be any real number, positive, negative, or zero.

Can I use it on a 5th degree polynomial?

Yes. Synthetic division scales infinitely to any degree polynomial.

Why does Long Division still exist?

Because long division can divide by massive expressions like (3x24x+2)(3x^2 - 4x + 2), which synthetic division cannot handle.

What is a "depressed" polynomial?

When you divide a cubic and get a quadratic answer, that smaller quadratic is called the depressed polynomial.

Can I use synthetic division on complex numbers?

Yes! You can put 2i2i in the root box and perform complex multiplication and addition, though it requires great care.

What if my leading coefficient isn't 1?

If the polynomial is 3x3...3x^3..., you just bring the 3 straight down as your first step. It works perfectly.

Can I use it to graph?

Yes, using the Remainder Theorem, you can rapidly find the y-coordinates for any x-value to plot dots for a graph.

Why didn't they teach me this before long division?

Teachers usually enforce long division first so students understand the mechanical concept of algebraic division before they are allowed to use the “cheat code.”

Does it work backwards?

No. You cannot easily multiply polynomials using the synthetic bracket; it is strictly a division algorithm.


Summary

Synthetic division is the ultimate algebraic shortcut. By stripping away variables and replacing tedious subtraction with a fast-paced “multiply and add” loop, it condenses polynomial division into a 3-line calculation.

The golden rules of synthetic division are simple:

  1. Only use it when dividing by a linear term like (xc)(x - c).
  2. Change the sign of the divisor to find the root box number.
  3. Always use a zero placeholder for any missing terms in the polynomial.
  4. Drop the first number, multiply by the box, add the column, and repeat.

When combined with the Rational Root Theorem and the Factor Theorem, synthetic division acts as the primary weapon for dismantling impenetrable cubic and quartic equations. If you ever see a remainder of 0, you have successfully found a mathematical root.

Continue your mathematical journey with our related guides: