polynomial functions
Polynomial Long Division
You should know: polynomials
Overview
Polynomial long division divides one polynomial by another using the same step-by-step process as long division of numbers: divide, multiply, subtract, bring down, and repeat. It expresses any dividend f(x) as f(x) = d(x)·q(x) + r(x), where the remainder r(x) has degree strictly less than the divisor d(x) — the key tool for factoring higher-degree polynomials and finding rational roots.
Intuition
Just as 17 ÷ 5 gives quotient 3 and remainder 2 (17 = 5·3 + 2), dividing polynomials produces a quotient and a remainder, except now the 'size' being compared is degree rather than magnitude. You repeatedly cancel the highest-degree term of what's left using the highest-degree term of the divisor, until what remains has smaller degree than the divisor — at which point you can't divide any further.
Formal Definition
The Division Algorithm for polynomials: for any polynomials f(x) and d(x)≠0, there exist unique polynomials q(x) (quotient) and r(x) (remainder) such that:
Properties
Uniqueness
Remainder Theorem (linear divisor)
Exact division
Applications
Worked Examples
Divide leading terms: x³÷x=x². Multiply x²(x-3)=x³-3x², subtract from f(x).
Divide leading terms: x²÷x=x. Multiply x(x-3)=x²-3x, subtract.
Divide leading terms: -2x÷x=-2. Multiply -2(x-3)=-2x+6, subtract to get remainder 0.
Answer: Quotient: x² + x - 2, remainder 0 (so x-3 divides evenly)
Practice Problems
Divide f(x) = 2x³ + 3x² - x + 5 by d(x) = x + 2, and state the quotient and remainder.
Use the Remainder Theorem to find the remainder when f(x)=x⁴-3x+1 is divided by (x-2), without doing full long division.
Common Mistakes
Forgetting to include placeholder terms with coefficient 0 for missing degrees (e.g. dividing x³+1 without accounting for the missing x² and x terms).
Always rewrite the dividend with every degree present, using 0 as the coefficient for missing terms: x³+1 = x³+0x²+0x+1. Skipping this causes terms to align incorrectly during subtraction.
Adding instead of subtracting when eliminating the leading term at each step.
After multiplying the divisor by the current quotient term, you must SUBTRACT that product from the current remainder — sign errors here are the most common source of mistakes in polynomial long division.
Summary
- Polynomial long division follows divide–multiply–subtract–bring down, just like numeric long division.
- The Division Algorithm: f(x) = d(x)q(x) + r(x), with deg(r) < deg(d).
- The Remainder Theorem gives a shortcut: dividing by (x-c) leaves remainder f(c), no full division needed.
- Always fill in zero-coefficient placeholders for missing-degree terms before dividing.
References
- BookSullivan, M. Algebra and Trigonometry, 10th ed. Ch. 5 — Polynomial and Rational Functions.
Mathematics