Zeros of a Polynomial — Definition & Examples

#Algebra
TL;DR
The zeros of a polynomial are the values of $x$ that make the polynomial equal to zero — the solutions of $p(x) = 0$, also called its roots. This article defines them, shows how to find them, works six examples, and draws the sharp line between zeros of a polynomial and the zero polynomial.
BT
Bhanzu TeamLast updated on July 20, 20268 min read

The Numbers That Make a Polynomial Vanish

Every polynomial hides a small set of special inputs where its value collapses to exactly zero — and those inputs decide where its graph crosses the x-axis. Finding them is one of the oldest problems in algebra, tackled by al-Khwarizmi more than a thousand years ago.

The zeros of a polynomial $p(x)$ are the values of $x$ for which $p(x) = 0$. If $p(a) = 0$, then $a$ is a zero of the polynomial. These are exactly the same as the roots of the equation $p(x) = 0$, and geometrically they are the x-intercepts — the points where the graph meets the x-axis.

A polynomial is an expression like $p(x) = x^2 - 5x + 6$, built from a variable raised to whole-number powers with constant coefficients. Its zeros are the specific numbers you can substitute for $x$ to make the whole expression evaluate to $0$.

Zeros of a Polynomial Versus the Zero Polynomial

These two phrases sound almost identical and mean completely different things. Getting them mixed up is the single most common confusion on this topic, so pin the difference down first.

Zeros of a polynomial

Zero polynomial

What it is

The input values that make $p(x) = 0$

The polynomial that is $0$ everywhere

Example

For $p(x) = x^2 - 4$, the zeros are $x = 2$ and $x = -2$

$p(x) = 0$ (all coefficients are $0$)

How many

Finitely many (at most the degree)

It is a single specific polynomial

Degree

Not applicable — zeros are numbers

Undefined (or taken as $-\infty$)

Plain-English

"Where does this polynomial hit zero?"

"The polynomial whose value is always zero"

The zero polynomial is the polynomial $p(x) = 0$, where every coefficient is zero, so it outputs $0$ for every input, and its degree is left undefined. By contrast, the zeros of a polynomial are the handful of $x$-values that a non-zero polynomial sends to $0$. One is a whole polynomial; the other is a set of numbers. See the zero polynomial for that object on its own.

How to Find the Zeros of a Polynomial

Finding zeros always comes down to the same idea: set $p(x) = 0$ and solve. The method depends on the degree.

  • Linear polynomial $p(x) = ax + b$: solve $ax + b = 0$ directly, giving the single zero $x = -\tfrac{b}{a}$.

  • Quadratic polynomial $p(x) = ax^2 + bx + c$: factor into two brackets and set each to zero, or use the quadratic formula $x = \dfrac{-b \pm \sqrt{b^2 - 4ac}}{2a}$ when it does not factor neatly.

  • Higher-degree polynomial: pull out any common factor first, then factor by grouping or test likely roots; each linear factor $(x - a)$ contributes one zero $x = a$.

  • Checking a candidate: substitute the value into $p(x)$. If the result is $0$, it is a zero (this is the verification used in Example 4).

Properties of the Zeros of a Polynomial

The zeros of a polynomial obey a few reliable rules that connect them to the polynomial's degree and coefficients:

  • Number of zeros is capped by the degree. A polynomial of degree $n$ has at most $n$ real zeros — a quadratic at most two, a cubic at most three.

  • Every zero corresponds to a factor. By the factor theorem, $x = a$ is a zero exactly when $(x - a)$ is a factor of $p(x)$.

  • Sum and product tie to the coefficients. For a quadratic $ax^2 + bx + c$ with zeros $\alpha$ and $\beta$:

$$\alpha + \beta = -\frac{b}{a}, \qquad \alpha\beta = \frac{c}{a}$$ For a cubic $ax^3 + bx^2 + cx + d$ with zeros $\alpha, \beta, \gamma$, the sum is $-\tfrac{b}{a}$ and the product is $-\tfrac{d}{a}$.

  • Complex zeros come in pairs. If a polynomial has real coefficients, any non-real zeros occur in conjugate pairs, so they are added or removed two at a time.

Examples of the Zeros of a Polynomial

Example 1

Find the zeros of $p(x) = x - 5$.

Set the polynomial equal to zero. $x - 5 = 0$ $x = 5$ The zero is $x = 5$.

Example 2

Find the zeros of $p(x) = x^2 - 9$.

The tempting first move is to take the square root of both sides right away and write $x = 3$, stopping there. $x^2 = 9$ $x = 3 \quad (\text{only half the answer})$ That misses the negative solution, because $(-3)^2 = 9$ too. Factoring makes both roots visible. $x^2 - 9 = (x - 3)(x + 3) = 0$ $x - 3 = 0 \ \Rightarrow\ x = 3$ $x + 3 = 0 \ \Rightarrow\ x = -3$ The zeros are $x = 3$ and $x = -3$.

Example 3

Find the zeros of $p(x) = x^2 - 5x + 6$.

Factor into two brackets whose product is $6$ and sum is $-5$. $x^2 - 5x + 6 = (x - 2)(x - 3)$ $x - 2 = 0 \ \Rightarrow\ x = 2$ $x - 3 = 0 \ \Rightarrow\ x = 3$ The zeros are $x = 2$ and $x = 3$.

Example 4

Verify that $x = 4$ is a zero of $p(x) = x^2 - 7x + 12$.

Substitute $x = 4$. $p(4) = 4^2 - 7(4) + 12$ $= 16 - 28 + 12$ $= 0$ Since $p(4) = 0$, $x = 4$ is a zero.

Example 5

Find the zeros of $p(x) = 2x^2 - 8$.

Take out the common factor first. $2x^2 - 8 = 2(x^2 - 4)$ $2(x - 2)(x + 2) = 0$ $x = 2 \ \text{or}\ x = -2$ The zeros are $x = 2$ and $x = -2$. (The factor of 2 never equals zero, so it contributes no zero.)

Example 6

A polynomial has zeros $x = 1$ and $x = -3$. Write a polynomial with these zeros.

Each zero $a$ gives a factor $(x - a)$. Zero $1$ gives $(x - 1)$. Zero $-3$ gives $(x + 3)$. Multiply. $p(x) = (x - 1)(x + 3) = x^2 + 2x - 3$ One such polynomial is $p(x) = x^2 + 2x - 3$.

Why Zeros of a Polynomial Matter

Zeros are the concept that makes a polynomial solvable rather than merely writable.

  • They locate the x-intercepts, so the graph's shape follows from them.

  • They connect to factors: by the factor theorem, $x = a$ is a zero exactly when $(x - a)$ is a factor. That is why factorization and finding zeros are two views of the same task.

  • They drive equation-solving, which is the whole point of polynomial equations across physics, engineering, and economics.

The systematic hunt for zeros began with al-Khwarizmi's ninth-century work, which gave the first general recipes for solving quadratics — the ancestor of the quadratic formula students still learn. That is the destination this concept points toward: from "find where $x - 5 = 0$" to general methods for the zeros of any polynomial, of any degree.

The Mistakes Students Make Most Often

Mistake 1: Confusing zeros of a polynomial with the zero polynomial

Where it slips in: A question asks for "the zeros of the polynomial" and the student describes the zero polynomial instead.

Don't do this: Answer "$p(x) = 0$" when asked for the zeros of $x^2 - 4$.

The correct way: Zeros are the numbers $x = 2, -2$; the zero polynomial is a different object entirely. The confusion between "zeros of a polynomial" and "the zero polynomial" is exactly where marks are lost — read whether the question wants numbers or a polynomial.

Mistake 2: Losing the negative root

Where it slips in: Solving $x^2 = k$ by taking a single square root.

Don't do this: Write $x = 3$ as the only zero of $x^2 - 9$.

The correct way: Every even-power equation can have a negative solution too. Factoring $(x-3)(x+3) = 0$ makes both signs visible; the habit that fixes this is always factoring rather than square-rooting one side.

Mistake 3: Treating a constant factor as a zero

Where it slips in: Reading $2(x-2)(x+2) = 0$ and worrying about the 2.

Don't do this: Try to solve "$2 = 0$."

The correct way: A non-zero constant factor never produces a zero; only the variable factors do. Set each $(x - a)$ to zero and ignore the constant.

Conclusion

  • The zeros of a polynomial are the $x$-values that make $p(x) = 0$, the same as its roots and its x-intercepts.

  • They are numbers; the zero polynomial is the polynomial $0$ itself, and the two must not be confused.

  • Find zeros by setting $p(x) = 0$ and factoring; each zero $a$ corresponds to a factor $(x - a)$.

  • A polynomial has at most as many zeros as its degree, and some have no real zeros at all.

To take the zeros of a polynomial further with a teacher, work with a Bhanzu algebra tutor, get help with algebra, or explore math classes online. For a live walkthrough, book a free demo class.

Read More

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What is the difference between zeros and roots of a polynomial?
None in practice — "zeros" of the polynomial $p(x)$ and "roots" of the equation $p(x) = 0$ refer to the same values. "Zeros" emphasises the polynomial; "roots" emphasises the equation.
How many zeros can a polynomial have?
At most as many as its degree. A quadratic has at most two zeros; a cubic, at most three.
Is zero always a zero of a polynomial?
No. $x = 0$ is a zero only when the constant term is $0$. For example, $p(x) = x^2 - x$ has $0$ as a zero, but $p(x) = x^2 - 4$ does not.
Can a polynomial have no real zeros?
Yes. $p(x) = x^2 + 1$ has no real zeros because $x^2 + 1$ is always positive; its zeros are complex.
How do I check whether a value is a zero?
Substitute it into $p(x)$. If the result is $0$, it is a zero — as in Example 4 above.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →