The four operations on polynomials — addition, subtraction, multiplication, and division — each follow a distinct procedure and affect the degree of the result in a predictable way. The table below collects every operation with its core technique, its degree effect, and the typical pitfall to watch for.
| Operation |
Core technique |
Effect on degree |
Watch out for |
| Addition |
combine like terms |
at most max(deg P, deg Q); less if leading terms cancel |
aligning terms by matching exponent |
| Subtraction |
distribute the negative across every term, then combine |
same as addition |
negating ONLY the first term — the classic error |
| Multiplication |
every term × every term, then combine like terms (FOIL for binomial × binomial) |
exactly deg P + deg Q |
missing one of m × n products in big multiplications |
| Division |
long division (general) or synthetic division (linear divisors only) |
deg quotient = deg P − deg Q; remainder has degree < deg Q |
missing-power placeholders; remainder may be nonzero |