Dividing Polynomials: Methods, Synthetic Division, Examples

Dividing Polynomials: Methods, Synthetic Division, Examples

What Does Dividing Polynomials Mean?

Dividing polynomials produces a quotient Q(x) and a remainder R(x) from a dividend P(x) and a divisor D(x), related by the division algorithm:

P(x)=D(x)⋅Q(x)+R(x)

The remainder always ends up with a degree lower than the divisor. When that remainder is zero, the divisor divides the dividend exactly, which means it is a factor. A polynomial divided this way behaves much like a whole number under division: there is always exactly one quotient and one remainder.

Variable glossary:

Symbol Meaning
P(x) dividend, the polynomial being divided
D(x) divisor, what you divide by
Q(x) quotient, the main result
R(x) remainder, lower degree than D(x)
k the constant in a linear divisor x−k

How Do You Divide a Polynomial by a Monomial?

When the divisor is a single term, divide each term of the dividend by it separately, then combine the results. This is the splitting method, and it is the fastest of the three when it applies.

For (4x²−6x)÷2x:

4x²/2x = 2x

6x/2x = 3

Result = 2x - 3

Each term is handled on its own line, with the variable rule x^a/x^b = x^{a-b} doing the work on the exponents. A monomial divisor never needs the long-division bracket, because its single term cannot interact across the dividend.

How Do You Divide by a Binomial Using Long Division?

When the divisor has two or more terms, the splitting trick fails, because the terms interact. Here you use the full divide, multiply, subtract, bring-down cycle of long division of polynomials.

Take (4x²−5x−21)÷(x−3):

4x²÷x = 4x

4x⋅(x−3) = 4x²−12x

(4x²−5x)−(4x²−12x) = 7x

Bring down −21: now 7x−21.

7x÷x = 7

7⋅(x−3) = 7x−21

(7x−21)−(7x−21) = 0

Quotient 4x + 7, remainder 0.

What Is Synthetic Division and When Can You Use It?

Synthetic division is a shorthand that works only when the divisor is linear, of the form x−k. Instead of carrying variables, you work with the coefficients alone, which makes it far quicker for that one common case.

To divide (2x²+3x−5)÷(x−1), use k=1 and the coefficients 2,3,−5:

  1. Bring down the first coefficient: 2.

  2. Multiply by k: 2×1 = 2. Add to the next coefficient: 3 + 2 = 5.

  3. Multiply by k: 5×1 = 5. Add to the last coefficient: −5 + 5 = 0.

The bottom row 2,5 gives the quotient 2x + 5, and the final 0 is the remainder.

Examples of Dividing Polynomials

Six examples spanning all three methods, from a clean monomial split to a synthetic division with a non-zero remainder. The problem statement is bold; the working is not.

Example 1

Divide (6x³−9x²+3x)÷3x by splitting terms.

6x³/3x = 2x²

9x²/3x = 3x

3x/3x = 1

Result 2x² - 3x + 1.

Example 2

Divide (x²+3)÷(x−4), after watching a tempting shortcut fail.

Correct method: insert 0 as a placeholder and run long division.

Rewrite as x² + 0x + 3.

x²÷x = x

x⋅(x−4) = x²−4x

(x²+0x)−(x²−4x) = 4x.

Bring down +3: now 4x + 3.

4x÷x = 4.

4⋅(x−4) = 4x−16.

(4x + 3)−(4x−16) = 19.

Answer: x + 4 + 19/(x−4).

Example 3

Divide (2x²+5x−3)÷(x+3) using long division.

2x²÷x = 2x.

2x⋅(x+3) = 2x² + 6x.

(2x² + 5x)−(2x² + 6x) = −x.

Bring down −3: now −x − 3.

−x÷x = −1.

−1⋅(x + 3) = −x − 3.

(−x − 3)−(−x − 3) = 0.

Quotient 2x − 1, remainder 0.

Example 4

Divide (x³−2x²−4)÷(x−3) using synthetic division, with k=3.

Coefficients: 1,−2,0,−4.

Bring down 1.

1×3=3,−2+3=1.

1×3=3,0+3=3.

3×3=9,−4+9=5.

Bottom row 1,1,3,5.

Quotient x² + x + 3, remainder 5.

Answer: x² + x + 3 + 5/(x − 3).

Example 5

Divide (6x³+12x²+2x+25)÷(x²+4x+3), where synthetic division does not apply.

6x³÷x²=6x.

6x⋅(x² + 4x + 3) = 6x³ + 24x² + 18x.

(6x³ + 12x² + 2x)−(6x³ + 24x² + 18x)=−12x²−16x.

Bring down +25: now −12x²−16x+25.

−12x²÷x²=−12.

−12⋅(x² + 4x + 3)=−12x²−48x−36.

(−12x²−16x+25)−(−12x²−48x−36)=32x+61.

Quotient 6x−12, remainder 32x + 61.

Answer: 6x−12 + (32x + 61)/(x² + 4x + 3).

Example 6

Divide (x³−8)÷(x−2) using synthetic division, with k=2.

Coefficients: 1,0,0,−8.

Bring down 1.

1×2=2,0+2=2.

2×2=4,0+4=4.

4×2=8,−8+8=0.

Bottom row 1,2,4,0.

Quotient x² + 2x + 4, remainder 0. The zero remainder confirms (x−2) is a factor of x³−8.

Why Dividing Polynomials Matters

Division is how a complicated polynomial gets taken apart. Every higher-degree equation that gets solved by hand leans on it at some point.

Key Takeaways