Skip to main content
Skip to main content
DigiCalcs
Back to Guides
3 min read4 Steps

How to Perform Synthetic Division: Step-by-Step Guide

Learn to manually perform synthetic division to divide polynomials by linear factors. This guide covers setup, iterative calculations, interpreting results, and common pitfalls.

Skip the math — use the calculator

Step-by-Step Instructions

1

Identify `k` and the Polynomial Coefficients

First, identify the value of `k` from your linear divisor `(x - k)`. If your divisor is `(x - 2)`, then `k = 2`. If it's `(x + 3)`, then `k = -3` (since `x + 3 = x - (-3)`). Next, list all coefficients of the dividend polynomial in descending order of powers. **Crucially, if any power of `x` is missing, include a `0` as its coefficient.** * **Example**: For `P(x) = 3x^3 - 2x^2 + 5x - 4` and divisor `(x - 2)`: * `k = 2` * Coefficients: `3, -2, 5, -4` (no missing terms here).

2

Set Up the Synthetic Division Grid

Draw an 'L' shape or a half-box. Place the value of `k` to the left of this structure. Then, write the coefficients of the polynomial in a row to the right of `k`, inside the structure. Leave a blank row below the coefficients for intermediate calculations, and draw a horizontal line below that row. * **Example**: For `k = 2` and coefficients `3, -2, 5, -4`: ``` 2 | 3 -2 5 -4 |________________ ```

3

Perform Iterative Multiplication and Addition

This is the core of the synthetic division process: 1. **Bring down the first coefficient**: Drop the first coefficient directly below the horizontal line. ``` 2 | 3 -2 5 -4 |________________ 3 ``` 2. **Multiply and Add**: Multiply the number you just brought down (the `3`) by `k` (which is `2`). Place this product (`3 * 2 = 6`) under the *next* coefficient (`-2`). Then, add the two numbers in that column (`-2 + 6 = 4`). ``` 2 | 3 -2 5 -4 | 6 |________________ 3 4 ``` 3. **Repeat**: Continue this multiply-and-add process for the remaining coefficients. Multiply the new sum (`4`) by `k` (`2`), place the product (`8`) under the next coefficient (`5`), and add (`5 + 8 = 13`). ``` 2 | 3 -2 5 -4 | 6 8 |________________ 3 4 13 ``` Again: Multiply the new sum (`13`) by `k` (`2`), place the product (`26`) under the last coefficient (`-4`), and add (`-4 + 26 = 22`). ``` 2 | 3 -2 5 -4 | 6 8 26 |________________ 3 4 13 22 ```

4

Formulate the Quotient and Remainder

The numbers below the line represent the coefficients of the quotient polynomial and the remainder. * The **last number** (far right) is the **remainder**. * The **other numbers** (to the left of the remainder) are the **coefficients of the quotient polynomial**. The degree of the quotient polynomial will be one less than the degree of the original dividend polynomial. * **Example**: From our calculation, `3, 4, 13, 22`: * Remainder: `22` * Quotient coefficients: `3, 4, 13` Since the original polynomial `3x^3 - 2x^2 + 5x - 4` was degree 3, the quotient polynomial will be degree 2. Therefore, the quotient `Q(x) = 3x^2 + 4x + 13`. The final result can be written as: `P(x) / D(x) = Q(x) + R / D(x)` ` (3x^3 - 2x^2 + 5x - 4) / (x - 2) = 3x^2 + 4x + 13 + 22 / (x - 2)`

Introduction to Synthetic Division

Synthetic division is an efficient algebraic method for dividing a polynomial by a linear binomial of the form (x - k). It provides a streamlined alternative to polynomial long division, especially useful when factoring polynomials, finding roots, or evaluating polynomial functions. Understanding this manual process is fundamental for higher-level algebra and calculus.

Prerequisites

Before proceeding, ensure you are familiar with the following:

  • Polynomials: Understanding terms, coefficients, degrees, and standard form (descending powers of x).
  • Linear Factors: Recognizing expressions like (x - 2) or (x + 3) as linear factors, where k is a constant.
  • Basic Arithmetic: Proficiency in addition, subtraction, and multiplication of integers.

The Synthetic Division Algorithm

Unlike a single formula, synthetic division is an algorithmic process. The core idea is to manipulate only the coefficients of the polynomial, significantly reducing the amount of writing and calculation compared to long division. The result will yield the coefficients of the quotient polynomial and the remainder, which can be expressed in the form: P(x) / D(x) = Q(x) + R / D(x).

When to Use Synthetic Division

Synthetic division is applicable only when the divisor is a linear binomial of the form (x - k). It cannot be used for divisors with a degree higher than one (e.g., x^2 + 1) or divisors with a leading coefficient other than 1 (e.g., 2x - 3 – though this can sometimes be adapted by dividing the entire polynomial by 2 first).

Worked Example: Dividing (3x^3 - 2x^2 + 5x - 4) by (x - 2)

Let's walk through an example to illustrate the process.

Problem: Divide P(x) = 3x^3 - 2x^2 + 5x - 4 by D(x) = x - 2.

Common Pitfalls to Avoid

  1. Missing Terms: Always include a 0 coefficient for any missing powers of x in the dividend. For example, if P(x) = x^4 + 3x^2 - 1, the coefficients are 1, 0, 3, 0, -1.
  2. Incorrect k Value: If dividing by (x + k_value), remember that k in (x - k) is actually -k_value. So, for (x + 3), k = -3. For (x - 2), k = 2.
  3. Arithmetic Errors: Double-check all multiplications and additions. A single error propagates throughout the calculation.
  4. Misinterpreting the Result: Ensure you correctly reconstruct the quotient polynomial, starting with a degree one less than the original polynomial's degree, and correctly identify the remainder.

When to Use a Synthetic Division Solver

While understanding the manual process is crucial, synthetic division solvers or calculators are beneficial in several scenarios:

  • Complex Polynomials: For polynomials with many terms or large coefficients, a solver can quickly provide the result and reduce the chance of arithmetic errors.
  • Verification: After performing a manual calculation, a solver can be used to quickly verify your answer, ensuring accuracy.
  • Speed and Efficiency: In contexts where the process needs to be repeated frequently or time is limited, a solver offers immediate results, allowing you to focus on interpreting the outcome rather than the computation itself.

However, always prioritize understanding the underlying manual method before relying solely on tools.

Ready to Calculate?

Skip the manual work and get instant results.

Open Calculator

Settings

PrivacyTermsAbout© 2026 DigiCalcs