Just as integers can be divided to produce a quotient and a remainder, polynomials can be divided by other polynomials. The structure is identical: divide, multiply, subtract, and repeat until the leftover piece is too small to divide further. This section establishes the formal framework before we study the algorithms.
Quick Reference
| Term | Meaning |
|---|---|
| Dividend | The polynomial being divided |
| Divisor | The polynomial we divide by |
| Quotient | Result of the division |
| Remainder | What is left over; |
| Division algorithm | |
| Degree relationship | |
| Divisibility | is divisible by when |
The Division Algorithm
Let and be polynomials with . There exist unique polynomials (the quotient) and (the remainder) such that
where either or .
We say is divisible by if the remainder .
The condition is essential: it means the remainder cannot be divided further by the divisor without introducing fractional terms. This is the exact analogue of the fact that when dividing integers, the remainder is always smaller than the divisor.
Degree of the Quotient
If and (with ), then .
Why the degree of the quotient is
For any two nonzero polynomials and , the degree of their product is the sum of their degrees: In the division equation , the remainder has degree less than , so it cannot contribute to the leading term of . Therefore the leading term of must come entirely from : Substituting and gives .
Uniqueness of the Quotient and Remainder
For given polynomials and , the quotient and remainder satisfying the division algorithm are unique.
Proof
Suppose two pairs and both satisfy the division algorithm: Subtracting gives: Both and have degree less than , so the right side has degree less than . If , the left side would have degree at least , a contradiction. Therefore , and consequently .
How to Divide
What remains is to show how f(x) can be expressed in the form q(x)d(x) + r(x), where r(x) has a degree lower than d(x) or is equal to zero. The most common method for achieving this is called the "long division" — a process analogous to the long division of numbers — which is illustrated in the following example.