Linear, Quadratic, and Cubic Polynomials

#Algebra
TL;DR
Linear, quadratic, and cubic polynomials are the first three families in the degree ladder: degree 1 ($ax+b$), degree 2 ($ax^2+bx+c$), and degree 3 ($ax^3+bx^2+cx+d$). This article covers how to classify by degree, each general form, the graph each produces, and the mistakes that trip students up.
BT
Bhanzu TeamLast updated on July 19, 20268 min read

A linear, quadratic, or cubic polynomial is a polynomial classified by its degree, the highest power of the variable. A linear polynomial has degree 1, a quadratic has degree 2, and a cubic has degree 3. That single number, the degree, decides the family, the general form, and the shape of the graph.

What Are Linear, Quadratic, and Cubic Polynomials?

A polynomial is an expression built from variables and constants using addition, subtraction, and whole-number powers, for example $3x^2 + 2x - 5$. The degree is the largest exponent on the variable, and the degree of a polynomial is what sorts these three families apart.

Here are the three families as a quick list before we take each in turn:

  • Linear, degree 1, general form $ax + b$, with $a \neq 0$.

  • Quadratic, degree 2, general form $ax^2 + bx + c$, with $a \neq 0$.

  • Cubic, degree 3, general form $ax^3 + bx^2 + cx + d$, with $a \neq 0$.

In every form, $a, b, c, d$ are constants called coefficients (the numbers multiplying the powers of the variable), and the leading coefficient $a$ can never be zero. If it were, the highest power would vanish and the degree would drop.

How do you know if a polynomial is linear?

Look at the highest power. If the biggest exponent on the variable is 1, it is linear, whatever else is written. So $7x$ is linear, and so is $1 + x$.

Linear Polynomials

A linear polynomial has degree 1. Its general form is: $$ax + b, \quad a \neq 0$$

Its graph is always a straight line, which is exactly where the name comes from. A linear polynomial has at most one zero (one value of $x$ that makes it equal 0).

Quadratic Polynomials

A quadratic polynomial has degree 2. Its general form is: $$ax^2 + bx + c, \quad a \neq 0$$

Its graph is a parabola, a U-shaped curve. A quadratic can have at most two zeros, which are the points where the parabola crosses the horizontal axis.

Cubic Polynomials

A cubic polynomial has degree 3. Its general form is: $$ax^3 + bx^2 + cx + d, \quad a \neq 0$$

Its graph is a smooth S-shaped curve with up to two turning points. A cubic can have at most three zeros. For more on this family, see cubic polynomials.

How do you classify a polynomial?

Find the highest power of the variable, then read off the family: power 1 is linear, power 2 is quadratic, power 3 is cubic. The number of terms does not matter, only the highest power.

Classification by Degree

The three families line up cleanly once the degree is fixed. Read this table across to see how the degree drives the general form, the graph, and how many zeros the polynomial can have.

Family

Degree

General form

Graph shape

Maximum zeros (roots)

Linear

1

$ax + b$

Straight line

1

Quadratic

2

$ax^2 + bx + c$

Parabola (U-shaped)

2

Cubic

3

$ax^3 + bx^2 + cx + d$

S-shaped curve

3

The pattern is exact: the degree equals the maximum number of zeros, and it equals the number of times the graph is allowed to change direction plus one.

The Variable Key

The same letters appear in every general form. Here is what each one stands for.

Symbol

Meaning

$x$

the variable (the unknown)

$a$

the leading coefficient, the number on the highest power, and it must satisfy $a \neq 0$

$b, c, d$

the remaining constant coefficients, which may be zero

The one rule that ties the key together is $a \neq 0$. If the leading coefficient were zero, the highest power would disappear and the polynomial would drop to a lower family.

Examples of Linear, Quadratic, and Cubic Polynomials

Work these in order, they move from bare classification to expressions that need tidying before the degree is visible.

Example 1

Classify $5x + 3$.

Highest power of $x$ is 1.

Degree 1.

Final answer: linear.

Example 2

A student is asked to classify $x - x^3$ and answers "linear, because it starts with $x$."

The tempting move is to read the first term and stop.

First term is $x$, power 1, so it looks linear.

But the classification uses the highest power anywhere in the expression, not the first term written.

Scan the whole expression: the term $-x^3$ has power 3.

The highest power is 3.

Final answer: cubic. Reading left to right instead of hunting for the highest power is exactly what produces the wrong label.

Example 3

Classify $y^2 + y + 4$.

Highest power of $y$ is 2.

Degree 2.

Final answer: quadratic.

Example 4

Classify $r^2$.

Only one term, highest power 2.

Degree 2.

Final answer: quadratic (a quadratic does not need all three terms).

Example 5

Classify $2x^3 + 4x^2 - x + 9$.

Highest power of $x$ is 3.

Degree 3.

Final answer: cubic.

Example 6

Simplify then classify $2x^2 + 5x - (2x^2 - 1)$.

Remove the brackets: $$2x^2 + 5x - 2x^2 + 1$$

Combine like terms: $$5x + 1$$

The $x^2$ terms cancel, so the highest surviving power is 1.

Final answer: linear. The degree is decided after simplifying, not before.

Why the Degree Ladder Exists at All

The degree is not an arbitrary label, it counts how many times a curve is allowed to bend. That single fact is why engineers and scientists reach for a specific degree.

  • Degree 1 models steady change. Constant speed, a fixed hourly rate, a straight ramp, anything with no bending uses a line.

  • Degree 2 models a single turn. A thrown ball rises, peaks once, and falls, one turning point, one parabola. Projectile motion is the classic quadratic.

  • Degree 3 models an S-bend. A cubic can rise, dip, and rise again, which is why cubics appear in curve-fitting and in the smooth road and rail transitions engineers call transition curves, where a straight track must ease into a bend without a sudden jolt.

The historical thread runs back to the search for formulas that solve these equations. Cardano published the cubic solution method in Ars Magna (1545), a landmark that also forced mathematicians to take imaginary numbers seriously for the first time. The degree ladder is where algebra started reaching past the straight line.

Tripping Points to Avoid

Three mistakes account for most wrong classifications.

Mistake 1: Counting terms instead of degree

Where it slips in: seeing three terms and assuming "cubic" because cubics feel like the three-term family.

Don't do this: label $x^2 + x + 1$ as cubic because it has three terms.

The correct way: count the highest power, not the number of terms. $x^2 + x + 1$ is quadratic, degree 2. The number of terms and the degree are unrelated, and treating them as the same is the first-instinct error most students make.

Mistake 2: Forgetting to simplify first

Where it slips in: classifying an expression that still has like terms to combine.

Don't do this: call $3x^3 - 3x^3 + 2x$ a cubic on sight.

The correct way: simplify first. The $x^3$ terms cancel, leaving $2x$, which is linear. The rusher who classifies before simplifying gets this wrong; the habit of tidying the expression first makes the true degree visible.

Mistake 3: Ignoring the "$a \neq 0$" condition

Where it slips in: writing a general form without checking the leading coefficient.

Don't do this: call $0x^2 + 3x + 1$ a quadratic.

The correct way: if the leading coefficient is 0, that power disappears. $0x^2 + 3x + 1 = 3x + 1$ is linear.

Conclusion

  • Linear, quadratic, and cubic polynomials are classified by degree: 1, 2, and 3 respectively.

  • Their general forms are $ax + b$, $ax^2 + bx + c$, and $ax^3 + bx^2 + cx + d$, always with $a \neq 0$.

  • Their graphs are a straight line, a parabola, and an S-curve, and they have at most 1, 2, and 3 zeros.

  • Always simplify before classifying, and read the highest power, not the number of terms.

To go further with a teacher, explore Bhanzu's algebra tutor, help with algebra, or online math classes.

Read More

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

✍️ 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 →