Quick Answer: Two Methods

To divide a polynomial by a binomial, you can use:

Key Formula: Dividend = Divisor ร— Quotient + Remainder. Written as: P(x) = D(x) ยท Q(x) + R

Method 1: Polynomial Long Division

Works just like numerical long division. Follow these steps:

  1. Divide: Divide the leading term of the dividend by the leading term of the divisor
  2. Multiply: Multiply the entire divisor by that result
  3. Subtract: Subtract the result from the current polynomial
  4. Bring down: Bring down the next term
  5. Repeat until no terms remain

Example: Divide (2xยฒ + 7x + 3) by (x + 3)

Try It: Divide (3xยฒ + 10x + 8) by (x + 2).

3xยฒ/x = 3x. Multiply: 3x(x + 2) = 3xยฒ + 6x. Subtract: 4x + 8.
4x/x = 4. Multiply: 4(x + 2) = 4x + 8. Subtract: 0.
Answer: 3x + 4

Method 2: Synthetic Division (Shortcut)

Use this method only when the divisor is of the form (x - a). It's faster than long division.

Example: Divide (xยณ - 6xยฒ + 7x + 6) by (x - 1)

  1. Write the root of the divisor: x - 1 = 0, so a = 1
  2. Write the coefficients: 1 | -6 | 7 | 6
  3. Bring down the first coefficient: 1
  4. Multiply by a (1) and add to next: -6 + 1 = -5
  5. Multiply by a (1) and add to next: 7 + (-5) = 2
  6. Multiply by a (1) and add to next: 6 + 2 = 8 (remainder)

Quotient: xยฒ - 5x + 2, Remainder: 8

When to Use Each Method

Feature Long Division Synthetic Division
Works withAny divisorOnly (x - a) form
SpeedSlowerMuch faster
SetupWrite full expressionsOnly coefficients needed
Best for(2x + 1), (xยฒ + 3), etc.(x - 5), (x + 2), etc.

Common Mistakes

Remember: If the remainder is 0, the divisor is a factor of the polynomial. If P(x) / (x - a) has remainder 0, then (x - a) is a factor and P(a) = 0.

Try our Polynomial Calculator or Remainder Theorem guide for related topics.

Decision Check: Long Division or Synthetic Division?

Use long division when the divisor has more than one term or is not in the form x - c. Use synthetic division only when the divisor can be rewritten as x - c and the polynomial terms are in descending degree order.

Setup Example

For (2x^3 - 3x^2 + 0x + 5) divided by (x - 2), include the missing 0x coefficient before synthetic division. The zero placeholder keeps every column aligned with the correct power of x.

Use the Polynomial Calculator for polynomial operations and the Remainder Theorem guide to check a remainder without finishing full division.