How a Single Equation Hides Every Crossing Point
A polynomial equation knows in advance how many times its graph can cross the x-axis. A cubic crosses at most three times, a quartic at most four — and that count is fixed before you draw anything. That count is not a coincidence or a drawing artifact; it is written into the equation's degree. Read the degree, and you already know how many answers to hunt for.
What Is a Polynomial Equation?
A polynomial equation is an equation formed by setting a polynomial equal to zero. A polynomial is a sum of terms, each a constant times a variable raised to a non-negative whole-number power — like $4x^3 - 2x + 7$. Write that polynomial equal to zero and you have a polynomial equation:
$$4x^3 - 2x + 7 = 0$$
The general form, with leading coefficient $a_n \neq 0$, is
$$a_n x^n + a_{n-1} x^{n-1} + \cdots + a_1 x + a_0 = 0$$
The degree is the highest power of the variable, $n$. The values of $x$ that satisfy the equation are its roots (also called zeros or solutions). Because the exponents must be non-negative integers, $x^2 + 3x - 1 = 0$ is a polynomial equation, but $x^{-1} + 5 = 0$ and $\sqrt{x} - 2 = 0$ are not — they break the whole-number-power rule.
What Are the Types of Polynomial Equations?
Polynomial equations are classified by degree, and the degree drives everything — how many roots, and which method solves it.
Type | Degree | Standard form |
|---|---|---|
Linear | $1$ | $ax + b = 0$ |
Quadratic | $2$ | $ax^2 + bx + c = 0$ |
Cubic | $3$ | $ax^3 + bx^2 + cx + d = 0$ |
Quartic | $4$ | $ax^4 + bx^3 + cx^2 + dx + e = 0$ |
In each case the leading coefficient must be non-zero, otherwise the degree drops. A linear equation has one root; a quadratic has two; a cubic has three; a quartic has four — counted with multiplicity, as the next section explains.
How Many Roots Does a Polynomial Equation Have?
The number of roots is fixed by the degree, and this is one of the most useful facts in algebra. The Fundamental Theorem of Algebra states that a polynomial equation of degree $n$ has exactly $n$ roots, when you count complex roots and count repeated roots as many times as they repeat.
Three things to hold onto:
Degree caps the real roots. A degree-$n$ equation has at most $n$ real roots — the rest may be complex.
Complex roots come in pairs. For an equation with real coefficients, complex roots appear in conjugate pairs, so a cubic always has at least one real root.
Multiplicity counts. $(x - 2)^2 = 0$ is degree $2$ with the single root $x = 2$ counted twice — two roots, one location.
This is why reading the degree first is worth the second it takes: it tells you when to stop looking. Once you have found $n$ roots of a degree-$n$ equation, there are no more.
How Do You Solve a Polynomial Equation?
The method depends on the degree. Lower degrees have direct formulas; higher degrees lean on factoring and theorems.
Linear. Isolate the variable: $ax + b = 0 \Rightarrow x = -\dfrac{b}{a}$.
Quadratic. Factor, complete the square, or use the quadratic formula $x = \dfrac{-b \pm \sqrt{b^2 - 4ac}}{2a}$, see roots of a quadratic equation.
Cubic and higher. Factor where possible; use the remainder theorem and factor theorem to test candidate roots, then reduce the degree.
Counting sign changes. Descartes' rule of signs bounds how many positive and negative real roots to expect before you solve.
The unifying idea behind all of these is the zero product property: once the polynomial is factored and equal to zero, each factor set to zero gives a root.
Examples of Polynomial Equations
Example 1
Solve the linear equation $5x + 2 = 4$.
Isolate $x$ one step at a time:
$$5x + 2 = 4$$ $$5x = 2$$ $$x = \frac{2}{5}$$
Final answer: $x = \dfrac{2}{5}$.
Example 2
Solve the quadratic equation $-5x^2 + 20x - 15 = 0$.
A natural first instinct is to apply the quadratic formula straight away, dragging the awkward $-5$ through every term. It works, but it invites sign errors. The cleaner route is to divide through by $-5$ first — every term shares it:
$$-5x^2 + 20x - 15 = 0$$ $$x^2 - 4x + 3 = 0$$
Now factor: two numbers multiplying to $3$ and adding to $-4$ are $-1$ and $-3$.
$$(x - 1)(x - 3) = 0$$
By the zero product property, $x - 1 = 0$ or $x - 3 = 0$.
$$x = 1 \quad \text{or} \quad x = 3$$
Skipping the divide-through step is where the sign errors creep in — pulling out the common factor first makes the rest clean.
Final answer: $x = 1$ and $x = 3$.
Example 3
Solve the quadratic $3x^2 - 5x - 2 = 0$ using the quadratic formula.
With $a = 3$, $b = -5$, $c = -2$:
$$x = \frac{-(-5) \pm \sqrt{(-5)^2 - 4(3)(-2)}}{2(3)}$$ $$x = \frac{5 \pm \sqrt{25 + 24}}{6}$$ $$x = \frac{5 \pm \sqrt{49}}{6} = \frac{5 \pm 7}{6}$$
So $x = \dfrac{12}{6} = 2$ or $x = \dfrac{-2}{6} = -\dfrac{1}{3}$.
Final answer: $x = 2$ and $x = -\dfrac{1}{3}$.
Example 4
Solve the cubic equation $x^3 - 6x^2 + 11x - 6 = 0$.
Test small whole-number candidates using the factor theorem. Try $x = 1$:
$$1 - 6 + 11 - 6 = 0$$
So $x = 1$ is a root, and $(x - 1)$ is a factor. Dividing the cubic by $(x - 1)$ leaves the quadratic $x^2 - 5x + 6$, which factors:
$$x^3 - 6x^2 + 11x - 6 = (x - 1)(x - 2)(x - 3)$$
Setting each factor to zero gives the three roots.
Final answer: $x = 1, 2, 3$.
Example 5
How many roots does $x^4 - 1 = 0$ have, and what are the real ones?
Degree $4$, so by the Fundamental Theorem there are exactly four roots (counting complex). Factor as a difference of squares, twice:
$$x^4 - 1 = (x^2 - 1)(x^2 + 1) = (x - 1)(x + 1)(x^2 + 1)$$
The real roots are $x = 1$ and $x = -1$; the factor $x^2 + 1$ contributes the two complex roots $x = i$ and $x = -i$.
Final answer: four roots total — real roots $x = 1, -1$; complex roots $x = i, -i$.
Example 6
Solve $x^2 - 4x + 4 = 0$ and state the multiplicity of the root.
This is a perfect-square trinomial:
$$x^2 - 4x + 4 = (x - 2)^2 = 0$$
The only root is $x = 2$, but it is a repeated root — degree $2$ means two roots counted with multiplicity, and here both are $x = 2$.
Final answer: $x = 2$, with multiplicity $2$.
Why Polynomial Equations Matter
Polynomial equations matter because so many real quantities are tied together by sums of powers — and setting that sum to zero asks the most useful question there is: where does it balance, break even, or vanish? The ninth-century mathematician al-Khwarizmi wrote the first systematic treatment of solving equations, and the word algebra itself comes from the title of his book.
Where polynomial equations show up:
Finding break-even and equilibrium points. A profit model that depends on output as a polynomial breaks even exactly at the equation's roots.
Engineering and physics. The natural frequencies of a vibrating structure are roots of a characteristic polynomial equation — get them wrong and a bridge or wing can resonate dangerously.
Computer graphics and curves. Where a ray meets a curved surface is solved as a polynomial equation, frame by frame.
The destination is root-finding at scale: most equations past degree two have no clean formula (a result proved in the nineteenth century), so the practical skill becomes factoring what you can and using theorems — the remainder theorem, Descartes' rule of signs — to corner the roots you cannot solve for directly.
The Errors That Cost Most Marks
Mistake 1: Forgetting to set the equation to zero first
Where it slips in: When the equation is given as two non-zero sides.
Don't do this: Trying to factor $x^2 + 5x = 6$ as it stands and reading off roots.
The correct way: Move everything to one side first: $x^2 + 5x - 6 = 0$, then factor to $(x + 6)(x - 1) = 0$. The zero product property only works when one side is genuinely zero — factoring against a non-zero side gives nonsense.
Mistake 2: Losing roots by dividing out a variable
Where it slips in: When every term shares a factor of $x$ and the student divides it away.
Don't do this: For $x^2 - 3x = 0$, dividing by $x$ to get $x - 3 = 0$ and reporting only $x = 3$.
The correct way: Factor instead of dividing: $x(x - 3) = 0$ gives $x = 0$ and $x = 3$. Dividing by $x$ silently throws away the root $x = 0$. The memorizer who learned "cancel common factors" loses a root every time here — factoring keeps both.
Mistake 3: Ignoring multiplicity and repeated roots
Where it slips in: When a factor appears more than once.
Don't do this: Reporting $(x - 2)^2 = 0$ as having "one root" without noting it is a double root.
The correct way: A degree-$n$ equation has $n$ roots counted with multiplicity. $(x-2)^2 = 0$ has the root $x = 2$ with multiplicity $2$, important when the question asks for the total root count or analyses where the graph just touches the axis rather than crossing it.
Conclusion
A polynomial equation sets a polynomial equal to zero, and its solutions are the roots that make it true.
Equations are classified by degree — linear, quadratic, cubic, quartic — and the degree fixes the method.
A degree-$n$ equation has exactly $n$ roots, counting complex and repeated roots (the Fundamental Theorem of Algebra).
Solve by isolating (linear), factoring or the formula (quadratic), and factoring down via the factor theorem (cubic and higher).
The most common mistakes are not setting the equation to zero first, losing a root by dividing out a variable, and ignoring multiplicity.
Practice These to Solidify Your Understanding
Solve these in order:
Solve the linear equation $7x - 3 = 11$.
Solve $x^2 - 7x + 10 = 0$ by factoring.
Solve $2x^2 + x = 0$, and be careful not to lose a root.
Find all roots of $x^3 - x = 0$.
If question $3$ leaves you with only one answer, revisit the "dividing out a variable" mistake above. To work through polynomial equations with a live trainer, explore Bhanzu's algebra tutor or algebra classes, or browse math tutoring options. Want a trainer to walk through more polynomial-equation problems? Book a free demo class.
Read More
Quadratic Equations — the degree-2 case in depth.
Cubic Polynomials — the degree-3 family in depth.
Factorization of Quadratic Polynomials — factoring a degree-2 polynomial to find its roots.
Rational Root Theorem — listing the candidate rational roots to test.
Types of Polynomials — classifying polynomials by degree and terms.
Was this article helpful?
Your feedback helps us write better content