In short
A polynomial in x is a sum of terms of the form a_k x^k, where each exponent k is a non-negative integer and each coefficient a_k is a real number. The degree is the highest exponent that appears with a nonzero coefficient; the leading coefficient is the coefficient of that highest-degree term; the constant term is the term with no x at all. Polynomials are classified by the number of terms — monomial (one), binomial (two), trinomial (three) — and by degree. Every polynomial can be evaluated at any real number by substituting for x, and the values of x where the polynomial equals zero are called its zeros or roots — the points where the curve crosses the horizontal axis.
Take the expression 2x^3 - 5x^2 + 3x - 7. It has four terms, and each term is built the same way: a number (the coefficient) multiplied by x raised to a whole-number power. The powers decrease from left to right — 3, 2, 1, 0 — and the coefficients are 2, -5, 3, -7. That is a polynomial. It is one of the most fundamental objects in all of algebra, and almost every equation-solving technique you will learn in the next several chapters is, at bottom, a technique for understanding polynomials.
Why do polynomials matter? Because they are the simplest expressions that can model curves. A constant like 7 gives you a flat horizontal line. A linear expression like 3x - 1 gives you a straight line with a slope. A quadratic like x^2 - 4x + 3 gives you a parabola. A cubic like x^3 - 6x^2 + 11x - 6 gives you an S-shaped curve with bumps. Each step up in degree adds one more possible bend in the curve, and by choosing the right coefficients, you can make a polynomial curve pass through any finite set of points you want. That flexibility is what makes polynomials the workhorse of applied mathematics — from interpolation in numerical methods to orbital mechanics in the ISRO mission-planning software.
This article introduces the vocabulary — the names for the parts, the names for the types, and the key concept of a zero — so that when the next chapters start adding, subtracting, multiplying, and factoring polynomials, you have the language to follow.
Definition and terminology
Polynomial in one variable
A polynomial in x is an expression of the form
where n is a non-negative integer, the coefficients a_0, a_1, \dots, a_n are real numbers, and a_n \neq 0 (unless the polynomial is the zero polynomial, p(x) = 0). Each summand a_k x^k is called a term of the polynomial.
The key restriction: every exponent of x must be a non-negative integer — that is, 0, 1, 2, 3, \dots. This is what separates polynomials from other algebraic expressions. The expression x^2 + 3x + 1 is a polynomial; the expression x^2 + 3x^{-1} + 1 is not (because x^{-1} = 1/x has a negative exponent); the expression x^2 + \sqrt{x} + 1 is not (because \sqrt{x} = x^{1/2} has a fractional exponent). Polynomials live in the world of whole-number powers.
The vocabulary:
- Coefficient: the numerical factor of a term. In -5x^2, the coefficient is -5. In x^3, the coefficient is 1 (unwritten but present).
- Degree of a term: the exponent of x in that term. The term -5x^2 has degree 2; the term 3x has degree 1; the constant term -7 has degree 0 (because -7 = -7x^0).
- Degree of the polynomial: the highest degree among all its terms. For 2x^3 - 5x^2 + 3x - 7, the degree is 3.
- Leading coefficient: the coefficient of the highest-degree term. For 2x^3 - 5x^2 + 3x - 7, the leading coefficient is 2.
- Leading term: the entire highest-degree term, coefficient included. Here it is 2x^3.
- Constant term: the term with no x (degree 0). Here it is -7.
Degree, leading coefficient, and constant term — why they matter
The degree of a polynomial tells you the shape of its graph. Degree 1 is a straight line. Degree 2 is a parabola. Degree 3 is a curve that can bend once (one "turn"). Degree 4 can bend twice. In general, a polynomial of degree n can have at most n - 1 turning points.
The leading coefficient tells you the end behaviour — what happens to p(x) when x gets very large (positive or negative). For 2x^3 - 5x^2 + 3x - 7, the leading term 2x^3 dominates when x is large, because x^3 grows faster than x^2 or x. Since 2 > 0 and the power is odd, the polynomial rises to +\infty as x \to +\infty and falls to -\infty as x \to -\infty.
The constant term tells you the value at zero: p(0) = a_0. For 2x^3 - 5x^2 + 3x - 7, p(0) = -7. This is the y-intercept of the graph — the point where the curve crosses the vertical axis.
These three pieces of information — degree, leading coefficient, constant term — are the quickest summary of a polynomial's character, and they are the first things you check when you meet one for the first time.
Types of polynomials
Polynomials are classified in two independent ways: by degree and by number of terms.
By degree
| Degree | Name | Example | Shape of graph |
|---|---|---|---|
| 0 | Constant | 5 | Horizontal line |
| 1 | Linear | 3x - 2 | Straight line |
| 2 | Quadratic | x^2 - 4x + 3 | Parabola |
| 3 | Cubic | x^3 - 6x^2 + 11x - 6 | S-curve |
| 4 | Quartic | x^4 - 5x^2 + 4 | W-shape (or M-shape) |
Beyond degree 4, the names become less standard — "quintic" for degree 5 is used, but higher degrees are usually just called "degree-n polynomial."
By number of terms
| Terms | Name | Example |
|---|---|---|
| 1 | Monomial | 7x^4 |
| 2 | Binomial | x^2 - 9 |
| 3 | Trinomial | x^2 - 5x + 6 |
Polynomials with more than three terms are just called polynomials — there is no standard name for a four-term or five-term polynomial. In practice, the mono/bi/tri classification matters most for factoring: the binomial x^2 - 9 factors as (x - 3)(x + 3) using the difference-of-squares identity, and the trinomial x^2 - 5x + 6 factors as (x - 2)(x - 3) using the split-the-middle-term method. Both of these are explored in Polynomial Factorization and Algebraic Identities.
Evaluating polynomials
Evaluating a polynomial at a value x = c means substituting c for x and computing the result. The notation p(c) means "the value of the polynomial p at x = c."
Take p(x) = 2x^3 - 5x^2 + 3x - 7. To evaluate at x = 2:
So p(2) = -5. The point (2, -5) lies on the graph of p.
To evaluate at x = -1:
So p(-1) = -17, and the point (-1, -17) lies on the graph.
There is a more efficient method for evaluation called Horner's method (or synthetic substitution). Instead of computing each power of c separately, you rewrite the polynomial in a nested form:
Now evaluate from the inside out at x = 2:
- Start with the leading coefficient: 2
- Multiply by x = 2 and add the next coefficient: 2 \times 2 + (-5) = -1
- Multiply by x = 2 and add the next coefficient: (-1) \times 2 + 3 = 1
- Multiply by x = 2 and add the next coefficient: 1 \times 2 + (-7) = -5
The answer is -5, matching the direct computation. Horner's method uses only n multiplications and n additions for a degree-n polynomial, instead of the n(n+1)/2 multiplications that the direct method needs. For large-degree polynomials, this matters.
Zeros of a polynomial
A zero of a polynomial p(x) (also called a root) is a value x = c such that p(c) = 0. Geometrically, the zeros are the x-coordinates where the graph of p crosses or touches the horizontal axis.
Take p(x) = x^2 - 5x + 6. Setting p(x) = 0:
So x = 2 or x = 3. The polynomial has two zeros, and the graph — a parabola opening upward — crosses the x-axis at these two points.
The number of zeros a polynomial can have is governed by its degree. A polynomial of degree n has at most n real zeros. A linear polynomial (n = 1) has exactly one. A quadratic (n = 2) can have 0, 1, or 2 real zeros, depending on whether the parabola misses, touches, or crosses the axis. A cubic (n = 3) can have 1, 2, or 3 real zeros. The precise count depends on the coefficients, and the tools for finding zeros — factoring, the quadratic formula, synthetic division — fill the next several chapters.
There is one important connection between zeros and factors: if c is a zero of p(x), then (x - c) is a factor of p(x). This is the Factor Theorem, which is a direct consequence of polynomial division. For the example above, the zeros are 2 and 3, and indeed p(x) = (x - 2)(x - 3). The zeros tell you the factors, and the factors tell you the zeros. This connection is the backbone of polynomial algebra.
Two worked examples
Example 1: Identify all parts and evaluate $p(x) = -3x^4 + x^3 - 2x + 8$ at $x = -1$
This is a "terminology and evaluation" problem — name the parts, then compute a specific value.
Step 1. Identify the degree.
The highest power of x is x^4, so the degree is 4. This is a quartic polynomial.
Why: the degree is determined by the highest exponent that appears with a nonzero coefficient. The x^4 term has coefficient -3 \neq 0, so degree 4 it is.
Step 2. Identify the leading coefficient and constant term.
The leading coefficient is -3 (the coefficient of x^4). The constant term is 8 (the term with no x).
Step 3. Count and classify.
The polynomial has 4 terms: -3x^4, x^3, -2x, and 8. (Notice that the x^2 term is missing — its coefficient is 0.) Four terms means this is just called a "polynomial" — no special mono/bi/tri name.
Step 4. Evaluate at x = -1.
Why: (-1)^4 = 1 because the exponent is even, and (-1)^3 = -1 because the exponent is odd. These sign rules are the main thing that requires care when substituting negative values.
Result. p(x) = -3x^4 + x^3 - 2x + 8 is a quartic polynomial with leading coefficient -3, constant term 8, and p(-1) = 6.
The result p(-1) = 6 means the point (-1, 6) is on the graph of this polynomial. Since p(-1) > 0, the curve is above the x-axis at x = -1.
Example 2: Find the zeros of $p(x) = x^3 - 4x^2 + x + 6$
This is a "find the roots" problem. The polynomial is cubic (degree 3), so it can have up to three real zeros.
Step 1. Try small integer values — x = 1, -1, 2, -2, 3, -3, 6, -6 — as candidates.
p(1) = 1 - 4 + 1 + 6 = 4 \neq 0.
p(-1) = -1 - 4 - 1 + 6 = 0. A zero is found: x = -1.
Why: the Rational Root Theorem says that any rational zero of a polynomial with integer coefficients and leading coefficient 1 must be a divisor of the constant term. The constant term here is 6, so the candidates are \pm 1, \pm 2, \pm 3, \pm 6. Testing them in order is the fastest route.
Step 2. Factor out (x + 1).
Since p(-1) = 0, the Factor Theorem guarantees that (x - (-1)) = (x + 1) is a factor. Dividing:
To verify: (x + 1)(x^2 - 5x + 6) = x^3 - 5x^2 + 6x + x^2 - 5x + 6 = x^3 - 4x^2 + x + 6. Correct.
Why: once you know one zero, polynomial long division (or synthetic division) extracts the remaining quadratic factor. The factoring reduces the problem from a cubic to a quadratic.
Step 3. Factor the quadratic.
Two numbers that multiply to 6 and add to -5: that is -2 and -3.
Step 4. Write the full factorisation and read off the zeros.
The zeros are x = -1, x = 2, and x = 3.
Result. The zeros of p(x) = x^3 - 4x^2 + x + 6 are x = -1, 2, 3.
The factored form (x + 1)(x - 2)(x - 3) tells you everything about the graph's crossings: the curve passes through the x-axis at -1, 2, and 3, and the sign of the polynomial alternates between consecutive zeros.
Common confusions
-
"The degree of 5x^3 + 0x^4 - 2x is 4." No — the degree is determined by the highest power with a nonzero coefficient. Since the x^4 coefficient is 0, that term does not exist, and the degree is 3.
-
"x^2 + \sqrt{x} + 1 is a polynomial." No — \sqrt{x} = x^{1/2} has a fractional exponent. Polynomials require all exponents to be non-negative integers. Expressions with fractional or negative exponents are valid algebraic expressions but not polynomials.
-
"The constant term of x^3 - 5x is 0." This one is correct, and it trips people up because there is no visible constant. The missing constant means a_0 = 0, which in turn means p(0) = 0, so x = 0 is a zero of the polynomial. A "missing" term always has coefficient 0.
-
"A polynomial of degree 3 always has exactly 3 zeros." Not necessarily — it has at most 3 real zeros, and at least 1 (because every odd-degree polynomial crosses the x-axis at least once). But it could have exactly 1 real zero if the other two are complex. For example, x^3 + 1 = 0 has the real zero x = -1 and two complex zeros.
-
"The leading coefficient of -x^5 + 3x^2 is 1." No — the leading coefficient is the coefficient of the highest-degree term, which is -x^5. That coefficient is -1, not 1. The negative sign is part of the coefficient, and it affects the end behaviour: this polynomial falls to -\infty as x \to +\infty, the opposite of what x^5 does.
-
"Evaluating a polynomial at x = a and factoring out (x - a) are unrelated operations." They are deeply related. The Remainder Theorem says p(a) is the remainder when p(x) is divided by (x - a). If p(a) = 0, the remainder is 0, meaning (x - a) divides evenly — which is the Factor Theorem. Evaluation and factoring are two sides of the same coin.
Going deeper
If you came here for the vocabulary and how to evaluate and find zeros of simple polynomials, you have what you need. The rest of this section is for readers who want to see the bigger picture — what polynomials are as a class, and why the degree bounds zeros.
The Fundamental Theorem of Algebra (preview)
Every polynomial of degree n \geq 1 with real (or complex) coefficients has exactly n zeros in the complex numbers, counted with multiplicity. This is the Fundamental Theorem of Algebra, and it is one of the deepest results in all of mathematics. The theorem says that the polynomial x^2 + 1, which has no real zeros (no real number squares to -1), still has exactly two zeros: x = i and x = -i, where i = \sqrt{-1} is the imaginary unit.
For a course on real-number algebra, the practical takeaway is: a degree-n polynomial has at most n real zeros. If you find fewer than n, the "missing" ones are complex. Complex numbers are a topic for a later chapter, but the Fundamental Theorem is worth knowing about now because it explains why there is a maximum — the degree is not just a label; it is a hard cap on the number of times the graph can cross the axis.
Polynomials as approximations
One of the most powerful uses of polynomials is as approximations to other functions. Madhava of Sangamagrama, a mathematician from Kerala in the fourteenth century, discovered that the sine function can be written as an infinite polynomial:
Each additional term improves the approximation. If you stop at the x^3 term, you get \sin x \approx x - x^3/6, a cubic polynomial that is remarkably accurate for small x. This idea — approximating complicated functions by polynomials — was later developed into the theory of Taylor series (also discovered independently in Europe by Brook Taylor in the eighteenth century), and it underlies everything from calculator algorithms to physics simulations. The reason polynomials are the tool of choice for approximation is that they are easy to evaluate (just multiplication and addition), easy to differentiate and integrate, and flexible enough (by increasing the degree) to match any smooth function to any desired precision.
Why the degree controls the shape
A polynomial of degree n can have at most n - 1 turning points (local maxima and minima). This is because the turning points are where the derivative equals zero, and the derivative of a degree-n polynomial is a degree-(n-1) polynomial, which has at most n - 1 zeros. So a line (n = 1) has no turns; a parabola (n = 2) has one turn (its vertex); a cubic (n = 3) has at most two turns; and so on. The degree is not just an algebraic label — it dictates the geometry of the curve.
Where this leads next
Polynomials are the gateway to the rest of algebra. Every chapter from here forward uses them.
- Polynomial Operations — the next chapter, where you learn to add, subtract, and multiply polynomials, and the degree rules that govern each operation.
- Polynomial Factorization — the chapter on breaking polynomials into products of simpler ones, the reverse of multiplication.
- Algebraic Identities — the standard identities (difference of squares, perfect-square trinomials, sum/difference of cubes) that make factoring faster.
- Quadratic Equations — where degree-2 polynomials are set to zero and the quadratic formula emerges.
- Algebraic Expressions — the broader category that polynomials belong to, reviewed for context.