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.
Introduction
In the world of algebra, dividing polynomials can be an exhausting task. Traditional polynomial long division involves writing out every single , 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 () 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 ). 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 . 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 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
- Speed: It takes about 20% of the time required for long division.
- Space: It requires 3 lines of paper, rather than 10 or 15 lines.
- 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 or .
- The variable must have an exponent of exactly 1.
- The coefficient of in the divisor should ideally be 1.
Examples of Valid Divisors
- Divide by
- Divide by
- Divide by (which is just )
Non-Examples (When you CANNOT use it)
- Divide by -> Fails because of the .
- Divide by -> Fails because the degree is too high.
- Divide by -> 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 is a root of a cubic equation, you are essentially trying to divide the equation by . This is the exact scenario synthetic division was engineered to solve. It acts as the executioner, reducing the polynomial degree from a cubic () down to a manageable quadratic ().
Understanding the Synthetic Division Setup
Before doing any math, you must set up the “synthetic shelf” correctly.
Imagine a grid with 3 distinct rows.
- 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 . If you are dividing by , the root value is positive 5. If you are dividing by , the root value is negative -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.
- The Working Row (Middle Row): This row starts empty. It is where you will place the numbers created by multiplication.
- The Result Row (Bottom Row): This is where you will do your addition. The numbers that form the final answer will appear here.
- 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.
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 by .
Step 1: Identify divisor root
We are dividing by . Set . The root is 3. Put 3 in the box.
Step 2: Write coefficients
The coefficients of our cubic are , and . Write them in a row.
3 | 2 -5 -1 3
|
|_____________________
Step 3: Bring down the first coefficient
The very first number () simply drops straight down to the Result Row.
3 | 2 -5 -1 3
|
|_____________________
2
Step 4: Multiply
Multiply the number in the root box () by the number you just brought down (). . Write this in the Working Row directly under the next coefficient (the ).
3 | 2 -5 -1 3
| 6
|_____________________
2
Step 5: Add
Add the column straight down. . Write in the Result Row.
3 | 2 -5 -1 3
| 6
|_____________________
2 1
Step 6: Repeat
Loop back to Step 4. Multiply the box number () by the new bottom number (). . Write under the . Add them: . Multiply the box number () by the new bottom number (). . Write under the . Add them: .
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 .
Step 8: Interpret the quotient
Look at the numbers before the remainder: . Because we divided an polynomial by an polynomial, the answer drops one degree. The answer starts with . The quotient is , with a remainder of .
Final Answer: .
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 , we put positive 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 ‘s because, mathematically, the ‘s do nothing but hold positional value. A 3 in the column will only ever interact with other numbers in the 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.
| Feature | Synthetic Division | Polynomial Long Division |
|---|---|---|
| Speed | Lightning fast. | Slow and methodical. |
| Difficulty | Low. Relies on simple addition. | High. Relies on polynomial subtraction. |
| Accuracy | Very high (fewer minus-sign errors). | Lower (prone to arithmetic mistakes). |
| Space Required | 3 lines of paper. | Half a page. |
| When to use | Divisor is or . Testing roots. | Divisor is quadratic (), or coefficient (like ). |
| Limitations | Only 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 has a factor of if and only if . 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 a factor of ?
- Set divisor to 0: . Put -2 in the box.
- Coefficients:
1 3 -4 -12 - Bring down the 1.
- Multiply: . Add: .
- Multiply: . Add: .
- Multiply: . Add: .
Result: The remainder is exactly 0. Yes, 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
- Finding candidate roots: Use the Rational Root Theorem () to generate a list of possible fractions and integers that might be roots.
- Testing candidates: Take the first number on your list. Put it in the synthetic division box. Run the algorithm.
- Did you get a remainder of 0? If no, cross that number off your list and test the next one.
- 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 () 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 . (Note: There is a missing term. We MUST use a 0 placeholder!)
- Let’s guess that is a root. Put 1 in the box.
- Coefficients:
1 0 -7 6 - Bring down the 1.
- Multiply/Add: . Add to 0 .
- Multiply/Add: . Add to -7 .
- Multiply/Add: . Add to 6 .
- The remainder is 0. So is a root.
- The bottom row is
1 1 -6. This translates to . - Finding remaining roots: Factor the quadratic: .
- The remaining roots are and .
Verification: The three roots are .
Synthetic Division with Repeated Roots
What happens if an equation has a “double root” (e.g., )?
Repeated synthetic division: If you find that is a root, and you get a remainder of 0, your bottom row gives you a new, smaller polynomial. If you suspect 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 by .
The polynomial is actually .
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 ? Yes.
How to handle fractions:
Problem: Divide by .
- Put in the box.
- Coefficients:
2 -5 -4 3 - Bring down the 2.
- Multiply: . Add to -5 .
- Multiply: . Add to -4 .
- Multiply: . Add to 3 .
Result: The remainder is 0! The quotient is .
Best practices: If you are dealing with messy fractions, keep them as fractions () rather than decimals () 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 by .
- Box: -2. Top row:
1 -2 -7 8 12 - Bring down 1.
- . Add to -2 .
- . Add to -7 .
- . Add to 8 .
- . Add to 12 .
Result: The remaining equation is a cubic: .
Common Mistakes
Avoid these critical errors:
- Incorrect divisor sign: If the problem asks you to divide by , you must put positive 5 in the box. Students frequently put -5, which ruins the calculation.
- Forgetting zero coefficients: As mentioned, missing terms () require zero placeholders.
- Arithmetic mistakes: Because the process relies entirely on mental math (adding negatives), a simple mistake like cascades and destroys every subsequent number in the row.
- Incorrect interpretation of the remainder: Writing the remainder as just ”+ 5”. It must be written as a fraction over the original divisor: .
- 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 by .
Box: . Row: 1 -5 6
Drop 1. . . . .
Answer: .
Example 2: Simple Remainder
Divide by .
Box: . Row: 1 4 5
Drop 1. . . . .
Answer: .
Example 3: Negative Divisor
Divide by .
Box: . Row: 2 7 3
Drop 2. . . . .
Answer: .
Example 4: The Factor Theorem
Is a factor of ?
Box: . Row: 1 0 -16 (Added zero placeholder).
Drop 1. . . . .
Answer: Yes, remainder is 0.
Example 5: Simple Cubic
Divide by .
Box: . Row: 1 -2 -1 2
Drop 1. . . . . . .
Answer: .
Intermediate Level
Example 6: Missing middle terms
Divide by .
Box: . Row: 1 0 0 -27
Drop 1. . . . . . .
Answer: .
Example 7: Large remainder
Divide by .
Box: . Row: 3 -5 4 -2
Drop 3. . . . . . .
Answer: .
Example 8: Fractional root
Divide by .
Box: . Row: 4 -2 6 -3
Drop 4. . . . . . .
Answer: .
Example 9: Factoring completely
Factor using root .
Box: . Row: 1 -6 11 -6
Drop 1. . . . . . .
Quadratic: .
Answer: .
Example 10: Negative coefficient
Divide by .
Box: . Row: -2 8 -3 1
Drop -2. . . . . . .
Answer: .
Example 11: Quartic Division
Divide by .
Box: . Row: 1 0 0 0 -1
Drop 1. . . . . . . . .
Answer: .
Example 12: Equation out of order
Divide by .
Reorder to .
Box: . Row: 2 0 5 -4
Drop 2. . . . . . .
Answer: .
Advanced Level
Example 13: Finding a specific value (Remainder Theorem)
Find if .
(Shortcut: Synthetically divide by 3. The remainder is the answer!)
Box: . Row: 2 -1 3 -1
Drop 2. . . . . . .
Answer: .
Example 14: Messy numbers
Divide by .
Box: . Row: 0.5 -1.5 2 -4
Drop 0.5. . . . . . .
Answer: .
Example 15: Double roots stacked
Is a double root of ?
Run 1. Box: . Row: 1 -1 -1 1 Remainder is 0. Bottom is 1 0 -1.
Run 1 again on the new bottom. Box: . Row: 1 0 -1.
Drop 1. . . . .
Answer: Yes! It worked twice in a row.
Example 16: Dividing by (Advanced trick)
Divide by .
Set . Put in box.
Row: 2 -5 4 -1
Drop 2. . . . . . .
Bottom is 2 -4 2.
Crucial step: Divide the bottom by 2 (the coefficient of ).
Answer: .
Example 17: Quintic (5th Degree)
Divide by .
Box: . Row: 1 0 0 0 0 -32
Calculations will cascade with powers of 2.
Answer: .
Example 18: Evaluating negative large numbers
Find for .
Box: . Row: 1 8 10 -5
Drop 1. . . . . . .
Answer: .
Example 19: Unknown coefficients
If has a factor of , find .
Box: . Row: 1 k -1 6
Drop 1. . Next is .
. Add -1: .
. Add 6: .
Since it is a factor, remainder must be 0. .
Answer: .
Competition / Real World Level
Example 20: Factoring completely with imaginary roots
Factor .
Test . Box: . Row: 1 -3 4 -12
Drop 1. . . . . . .
Quadratic is .
Roots are .
Answer: .
Example 21: Rational Root synthesis
Solve .
Candidates: .
Test 2. Box: . Row: 3 -4 -5 2
Drop 3. . . . . . .
Quadratic: .
Answer: Roots are .
Example 22: Extremely large coefficients
Divide by .
Box: . Row: 100 -500 200 -1000
Drop 100. . . . . . .
Answer: .
Example 23: Irreducible quadratic leftover
Solve .
Test . Box: . Row: 1 2 -5 -6
Remainder is 0. Quadratic is . Factors to .
Answer: .
Example 24: Missing consecutive terms
Divide by .
Box: . Row: 1 0 0 16 0
Drop 1. . . . . . . . .
Answer: .
Example 25: Applying synthetic to graphing
Find the y-coordinate of the point on where .
Use Remainder Theorem. Box: . Row: 1 -4 1 6
Drop 1. . . . . . .
Answer: The point is .
Practice Problems
Test your skills. The solutions are provided below.
Beginner Level
- What number goes in the root box if dividing by ?
- What number goes in the root box if dividing by ?
- Set up the coefficient row for . (Don’t forget the zero!).
- Divide by .
- Divide by .
- If the remainder is 0, what does it mean about the divisor?
- Divide by .
- What is the degree of the quotient when a cubic is divided by a linear term?
- Divide by . What is the remainder?
- Is a factor of ?
Intermediate Level
- Divide by .
- Use synthetic division to find if .
- Is a factor of ?
- Divide by .
- A synthetic division problem has a bottom row of
1 -4 3 | 0. Write the quotient equation. - Find the roots of by testing first.
- Divide by .
- What happens if you divide by ? Set up the synthetic division.
- Divide by .
- True or false: Long division is faster than synthetic division.
Advanced Level
- Divide by .
- If is a double root of , prove it using repeated synthetic division.
- Find if is a factor of .
- Divide by .
- Divide by . (Remember the shortcut!).
- Solve given that is a root.
- Evaluate for using the Remainder Theorem.
- A student sets up synthetic division for as
1 -4 1. Why is this wrong? - If the bottom row is
0 0 0 | 5, what does the quotient look like? - Prove that synthetic division relies entirely on positional value notation.
Solutions to Practice Problems
Beginner Solutions:- .
- .
2 -5 0 4.- .
- .
- It means the divisor is a perfect factor of the polynomial.
- .
- Degree 2 (Quadratic).
- Remainder is . (Quotient is ).
- Yes. Remainder is 0.
Intermediate Solutions:
11. .
12. Box: 2. Remainder is 0. .
13. Yes, remainder is 0. Quotient is .
14. .
15. .
16. Synthetic div by -1 yields . Factors to . Roots are .
17. .
18. Box: 0. Row: 1 0 0 0. Bottom is 1 0 0 | 0. Answer is .
19. .
20. False. Synthetic division is vastly faster.
Advanced Solutions:
21. .
22. Div by 3 yields . Div by 3 again yields . Both have remainder 0.
23. Remainder equation: .
24. .
25. Div by yields bottom row 4 -4 0 | -8. Divide bottom row by 2: . Remainder stays . Answer: .
26. Div by 2 yields . Factors to . Roots are .
27. Box: -3. Remainder calculation yields . .
28. They forgot the zero placeholder for the missing term. It should be 1 0 -4 1.
29. The quotient is 0. The remainder is 5.
30. By eliminating variables, synthetic division treats 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 or , 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 ‘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 ). It cannot be used to divide by .
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., ).
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 .
How is synthetic division related to the Factor Theorem?
If the remainder of your synthetic division is exactly , 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 , you simply put the fraction 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 to a positive 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 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 , 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 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 , 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:
- Only use it when dividing by a linear term like .
- Change the sign of the divisor to find the root box number.
- Always use a zero placeholder for any missing terms in the polynomial.
- 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:
- What Is a Cubic Equation? Fundamentals
- How to Factor Cubic Equations: 9 Methods
- How to Use the Rational Root Theorem
- Polynomial Long Division Explained
- How to Solve Cubic Equations Using Cardano’s Method
- Graph of a Cubic Function: Visualizing Roots
- Understanding the Discriminant of a Cubic Equation
- Real vs Complex Roots in Polynomials