Synthetic Division- Finding Quotient and Remainder
What Is Synthetic Division and Why You Need It
Synthetic division is a shortcut method for dividing polynomials when you're working with a linear divisor of the form x - c. It's faster than long division and requires less writing. That's it. No magic here.
If you're dividing by anything more complicated than x - c, forget synthetic division. Use long polynomial division instead.
When Synthetic Division Actually Works
The divisor must be x - c where c is a constant. Some examples:
- x - 3 (c = 3)
- x + 2 (c = -2)
- x - 1/2 (c = 1/2)
Notice the sign. The number you write down is the opposite of what's in the divisor. If it's x + 2, you write -2. If it's x - 5, you write 5.
The Setup: Getting It Right Matters
Before you touch the synthetic division process, you need the coefficients of your polynomial in descending order of exponent. Missing terms get a coefficient of 0.
Example: For 2x³ - 3x² + 0x - 7, write: 2, -3, 0, -7
Skipping this step is where most students mess up. Don't skip it.
Step-by-Step Synthetic Division Process
Let's divide (2x³ - 3x² - 8x + 12) ÷ (x - 2)
Step 1: Set Up the Tableau
Write the value of c (the number from the divisor) in the top left corner. Bring down the leading coefficient.
For x - 2, c = 2. The coefficients are 2, -3, -8, 12.
Step 2: Multiply and Add
Multiply c by the first number in the bottom row. Write the result under the second coefficient. Add down. Repeat.
Here's what happens:
2 → bring down
2 × 2 = 4 → -3 + 4 = 1
2 × 1 = 2 → -8 + 2 = -6
2 × (-6) = -12 → 12 + (-12) = 0
Step 3: Read the Result
The bottom row gives you the coefficients of the quotient and the remainder.
For our example: 2, 1, -6 are the quotient coefficients. 0 is the remainder.
The quotient is 2x² + x - 6. The remainder is 0.
Synthetic Division vs. Long Division
| Feature | Synthetic Division | Long Division |
|---|---|---|
| Speed | Fast, fewer steps | Slower, more writing |
| Works when | Divisor is x - c only | Any polynomial divisor |
| Setup required | Only coefficients needed | Full polynomial notation |
| Best for | Repeated evaluations, finding roots | Complex divisors |
Finding the Remainder: The Quick Trick
There's a faster way to find just the remainder without full synthetic division. It's called the Remainder Theorem.
To find the remainder when f(x) is divided by (x - c), evaluate f(c).
For f(x) = 2x³ - 3x² - 8x + 12 divided by (x - 2):
f(2) = 2(8) - 3(4) - 8(2) + 12 = 16 - 12 - 16 + 12 = 0
Remainder is 0. This confirms (x - 2) is a factor.
How To: Synthetic Division in Practice
Example 1: Divide (x³ + 4x² - 7x + 6) by (x + 3)
Step 1: The divisor is x + 3, so c = -3. Coefficients: 1, 4, -7, 6
Step 2: Synthetic division with c = -3
-3 | 1 4 -7 6
| -3 -3 30
-------------------
1 1 -10 36
Quotient: x² + x - 10. Remainder: 36.
Example 2: Divide (4x⁴ - 3x² + x - 5) by (x - 1)
Remember to include missing terms. The polynomial is 4x⁴ + 0x³ - 3x² + x - 5
1 | 4 0 -3 1 -5
| 4 4 1 2
-------------------------
4 4 1 2 -3
Quotient: 4x³ + 4x² + x + 2. Remainder: -3.
Common Mistakes That Will Destroy Your Answer
- Writing the wrong sign for c. x + 2 means c = -2, not 2.
- Forgetting to include zero coefficients for missing terms.
- Skipping the bring-down step at the beginning.
- Adding when you should multiply, or multiplying when you should add.
When to Use Synthetic Division
Synthetic division is most useful when you're testing potential roots of a polynomial. If you keep getting remainders of 0, you've found factors. If the remainder is nonzero, that value is not a root.
It's also useful when evaluating polynomials at specific points, since the Remainder Theorem connects directly to synthetic division.
The Bottom Line
Synthetic division is a tool. It only works for linear divisors of the form x - c. The setup matters. The sign matters. Once you get the tableau right, the process is mechanical: multiply, add, repeat.
Practice with a few examples until the steps feel automatic. Then move on to using it for factoring polynomials and checking potential roots.