How to divide polynomials using synthetic division

Synthetic division is a shorthand algorithmic method for dividing a polynomial by a linear binomial of the form (xc)(x - c). It compresses the standard long division process by operating exclusively on the coefficients of the polynomial. This method applies only when the divisor has a degree of 1 and a leading coefficient of 1. If the divisor has a leading coefficient other than 1, algebraic manipulation is required before proceeding.

The setup

Identify the constant cc in the divisor (xc)(x - c). Write cc to the left of the division bracket. Extract the coefficients of the dividend polynomial in descending order of degree. You must insert a 00 for any missing power of the variable. Write these coefficients in a row next to cc. Draw a horizontal line below the coefficients, leaving space for a second row of numbers.

The steps

  1. Bring the leading coefficient of the dividend straight down below the horizontal line. 2. Multiply this bottom value by cc and write the product in the next column, above the line. 3. Add the numbers in this column vertically and write the sum below the line. 4. Repeat the multiplication and addition process until all columns are filled. The final number below the line is the remainder. The preceding numbers are the coefficients of the quotient polynomial, starting exactly one degree lower than the original dividend.

Checking the result

Verify the computation using the division algorithm: P(x)=D(x)Q(x)+RP(x) = D(x)Q(x) + R. Multiply your derived quotient Q(x)Q(x) by the divisor D(x)D(x), then add the remainder RR. Expand and simplify the expression. The result must exactly match the original dividend P(x)P(x).

Common errors

The most frequent error is omitting zero placeholders for missing terms in the dividend, which misaligns the entire degree structure. A second common error is using the wrong sign for cc. If the divisor is (x+4)(x + 4), the value of cc is 4-4, not 44.

Worked example

Divide P(x)=2x33x2+4x5P(x) = 2x^3 - 3x^2 + 4x - 5 by (x2)(x - 2).

The divisor is (x2)(x - 2), so c=2c = 2. The coefficients of P(x)P(x) are 2,3,4,52, -3, 4, -5. Setup: 223452 \mid 2 \quad -3 \quad 4 \quad -5. Step 1: Bring down the 22. Step 2: Multiply 2imes2=42 imes 2 = 4. Write 44 under 3-3. Add: 3+4=1-3 + 4 = 1. Step 3: Multiply 1imes2=21 imes 2 = 2. Write 22 under 44. Add: 4+2=64 + 2 = 6. Step 4: Multiply 6imes2=126 imes 2 = 12. Write 1212 under 5-5. Add: 5+12=7-5 + 12 = 7. The bottom row is 21672 \quad 1 \quad 6 \quad \mid \quad 7. The remainder is 77. The quotient coefficients are 2,1,62, 1, 6. Because the dividend is cubic, the quotient is quadratic. Quotient: 2x2+x+62x^2 + x + 6. Final answer: 2x2+x+6+7x22x^2 + x + 6 + \frac{7}{x - 2}.

FAQ

Run your own problem

References: OpenStax College Algebra, Section 5.4: Dividing Polynomials · Larson Precalculus, Chapter 2: Polynomial and Rational Functions

See also