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

p(x) = a_n x^n + a_{n-1} x^{n-1} + \dots + a_1 x + a_0

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:

Anatomy of a polynomial showing its parts labelledThe polynomial two x cubed minus five x squared plus three x minus seven is written horizontally. Arrows point from labels to each part: the leading coefficient two, the degree three, the second-term coefficient negative five, and the constant term negative seven. A bracket under the entire expression is labelled degree three polynomial.2x³ − 5x² + 3x − 7leadingcoefficient: 2degree: 3constantterm: −7degree-3 polynomial (cubic), 4 terms
The anatomy of the polynomial $2x^3 - 5x^2 + 3x - 7$. The degree is $3$ (the highest power of $x$ that appears), the leading coefficient is $2$ (the coefficient of that highest-power term), and the constant term is $-7$ (the term with no $x$). These three numbers — degree, leading coefficient, constant term — tell you the most about the polynomial's behaviour.

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.

Examples of monomial, binomial, and trinomialThree boxes side by side. The first box is labelled Monomial and contains the example seven x to the fourth, described as one term. The second box is labelled Binomial and contains x squared minus nine, described as two terms. The third box is labelled Trinomial and contains x squared minus five x plus six, described as three terms.Monomial7x⁴1 termdegree 4Binomialx² − 92 termsdegree 2Trinomialx² − 5x + 63 termsdegree 2
The three named types by term count. A monomial has one term, a binomial two, a trinomial three. The degree is independent of the number of terms: $7x^4$ is a degree-$4$ monomial, while both $x^2 - 9$ and $x^2 - 5x + 6$ are degree-$2$ but one is a binomial and the other a trinomial.

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:

p(2) = 2(2)^3 - 5(2)^2 + 3(2) - 7 = 2(8) - 5(4) + 6 - 7 = 16 - 20 + 6 - 7 = -5

So p(2) = -5. The point (2, -5) lies on the graph of p.

To evaluate at x = -1:

p(-1) = 2(-1)^3 - 5(-1)^2 + 3(-1) - 7 = 2(-1) - 5(1) - 3 - 7 = -2 - 5 - 3 - 7 = -17

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:

2x^3 - 5x^2 + 3x - 7 = ((2x - 5)x + 3)x - 7

Now evaluate from the inside out at x = 2:

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:

x^2 - 5x + 6 = 0
(x - 2)(x - 3) = 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.

Interactive plot of the polynomial x squared minus five x plus six showing its two zerosA coordinate plane with horizontal axis from negative one to six and vertical axis from negative two to eight. The parabola y equals x squared minus five x plus six opens upward, crossing the x-axis at x equals two and x equals three. The vertex is at x equals two point five, y equals negative zero point two five. A draggable red point on the curve lets you read off the value of the polynomial at any x.xp(x)012345601246zero: x = 2zero: x = 3↔ drag the red point
The parabola $p(x) = x^2 - 5x + 6$ crosses the $x$-axis at $x = 2$ and $x = 3$ — these are the zeros of the polynomial, the values that make $p(x) = 0$. Drag the red point along the curve: between the zeros the polynomial is negative (the curve dips below the axis), and outside the zeros it is positive. The vertex sits at $x = 2.5$, $p(2.5) = -0.25$ — just barely below the axis.

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.

p(-1) = -3(-1)^4 + (-1)^3 - 2(-1) + 8
= -3(1) + (-1) + 2 + 8
= -3 - 1 + 2 + 8 = 6

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.

Evaluation of the polynomial at x equals negative one shown step by stepFour rows showing the substitution. The first row shows the original polynomial with x replaced by negative one. The second row shows each power of negative one computed. The third row shows the arithmetic. The fourth row shows the final answer six.p(−1) = −3(−1)⁴ + (−1)³ − 2(−1) + 8compute powers= −3(1) + (−1) − 2(−1) + 8multiply= −3 − 1 + 2 + 8addp(−1) = 6
Evaluating a polynomial at a negative input requires careful sign tracking. Even powers of $-1$ give $+1$; odd powers give $-1$. After computing each power, the rest is ordinary arithmetic: $-3 - 1 + 2 + 8 = 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:

x^3 - 4x^2 + x + 6 = (x + 1)(x^2 - 5x + 6)

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.

x^2 - 5x + 6 = (x - 2)(x - 3)

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.

p(x) = (x + 1)(x - 2)(x - 3)

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.

Graph of the cubic polynomial x cubed minus four x squared plus x plus six showing its three zerosA coordinate plane with horizontal axis from negative two to five and vertical axis from negative four to ten. The cubic curve starts from the bottom-left, rises through the point negative one comma zero, then curves upward to a local maximum near x equals zero point one, dips to a local minimum near x equals two point five, and rises again through x equals two and x equals three on the axis and continues upward to the right. The three x-intercepts at negative one, two, and three are marked with red dots.xp(x)−112342468−2x = −1x = 2x = 3p(x) = x³ − 4x² + x + 6
The cubic $p(x) = (x + 1)(x - 2)(x - 3)$ crosses the $x$-axis at all three zeros: $x = -1$, $x = 2$, and $x = 3$. Between the zeros the polynomial changes sign — negative between $-1$ and $2$, positive between $2$ and $3$ — and the S-shaped cubic curve has one local maximum and one local minimum, as expected for a degree-$3$ polynomial.

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

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:

\sin x = x - \frac{x^3}{3!} + \frac{x^5}{5!} - \frac{x^7}{7!} + \dots

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.