Synthetic Division Calculator
Quickly divide a polynomial by a linear factor (x - c) using synthetic division. See the quotient and remainder with a complete step-by-step explanation of the process.
Synthetic Division
Enter the polynomial coefficients in descending order and the value of c (from divisor x - c). Click Calculate to perform synthetic division.
Synthetic Division – Complete Explanation
Synthetic division is a shortcut method for dividing a polynomial by a linear binomial of the form x - c. It reduces the amount of writing and calculation compared to polynomial long division, making it an essential tool for algebra, precalculus, and calculus students.
Synthetic Division Principle
To divide a polynomial P(x) by (x - c): 1. Write the coefficients of P(x) in descending order. 2. Bring down the leading coefficient. 3. Multiply by c, add to the next coefficient. 4. Repeat until all coefficients are used. The last number is the remainder; the others form the quotient.
1. When Can You Use Synthetic Division?
Synthetic division is specifically designed for divisors of the form x - c (linear with leading coefficient 1). It cannot be used directly for:
- Divisors like 2x - 3 (leading coefficient not 1)
- Quadratic or higher-degree divisors (e.g., x² + 1)
- Divisors with missing terms
2. Step-by-Step Example
Example 1: Basic Synthetic Division
Divide: (2x³ - 3x² + 0x - 5) ÷ (x - 2)
Coefficients: 2, -3, 0, -5
c = 2
Step 1: Bring down 2.
2
↓
2
Step 2: Multiply 2 × 2 = 4. Add to -3 → 1.
2 -3 0 -5
4
----------------
2 1
Step 3: Multiply 1 × 2 = 2. Add to 0 → 2.
2 -3 0 -5
4 2
----------------
2 1 2
Step 4: Multiply 2 × 2 = 4. Add to -5 → -1.
2 -3 0 -5
4 2 4
----------------
2 1 2 -1
Quotient: 2x² + x + 2
Remainder: -1
Example 2: Divisor with Negative c
Divide: (x³ + 6x² + 11x + 6) ÷ (x + 3) Note: x + 3 = x - (-3), so c = -3 Coefficients: 1, 6, 11, 6 c = -3 Bring down 1. 1 × (-3) = -3, add to 6 → 3. 3 × (-3) = -9, add to 11 → 2. 2 × (-3) = -6, add to 6 → 0. Result: 1, 3, 2, 0 Quotient: x² + 3x + 2 Remainder: 0 → (x + 3) is a factor!
3. More Examples
Example 1: (3x⁴ - 5x² + 2x - 1) ÷ (x - 1)
Coefficients: 3, 0, -5, 2, -1 | c = 1
Result: 3, 3, -2, 0, -1
Quotient: 3x³ + 3x² - 2x, Remainder: -1
Example 2: (2x³ + 5x² - 3) ÷ (x + 2)
Coefficients: 2, 5, 0, -3 | c = -2
Result: 2, 1, -2, 1
Quotient: 2x² + x - 2, Remainder: 1
Example 3: (x⁴ - 16) ÷ (x - 2)
Coefficients: 1, 0, 0, 0, -16 | c = 2
Result: 1, 2, 4, 8, 0
Quotient: x³ + 2x² + 4x + 8, Remainder: 0
4. Synthetic Division with Missing Terms
When the polynomial has missing degrees, you must insert zero coefficients as placeholders. For example:
P(x) = 2x⁴ - 8 (missing x³, x², x terms)
Coefficients: 2, 0, 0, 0, -8
Without the zeros, the alignment would be incorrect and produce wrong results.
5. The Remainder Theorem Connection
Synthetic division provides a fast way to evaluate polynomials. The final number in the bottom row is exactly P(c).
Remainder Theorem
When P(x) is divided by (x - c), the remainder is P(c).
This means synthetic division is also a quick method for polynomial evaluation — often faster than direct substitution for high-degree polynomials.
6. The Factor Theorem Connection
If the remainder from synthetic division is 0, then (x - c) is a factor of P(x). This is the Factor Theorem in action.
Example: Test if (x - 3) is a factor of x³ - 4x² + x + 6
c = 3 | Coefficients: 1, -4, 1, 6
Synthetic division: 1, -1, -2, 0 → Remainder 0
Yes! x³ - 4x² + x + 6 = (x - 3)(x² - x - 2)
7. Common Mistakes to Avoid
- Forgetting zero placeholders: Missing terms must be represented by zeros in the coefficient list.
- Wrong sign of c: For divisor x + a, use c = -a (not +a).
- Misinterpreting the quotient degree: The quotient is always one degree less than the original polynomial.
- Stopping early: Continue through all coefficients — the process must reach the constant term.
- Arithmetic errors in multiplication/addition: Double-check each step, especially with negative numbers.
8. Writing the Final Answer
After performing synthetic division with coefficients [aₙ, aₙ₋₁, ..., a₀] and obtaining result [bₙ₋₁, bₙ₋₂, ..., b₀, r]:
P(x) ÷ (x - c) = bₙ₋₁xⁿ⁻¹ + bₙ₋₂xⁿ⁻² + ... + b₁x + b₀ + r/(x - c)
Example: (2x³ - 3x² - 5) ÷ (x - 2) = 2x² + x + 2 - 1/(x - 2)
9. Advantages Over Long Division
- Faster: Fewer steps and less writing.
- Less error-prone: No need to track variables and exponents during calculation.
- Compact: Easy to organize on paper.
- Direct evaluation: Simultaneously gives quotient and P(c).
10. Limitations of Synthetic Division
- Only works for linear divisors with leading coefficient 1 (x - c form).
- Cannot handle higher-degree divisors (use long division instead).
- Requires careful handling of zero coefficients.
- Doesn't directly show the multiplication/subtraction steps as clearly as long division for beginners.
11. Real-World Applications
- Polynomial factoring: Quickly test potential rational roots.
- Calculus: Partial fraction decomposition setup.
- Engineering: Control system stability analysis (Routh-Hurwitz uses similar tabular methods).
- Computer algebra systems: Efficient algorithm for polynomial evaluation and division.
- Numerical analysis: Horner's method for polynomial evaluation is essentially synthetic division.
12. Practice Problems with Solutions
Problem 1: (x³ - 7x + 6) ÷ (x - 1)
Solution: Quotient: x² + x - 6, Remainder: 0
Problem 2: (2x⁴ + 3x³ - 2x² + x - 5) ÷ (x + 2)
Solution: Quotient: 2x³ - x² + 0x + 1, Remainder: -7
Problem 3: (4x³ - 8x² + 3x - 6) ÷ (x - 2)
Solution: Quotient: 4x² + 0x + 3, Remainder: 0
Problem 4: (x⁵ - 32) ÷ (x - 2)
Solution: Quotient: x⁴ + 2x³ + 4x² + 8x + 16, Remainder: 0
13. Tips for Mastering Synthetic Division
- Always write coefficients in descending order first, including zeros.
- Double-check the sign of c (x - c → positive c; x + c → negative c).
- Practice with simple polynomials first, then add complexity.
- Verify your result using the Remainder Theorem: evaluate P(c) directly to confirm the remainder.
- Use synthetic division to quickly factor polynomials once you find one root.
- Remember: the degree of the quotient is exactly one less than the degree of the dividend.
14. Final Thoughts
Synthetic division is an elegant and efficient algorithm that every algebra student should master. It not only simplifies polynomial division but also reinforces deep connections between roots, factors, and polynomial evaluation through the Remainder and Factor Theorems.
While this calculator handles the computation instantly, practicing synthetic division by hand builds number sense and prepares you for more advanced topics in calculus and beyond. Use the tool to check your work, but make sure you understand each step of the process.