Polynomial Functions
BasisPrerequisites
The simplest non-constant functions you can write down using real numbers are polynomials. They require nothing beyond repeated addition and multiplication — no division, no square roots, no infinite processes. This economy of means is deceptive: polynomial arithmetic underpins a large part of analysis, and mastering it carefully gives you both a warm-up in rigorous definitions and a toolkit you will reach for throughout mathematics.
Definition and terminology
Definition. A polynomial over of degree is a function of the form
p(x) \;\coloneqq\; a_n x^n + a_{n-1}x^{n-1} + \cdots + a_1 x + a_0, \tag{1}
where , each , and . The coefficient is the leading coefficient, is the constant term, and the individual summands are the terms.
Polynomials of small degree have traditional names:
| Degree | Name | Example |
|---|---|---|
| constant | ||
| linear | ||
| quadratic | ||
| cubic |
The zero polynomial (all coefficients zero) is assigned no degree — or degree in treatments where that convention keeps the product formula clean.
Intuitively, the degree captures the dominant behavior far from the origin: for large , the function grows roughly like , and its graph can cross or touch the -axis at most times.
Arithmetic on polynomials
Addition and scalar multiplication
Given polynomials and , their sum is the polynomial with coefficients (padding the shorter polynomial with zeros). When , the degree of the sum is ; when they are equal, leading terms may cancel, so .
Multiplying every coefficient of by a constant gives the scalar multiple , which has the same degree as whenever .
Multiplication
Distributing every term of across every term of gives the product:
The highest-degree term is . Since and , this term is nonzero, so
The ring
The collection of all polynomials over , equipped with the addition and multiplication above, is denoted and forms a commutative ring with unity: addition and multiplication are associative and commutative, multiplication distributes over addition, the zero polynomial is the additive identity, and the constant polynomial is the multiplicative identity. The analogy with the integers runs deep — just as in , you can divide with remainder, and not every element has a multiplicative inverse inside the ring.
Polynomial division
The division algorithm
Just as any integer can be written as with , every pair of polynomials admits a unique division with remainder.
Theorem (Polynomial Division Algorithm). For any with , there exist unique polynomials (the quotient) and (the remainder) satisfying
p(x) = d(x)\,q(x) + r(x), \qquad \deg r < \deg d. \tag{2}
When we say divides , written .
The proof is constructive: at each step, cancel the leading term of the current dividend using a suitable multiple of , then repeat on the residual. The degree of the residual strictly decreases at every step, so the process terminates.
As a quick example, divide by :
- . Subtract , leaving .
- . Subtract , leaving .
- . Subtract , leaving .
Therefore , confirming .
Remainder and factor theorems
These two results connect the arithmetic of division to the evaluation of a polynomial at a point.
Remainder theorem
Theorem. For any and any , the remainder when is divided by is the constant .
Proof. Apply the division algorithm with divisor (degree ). Since the remainder must have degree less than , it is some constant . Writing and substituting gives .
The remainder theorem turns remainder-finding into function evaluation — no long division needed. For instance, the remainder when is divided by is .
Factor theorem
Theorem. if and only if .
Proof. By the remainder theorem, divides exactly when the remainder equals zero.
A value satisfying is a root (or zero) of . The factor theorem makes root-finding and factoring two sides of the same coin: finding a root immediately yields a factor .
Roots and multiplicity
Once you know is a root, you can ask how strongly divides .
Definition. A root of has multiplicity if
A root of multiplicity is a simple root; of multiplicity , a double root; and so on. Multiplicity governs the local shape of the graph at :
- Odd multiplicity: the graph crosses the -axis at (transversally for , with an inflection shape for ).
- Even multiplicity: the graph touches the -axis at without crossing (bounces back).
For example, has as a triple root and as a simple root. The graph crosses at and has an inflection touch at .
Fundamental theorem of algebra
The theorems above characterize individual known roots. The following tells you the total count.
Theorem (Fundamental Theorem of Algebra). Every non-constant polynomial with real (or complex) coefficients has at least one root in .
This is stated here without proof; establishing it requires either complex analysis or topology, both beyond the current scope. Its power comes from iterating: given of degree , the theorem yields a root . The factor theorem gives with . Applying the theorem to , and so on, you exhaust all factors. Therefore:
A degree- polynomial () has exactly roots in , counted with multiplicity.
Factorization over
Over you cannot always find real roots — for example, has none. However, complex roots of real polynomials always come in conjugate pairs: if (with ) is a root of , then so is . To see why, conjugate the equation ; since all coefficients are real, conjugation commutes with , giving .
Multiplying the two linear factors for a conjugate pair:
This is a real quadratic with discriminant , so it has no real roots and is irreducible over .
Theorem (Real Factorization). Every of degree factors uniquely as
where each is a real root of multiplicity , each is an irreducible real quadratic (with ) arising from a conjugate complex pair, and .
This factorization is the key ingredient in partial fraction decomposition, which you will encounter when integrating rational functions.
Beyond polynomials
Polynomials are closed under addition, subtraction, and multiplication, but not division: is not a polynomial. The natural extension is the class of rational functions (with ), which you can analyze with polynomial long division and the real factorization above. Beyond rational functions, you need genuinely new constructions — the exponential and logarithmic functions — that cannot be built from finitely many arithmetic operations; see Exponential Functions.
Summary
- A polynomial of degree over is with ; named cases: degree (constant), (linear), (quadratic), (cubic).
- The collection forms a commutative ring: sums have degree ; products satisfy .
- Division algorithm: for any nonzero , there exist unique and with and .
- Remainder theorem: dividing by leaves remainder .
- Factor theorem: if and only if .
- A root has multiplicity if but ; the parity of determines whether the graph crosses or bounces at .
- Fundamental Theorem of Algebra: every non-constant polynomial has at least one complex root; a degree- polynomial has exactly roots in counted with multiplicity.
- Over , every polynomial factors into linear factors for real roots and irreducible quadratic factors (with ) for conjugate complex pairs.