๐Ÿ“˜Intermediate Algebra

Essential Techniques in Polynomial Long Division

Study smarter with Fiveable

Get study guides, practice questions, and cheatsheets for all your subjects. Join 500,000+ students with a 96% pass rate.

Get Started

Why This Matters

Polynomial long division lets you break apart complex polynomial expressions into simpler pieces. You're building the skill to simplify rational expressions, find factors, identify roots, and understand how polynomials relate to each other. When you divide polynomials, you're asking: "How many times does this expression fit into that one, and what's left over?"

Everything here rests on the Division Algorithm for Polynomials: for any polynomial P(x)P(x) divided by D(x)D(x), there exist unique polynomials Q(x)Q(x) (quotient) and R(x)R(x) (remainder) such that:

P(x)=D(x)โ‹…Q(x)+R(x)P(x) = D(x) \cdot Q(x) + R(x)

This relationship connects division to factoring, root-finding, and simplification throughout the course.


Setting Up the Division

Getting the setup right prevents errors downstream. Most mistakes in polynomial long division actually happen before the algorithm even starts.

Identifying the Dividend and Divisor

  • The dividend is the polynomial being divided. It goes inside the division symbol (under the "house").
  • The divisor is what you're dividing by. It sits outside, and its leading term drives each step.
  • Mixing these up reverses your entire problem, so always double-check which is which.

Arranging Polynomials in Descending Order

Both the dividend and divisor must be written in standard form, meaning highest degree first. Write 3x3+2x2โˆ’x+53x^3 + 2x^2 - x + 5, never 5โˆ’x+2x2+3x35 - x + 2x^2 + 3x^3. This keeps leading terms in position so you can divide them cleanly at each step.

Handling Missing Terms

If a polynomial skips a degree, insert a placeholder term with coefficient zero. For example, to divide x3+1x^3 + 1 by x+1x + 1, rewrite the dividend as:

x3+0x2+0x+1x^3 + 0x^2 + 0x + 1

Without placeholders, you'll subtract terms of different degrees and get wrong answers. This is the single most common setup mistake.

Compare: Setting up x4โˆ’16x^4 - 16 vs. x4+2x3โˆ’16x^4 + 2x^3 - 16. The first needs three zero placeholders (0x3+0x2+0x0x^3 + 0x^2 + 0x) while the second needs only one (0x2+0x0x^2 + 0x). Whenever you see a "sparse" polynomial with gaps between terms, placeholder insertion is critical.


The Core Algorithm: Divide-Multiply-Subtract-Bring Down

This four-step cycle repeats until the remainder's degree drops below the divisor's degree.

Step 1: Divide the Leading Terms

Divide the leading term of the current dividend by the leading term of the divisor. For 6x32x\frac{6x^3}{2x}, you get 3x23x^2. Place this quotient term above the division bar, directly over the term in the dividend with the matching degree.

Remember your exponent rules here: x5รทx2=x3x^5 \div x^2 = x^{3} (subtract exponents).

Step 2: Multiply the Result by the Entire Divisor

Distribute the new quotient term across the whole divisor. If your quotient term is 3x23x^2 and the divisor is (xโˆ’2)(x - 2):

3x2(xโˆ’2)=3x3โˆ’6x23x^2(x - 2) = 3x^3 - 6x^2

Write this product below the corresponding terms in the dividend, aligned by degree. Distribution errors here will compound through every remaining step.

Step 3: Subtract from the Dividend

Subtract the entire product from the current dividend. This means changing every sign: subtracting (3x3โˆ’6x2)(3x^3 - 6x^2) is the same as adding (โˆ’3x3+6x2)(-3x^3 + 6x^2).

Sign errors in this step are the number one mistake in the whole algorithm. If your result after subtracting doesn't have a lower degree than what you started with, something went wrong.

Step 4: Bring Down the Next Term

Pull down the next unused term from the original dividend to create your new working polynomial. This new expression becomes the dividend for the next cycle.

Repeat Steps 1 through 4 until the degree of what remains is less than the degree of the divisor. That leftover is your remainder.

Compare: Dividing by a linear divisor (xโˆ’c)(x - c) vs. a quadratic divisor (x2+bx+c)(x^2 + bx + c). The cycle is identical, but with a quadratic divisor, you stop when the remainder is degree 1 or less (like 3x+23x + 2 or just a constant). With a linear divisor, the remainder is always just a constant.


Interpreting and Verifying Results

The algorithm gives you numbers, but understanding what those numbers mean is where the real algebra happens.

Interpreting the Quotient and Remainder

The quotient Q(x)Q(x) tells you how the divisor fits into the dividend. The remainder R(x)R(x) is what's left over, and it must have a degree less than the divisor. Express the complete result as:

P(x)D(x)=Q(x)+R(x)D(x)\frac{P(x)}{D(x)} = Q(x) + \frac{R(x)}{D(x)}

This form shows up constantly when you simplify rational expressions.

Checking Results Using Multiplication

To verify, compute D(x)โ‹…Q(x)+R(x)D(x) \cdot Q(x) + R(x). The result must equal your original dividend P(x)P(x). If it doesn't match, work backward to find where your arithmetic went wrong.

This check takes about 30 seconds and is worth building into your routine, especially on exams.

Compare: A remainder of 00 vs. a non-zero remainder. Zero remainder means the divisor divides evenly into the dividend (the divisor is a factor). A non-zero remainder means there's a leftover piece that can't be divided further. This distinction is the foundation for factoring applications.


Connections to Factoring and Roots

Polynomial division ties directly into factoring, the Factor Theorem, and finding zeros of polynomial functions.

Relationship to Factoring

  • If the remainder is zero, the divisor is a factor of the dividend. This is the Factor Theorem: if P(c)=0P(c) = 0, then (xโˆ’c)(x - c) is a factor of P(x)P(x).
  • Use division to "pull out" a known factor. If you know (xโˆ’3)(x - 3) is a factor, dividing by it gives you the reduced polynomial.
  • You can then continue factoring the quotient to fully factor the original polynomial.

Applications in Algebra and Beyond

  • Simplifying rational expressions: divide numerator by denominator to rewrite in mixed form.
  • Finding polynomial roots: if rr is a root, then (xโˆ’r)(x - r) is a factor, and division reveals the remaining factors you still need to find.
  • Connecting to synthetic division: long division works for any divisor, while synthetic division is a shortcut that only works for linear divisors of the form (xโˆ’c)(x - c). Know when each method applies.

Compare: Long division vs. synthetic division. Both find quotients when dividing by (xโˆ’c)(x - c), but synthetic division uses only coefficients and is faster. Long division handles any polynomial divisor, making it more versatile. Use synthetic division when you can; fall back to long division when you must.


Quick Reference Table

ConceptKey Techniques
Setup RequirementsDescending order, placeholder zeros, identify dividend/divisor
Core Algorithm StepsDivide leading terms, multiply, subtract, bring down
Stopping ConditionRemainder degree < divisor degree
Result InterpretationP(x)=D(x)โ‹…Q(x)+R(x)P(x) = D(x) \cdot Q(x) + R(x)
Verification MethodMultiply quotient by divisor, add remainder, check against dividend
Factoring ConnectionRemainder = 0 means divisor is a factor
Common ErrorsSign mistakes in subtraction, missing placeholder terms
Related MethodsSynthetic division (for linear divisors only)

Self-Check Questions

  1. When dividing x4โˆ’1x^4 - 1 by xโˆ’1x - 1, how many placeholder terms with zero coefficients do you need to insert, and why does skipping them cause problems?

  2. Compare dividing by (xโˆ’2)(x - 2) versus (x2โˆ’4)(x^2 - 4): how does the divisor's degree affect what counts as a valid remainder?

  3. If you divide P(x)P(x) by (xโˆ’5)(x - 5) and get remainder 00, what does this tell you about x=5x = 5 in relation to P(x)P(x)? What theorem supports this?

  4. You've completed a division and want to verify your answer. Write the equation you'd use to check your work, and explain what a mismatch would tell you.

  5. Given that (x+3)(x + 3) is a factor of 2x3+5x2โˆ’4xโˆ’32x^3 + 5x^2 - 4x - 3, use polynomial long division to find all remaining factors. Show your setup, including any necessary placeholders.

Essential Techniques in Polynomial Long Division to Know for Intermediate Algebra