Synthetic division is a shorthand method for dividing polynomials by linear factors of the form (x − c). It replaces the variables and exponents used in traditional algebraic long division with a streamlined process of multiplying and adding numbers.
To perform synthetic division, first set the linear divisor (x − c) to zero to find the root c. Next, list the polynomial's coefficients in descending order of degree. Drop the leading coefficient down, then repeat the process of multiplying by c and adding the results in columns.
When Can You Use Synthetic Division?
Synthetic division can be used when dividing a polynomial by a linear factor of the form \(x-c\) for some constant \(c\). This is especially helpful for a fast determination of the quotient and the remainder without having to perform traditional polynomial long division. Synthetic division is a method that can be used to evaluate polynomials, to check if a number is a root, and to factor polynomials when one linear factor is known. Synthetic division is highly efficient, but it comes with one strict rule: the divisor must be a first-degree linear polynomial, such as x − 3 or x + 5.
Allowed Divisors:
- x − 4
- x + 2
- x − ½
Not Allowed:
- x² + 1
- x³ − 2x
For non-linear divisors, use standard polynomial long division.
How to Do Synthetic Division Step-by-Step
To divide a polynomial P(x) by (x - c), follow this 5-step process:
- Find the Root (c): Set your divisor equal to zero. If your divisor is (x - k), your multiplier is k. If your divisor is (x + k), your multiplier is -k.
- Set Up the Coefficients: Write the coefficients of the dividend polynomial in order of decreasing degree. Important: Insert a 0 placeholder for any missing terms (e.g., if x² is missing, write 0).
- Drop the First Coefficient: Bring the very first coefficient straight down below the horizontal division line.
-
Multiply and Add:
- Multiply the number below the line by your root c.
- Place the result in the next column under the polynomial coefficient.
- Add the numbers in that column together and write the sum below the line.
- Write the Final Polynomial: The numbers under the line represent the quotient coefficients. The last number on the far right is the remainder. The degree of the quotient polynomial will always be one degree less than the original polynomial.
Synthetic Division Examples
Example 1: Standard Division (No Remainder)
Step 1: Set up the root and coefficients
Divisor: x − 3 = 0 ⇒ c = 3
Coefficients: 2, −6, 2, −6
| 3 | 2 | −6 | 2 | −6 |
| 6 | 0 | 6 | ||
| 2 | 0 | 2 | 0 | |
Step 2: Perform the operations
- Drop down the 2.
- Multiply 3 × 2 = 6. Write 6 under −6 and add: −6 + 6 = 0.
- Multiply 3 × 0 = 0. Write 0 under 2 and add: 2 + 0 = 2.
- Multiply 3 × 2 = 6. Write 6 under −6 and add: −6 + 6 = 0.
Final Answer
The bottom row yields 2, 0, 2 with a remainder of 0. Since the original degree was 3, the quotient starts at degree 2.
Quotient = 2x2 + 2
Example 2: Missing Terms & Non-Zero Remainder
Step 1: Set up with zero placeholders
Divisor: x + 3 = 0 ⇒ c = −3
Notice that x3 and x are missing. Therefore, use zero placeholders.
Coefficients: 1, 0, −10, 0, −2
| −3 | 1 | 0 | −10 | 0 | −2 |
| −3 | 9 | 3 | −9 | ||
| 1 | −3 | −1 | 3 | −11 | |
Step 2: Perform the operations
- Drop down 1.
- −3 × 1 = −3 ⇒ 0 + (−3) = −3.
- −3 × (−3) = 9 ⇒ −10 + 9 = −1.
- −3 × (−1) = 3 ⇒ 0 + 3 = 3.
- −3 × 3 = −9 ⇒ −2 + (−9) = −11.
Final Answer
The quotient coefficients are 1, −3, −1, 3, with a remainder of −11.
Quotient = x3 − 3x2 − x + 3
Final result = x3 − 3x2 − x + 3 − 11/(x + 3)
How a Synthetic Division Calculator Works
A synthetic division calculator automates this linear algebra routine using an array structure. When using an online calculator tool or programming your own solver:
- The algorithm parses the input string into a coefficient array: [an, an-1, …, a0] .
- It detects missing indices between the highest exponent n and 0, padding them with 0.
-
It iterates through an accumulator loop:
accum[0] = anaccum[i] = an-i + (c × accum[i-1])
- The output displays the quotient array and highlights the final term accum[n] as the remainder.
Conclusion
Synthetic division is a fast shortcut for dividing a polynomial by a linear factor like . If the coefficients are properly ordered, you can find the quotient and remainder with fewer calculations. Bring down the first coefficient and repeat the multiply-and-add steps. The polynomial should be written as where is any real number. Synthetic division is an easy way to solve polynomial division problems and check polynomial roots. Regular practice is recommended.
You can opt for our Advanced Math or Vedic Math+Mental Math courses. Our Math Quiz for grades 3rd, 4th, 5th, and 6th helps in further exciting and engaging in mathematics with hands-on lessons.
Frequently Asked Questions
What is the synthetic division remainder theorem?
The Remainder Theorem states that if a polynomial P(x) is divided by (x - c), the remainder of the division is equal to P(c).
Synthetic division provides a fast way to evaluate complex polynomials at x = c without direct exponent substitution.
How do you handle a divisor with a leading coefficient like (2x - 1)?
If the divisor has a coefficient before x, rewrite it by factoring out the coefficient. For example, convert (2x - 1) to 2(x - 1/2).
Perform synthetic division using c = 1/2, then divide the resulting quotient terms by 2.
Why did I get the wrong answer using synthetic division?
The two most common errors in synthetic division of polynomials are:
- Forgetting to insert a 0 coefficient for missing variable powers.
- Using the wrong sign for c. For example, use -3, not +3, when dividing by x + 3.












