Skip to main content

Polynomials

A polynomial is one of the most versatile objects in all of mathematics: it is built from nothing more than a variable, whole-number powers, and the ordinary operations of addition and multiplication, yet it is powerful enough to model the arc of a thrown ball, the shape of a suspension cable, the compound growth of money, and the internal machinery of nearly every calculator and computer. Learn to read, manipulate, and factor polynomials fluently and you unlock the door to calculus, to solving equations, and to the deep and dramatic story of why some equations can be solved by formula and others never can.

This page teaches you to understand polynomials, not just push their symbols around. We will build the vocabulary, master the four arithmetic operations plus two kinds of division, prove the two theorems that make factoring efficient, and finish with the astonishing 19th-century discovery that there is no quintic formula.

Learning Objectives

  • Identify terms, coefficients, degree, and leading coefficient, and write any polynomial in standard form.
  • Add, subtract, and multiply polynomials confidently, combining like terms correctly.
  • Perform polynomial long division and synthetic division, and read off quotient and remainder.
  • State and apply the Remainder Theorem and the Factor Theorem to test and find roots.
  • Predict the end behavior and possible number of roots of a polynomial from its degree and leading coefficient.
  • Explain, in plain language, why cubics and quartics have solution formulas but quintics do not.

Quick Answer

A polynomial is a sum of terms, each a real coefficient times a variable raised to a non-negative whole-number power, such as 3x42x2+7x5 3x^4 - 2x^2 + 7x - 5. The degree is the highest power present; the leading coefficient is the number in front of that highest-power term. You add and subtract by combining like terms, and multiply by distributing every term of one factor across every term of the other. To divide, use long division or, when dividing by xcx - c, the faster synthetic division. The Remainder Theorem says the remainder when you divide by xcx - c equals P(c) P(c), and the Factor Theorem says xcx - c is a factor exactly when P(c)=0 P(c) = 0. A degree-nn polynomial has at most nn real roots, and its ends rise or fall according to the sign of the leading coefficient and whether nn is even or odd.

Where It Came From

Polynomials grew out of a very practical need: solving equations. Babylonian scribes almost 4000 years ago already solved quadratic problems ("find a length and width given the area and the perimeter") using procedures equivalent to the quadratic formula, though they wrote everything in words and worked only with positive numbers. For millennia the quadratic was the frontier — Greek geometers, Indian mathematicians like Brahmagupta (who by 628 CE gave an explicit rule using negative numbers), and Islamic scholars like al-Khwarizmi (whose ~820 CE book al-jabr gave us the word "algebra") all pushed quadratics forward, but the cubic stubbornly resisted a general formula.

The breakthrough came in Renaissance Italy in a story worthy of a drama. Around 1515 Scipione del Ferro secretly solved one type of cubic and, as was the custom, kept his method hidden to win public "mathematical duels." The secret leaked to Niccolò Tartaglia, who independently rediscovered the general cubic solution and won a famous 1535 contest with it. Gerolamo Cardano coaxed the method out of Tartaglia under an oath of secrecy, then — after learning del Ferro had it first — published it in his 1545 masterpiece Ars Magna, igniting a bitter feud. In that same book Cardano's brilliant student Lodovico Ferrari unveiled a solution to the quartic (degree 4). Wrestling with cubic formulas even forced mathematicians to take square roots of negative numbers seriously, planting the seed of complex numbers.

So by 1545 humanity could solve every equation up to degree 4 by a formula in radicals. The natural next question — a formula for the quintic (degree 5) — went unanswered for nearly 300 years. In 1799–1824 the Norwegian Niels Henrik Abel proved no such general formula exists, and the young Frenchman Évariste Galois, before dying in a duel at 20, explained why, inventing group theory in the process. This is the Abel–Ruffini theorem, and it turned a search for a formula into the birth of modern abstract algebra.

Anatomy: Terms, Degree, and Standard Form

A term is a single piece: a coefficient multiplied by a variable raised to a whole-number power, like 3x4 3x^4 or 5-5 (a constant is 5x0-5x^0). A polynomial is a finite sum of terms. Crucially, the exponents must be non-negative integers — so x1x^{-1} and x=x1/2\sqrt{x} = x^{1/2} are not polynomial terms.

Key vocabulary, using P(x)=3x42x2+7x5 P(x) = 3x^4 - 2x^2 + 7x - 5:

  • Degree: the largest exponent, here 4 4.
  • Leading term / leading coefficient: the highest-degree term 3x4 3x^4, coefficient 3 3.
  • Constant term: the term with no variable, here 5-5.
  • Standard form: terms written in descending order of degree, which P(x) P(x) already is.

Polynomials are named by degree: degree 0 = constant, 1 = linear, 2 = quadratic, 3 = cubic, 4 = quartic, 5 = quintic. They are also named by term count: 1 term = monomial, 2 = binomial, 3 = trinomial.

Worked example. Put 5x8+x34x2 5x - 8 + x^3 - 4x^2 in standard form and state its degree, leading coefficient, and constant term.

Reorder by descending power: x34x2+5x8 x^3 - 4x^2 + 5x - 8 Degree 3 3 (cubic), leading coefficient 1 1, constant term 8-8.

Adding, Subtracting, and Multiplying

Like terms have identical variable parts (same variable, same exponent). You add or subtract polynomials by combining like terms; unlike terms simply travel along unchanged.

Addition example. Add (3x2+2x5) (3x^2 + 2x - 5) and (x24x+6) (x^2 - 4x + 6).

Group like terms: (3x2+x2)+(2x4x)+(5+6)=4x22x+1 (3x^2 + x^2) + (2x - 4x) + (-5 + 6) = 4x^2 - 2x + 1.

Subtraction example. Compute (4x3x+2)(2x3+3x2x+5) (4x^3 - x + 2) - (2x^3 + 3x^2 - x + 5).

The single most common error here is a sign slip, so distribute the minus sign across every term first: 4x3x+22x33x2+x5 4x^3 - x + 2 - 2x^3 - 3x^2 + x - 5 Now combine: (4x32x3)3x2+(x+x)+(25)=2x33x23 (4x^3 - 2x^3) - 3x^2 + (-x + x) + (2 - 5) = 2x^3 - 3x^2 - 3.

Multiplication uses the distributive law: multiply each term of the first factor by each term of the second, then combine like terms. When multiplying powers of the same base, add exponents (xaxb=xa+bx^a \cdot x^b = x^{a+b}).

Multiplication example. Multiply (2x+3)(x24x+5) (2x + 3)(x^2 - 4x + 5).

Distribute 2x 2x, then 3 3, across the trinomial: 2x(x24x+5)=2x38x2+10x 2x(x^2 - 4x + 5) = 2x^3 - 8x^2 + 10x 3(x24x+5)=3x212x+15 3(x^2 - 4x + 5) = 3x^2 - 12x + 15 Add the two lines, combining like terms: 2x3+(8x2+3x2)+(10x12x)+15=2x35x22x+15 2x^3 + (-8x^2 + 3x^2) + (10x - 12x) + 15 = 2x^3 - 5x^2 - 2x + 15

Notice the degrees: a degree-1 times a degree-2 gives degree 1+2=3 1 + 2 = 3. In general, the degree of a product is the sum of the degrees.

Dividing: Long Division and Synthetic Division

Just as integers can be divided with a quotient and remainder, so can polynomials. The Division Algorithm says that for any polynomials P(x) P(x) and nonzero D(x) D(x), P(x)=D(x)Q(x)+R(x) P(x) = D(x)\,Q(x) + R(x) where the remainder R(x) R(x) has degree strictly less than the divisor D(x) D(x).

Polynomial long division example. Divide 2x33x2+0x4 2x^3 - 3x^2 + 0x - 4 by x2 x - 2. (Insert the missing 0x 0x term as a placeholder.)

  1. 2x3÷x=2x2 2x^3 \div x = 2x^2. Multiply: 2x2(x2)=2x34x2 2x^2(x-2) = 2x^3 - 4x^2. Subtract: (3x2)(4x2)=x2 (-3x^2) - (-4x^2) = x^2. Bring down: x2+0x x^2 + 0x.
  2. x2÷x=x x^2 \div x = x. Multiply: x(x2)=x22x x(x-2) = x^2 - 2x. Subtract: 0x(2x)=2x 0x - (-2x) = 2x. Bring down: 2x4 2x - 4.
  3. 2x÷x=2 2x \div x = 2. Multiply: 2(x2)=2x4 2(x-2) = 2x - 4. Subtract: 4(4)=0 -4 - (-4) = 0.

So the quotient is 2x2+x+2 2x^2 + x + 2 with remainder 0 0, meaning 2x33x24=(x2)(2x2+x+2). 2x^3 - 3x^2 - 4 = (x - 2)(2x^2 + x + 2).

Synthetic division is a compact shortcut that works only when the divisor is linear of the form xc x - c. We use just the coefficients. For the same problem, c=2 c = 2 and coefficients 2,3,0,4 2, -3, 0, -4:

2 | 2 -3 0 -4
| 4 2 4
+------------------------
2 1 2 0

Bring down the 2 2; multiply by c=2c=2 to get 4 4; add to 3-3 to get 1 1; multiply by 2 2 to get 2 2; add to 0 0 to get 2 2; multiply by 2 2 to get 4 4; add to 4-4 to get 0 0. The bottom row 2,1,2 2, 1, 2 is the quotient 2x2+x+2 2x^2 + x + 2 and the final 0 0 is the remainder — exactly matching the long division, but far faster.

The Remainder and Factor Theorems

Synthetic division reveals a beautiful shortcut. The Remainder Theorem states:

When a polynomial P(x) P(x) is divided by xc x - c, the remainder equals P(c) P(c).

Why it's true: by the Division Algorithm, P(x)=(xc)Q(x)+R P(x) = (x - c)Q(x) + R, where RR is a constant (degree less than 1). Substituting x=c x = c makes the first term vanish: P(c)=0Q(c)+R=R P(c) = 0 \cdot Q(c) + R = R. Elegant and complete.

This gives a lightning-fast way to evaluate a polynomial: to find P(2) P(2) above, we already saw the remainder is 0 0, so P(2)=0 P(2) = 0 without plugging in and computing powers.

The Factor Theorem is the special case that matters most:

xc x - c is a factor of P(x) P(x) if and only if P(c)=0 P(c) = 0.

In other words, roots and linear factors are two views of the same thing. If c c is a root, you can pull out (xc) (x - c) and reduce the problem's degree.

Worked example. Show x3 x - 3 is a factor of P(x)=x34x2+x+6 P(x) = x^3 - 4x^2 + x + 6, then fully factor.

Test c=3 c = 3: P(3)=2736+3+6=0 P(3) = 27 - 36 + 3 + 6 = 0. By the Factor Theorem, x3 x - 3 is a factor. Synthetic division by 3 3 on coefficients 1,4,1,6 1, -4, 1, 6 gives quotient x2x2 x^2 - x - 2, which factors as (x2)(x+1) (x - 2)(x + 1). Therefore P(x)=(x3)(x2)(x+1), P(x) = (x - 3)(x - 2)(x + 1), with roots x=3,2,1 x = 3, 2, -1.

Roots and End Behavior

The Fundamental Theorem of Algebra guarantees that a degree-nn polynomial has exactly nn roots when counted with multiplicity and allowing complex numbers. Over the real numbers it has at most nn real roots. Each real root is where the graph crosses or touches the x x-axis.

End behavior — what the graph does as x± x \to \pm\infty — is controlled entirely by the leading term, because for huge x|x| the highest power dwarfs everything else. Two features decide it: the parity of the degree and the sign of the leading coefficient.

DegreeLeading coeff.As x x \to -\inftyAs x+ x \to +\infty
Evenpositive+ +\infty+ +\infty
Evennegative -\infty -\infty
Oddpositive -\infty+ +\infty
Oddnegative+ +\infty -\infty

Worked example. Describe the end behavior of P(x)=2x3+5x1 P(x) = -2x^3 + 5x - 1.

Odd degree (3 3) with a negative leading coefficient. So as x x \to -\infty, P(x)+ P(x) \to +\infty, and as x+ x \to +\infty, P(x) P(x) \to -\infty. The graph falls from upper left to lower right. Because the degree is odd, the graph must cross the x x-axis at least once, guaranteeing at least one real root.

Real-World Applications

  • Physics of motion: the height of a projectile is a quadratic in time, h(t)=12gt2+v0t+h0 h(t) = -\tfrac{1}{2}gt^2 + v_0 t + h_0; solving h(t)=0 h(t) = 0 tells you when it lands.
  • Engineering and design: cubic and higher polynomials (Bézier and spline curves) define the smooth shapes of car bodies, fonts, and animation paths in every graphics program.
  • Finance: the value of an investment with several cash flows is a polynomial in the growth factor, and finding the internal rate of return means finding a polynomial root.
  • Computing: processors approximate functions like sin\sin, cos\cos, and ex e^x with polynomials (Taylor and Chebyshev approximations) because they need only addition and multiplication.
  • Error correction: Reed–Solomon codes, used in QR codes, CDs, and deep-space transmission, treat data as polynomial coefficients and use the Factor Theorem to detect and repair errors.

Common Mistakes

  1. Dropping or mis-distributing the subtraction sign. Students write (4x3x+2)(2x3+3x2x+5)=4x3x+22x3+3x2x+5 (4x^3 - x + 2) - (2x^3 + 3x^2 - x + 5) = 4x^3 - x + 2 - 2x^3 + 3x^2 - x + 5. Why wrong: the minus must hit every term of the second polynomial, not just the first. Correction: rewrite as 4x3x+22x33x2+x5 4x^3 - x + 2 - 2x^3 - 3x^2 + x - 5 before combining.

  2. Multiplying exponents instead of adding when multiplying terms. Writing x2x3=x6 x^2 \cdot x^3 = x^6. Why wrong: x2x3 x^2 \cdot x^3 means (xx)(xxx)=x5 (x\cdot x)(x\cdot x\cdot x) = x^5; you add exponents when multiplying same-base powers and multiply them only when raising a power to a power. Correction: x2x3=x2+3=x5 x^2 \cdot x^3 = x^{2+3} = x^5.

  3. Forgetting placeholder zeros in division. Dividing x34 x^3 - 4 by x1 x - 1 using coefficients 1,4 1, -4 only. Why wrong: the polynomial is 1x3+0x2+0x4 1x^3 + 0x^2 + 0x - 4; skipping the missing terms shifts every column. Correction: always write coefficients for every power down to the constant, using 0 0 for absent terms.

Comparison and Connections

Polynomials sit inside a hierarchy of expressions. Recognizing what is not a polynomial sharpens understanding.

ExpressionPolynomial?Reason
3x42x+1 3x^4 - 2x + 1YesWhole-number exponents, real coefficients
5x2+x 5x^{-2} + xNoNegative exponent (this is a rational expression)
x+4 \sqrt{x} + 4NoExponent 1/2 1/2 is not a whole number
7 7YesConstant, degree 0
x2+1x3 \dfrac{x^2 + 1}{x - 3}NoA ratio of polynomials (rational function)

Two ideas students often confuse: long division vs. synthetic division. Both compute quotient and remainder, but synthetic division is a numerical shortcut restricted to linear divisors xc x - c; long division is general and handles divisors of any degree. Also distinguish a root (a value making P(x)=0 P(x)=0) from a factor (a divisor like xc x - c) — the Factor Theorem is precisely the bridge between them.

Practice Questions

Recall

State the degree, leading coefficient, and constant term of P(x)=4x5+2x29 P(x) = -4x^5 + 2x^2 - 9.

Answer: Degree 5 5, leading coefficient 4-4, constant term 9-9.

Understanding

Explain why the remainder when dividing P(x) P(x) by xc x - c must be a constant, not a polynomial in x x.

Guidance: The Division Algorithm requires the remainder's degree to be strictly less than the divisor's degree. The divisor xc x - c has degree 1 1, so the remainder has degree 0 0 — a constant.

Application

Use synthetic division to divide 3x32x2+4x1 3x^3 - 2x^2 + 4x - 1 by x1 x - 1, and state the quotient and remainder.

Answer: Coefficients 3,2,4,1 3, -2, 4, -1 with c=1 c = 1: bring down 3 3; 3,2+3=1,4+1=5,1+5=4 3, -2+3=1, 4+1=5, -1+5=4. Quotient 3x2+x+5 3x^2 + x + 5, remainder 4 4. (Check: this means P(1)=4 P(1) = 4.)

Analysis

Without graphing, argue how many times the graph of P(x)=x45x2+4 P(x) = x^4 - 5x^2 + 4 crosses the x x-axis, and confirm by factoring.

Guidance: Even degree, positive leading coefficient, so both ends rise. Factor as a quadratic in x2 x^2: (x21)(x24)=(x1)(x+1)(x2)(x+2) (x^2 - 1)(x^2 - 4) = (x-1)(x+1)(x-2)(x+2). Four distinct real roots ±1,±2 \pm 1, \pm 2, so the graph crosses the x x-axis four times.

FAQ

Is a single number like 7 7 a polynomial? Yes. It is a constant polynomial of degree 0 0, since 7=7x0 7 = 7x^0. The number 0 0 is also a polynomial, but its degree is conventionally left undefined (or called -\infty).

Why do we insist exponents be whole numbers? Because that restriction is exactly what gives polynomials their nice, universal behavior: they are defined everywhere, are smooth, and are built from only addition and multiplication. Allowing x1/2 x^{1/2} or x1 x^{-1} creates functions with roots or asymptotes that behave very differently.

When should I use synthetic division instead of long division? Only when the divisor is linear and looks like xc x - c. It is faster and less error-prone there. For a divisor like x2+1 x^2 + 1 or 2x3 2x - 3, use long division (or first rewrite and adjust).

How does the Remainder Theorem help me evaluate polynomials? Instead of plugging a number into every power, do one pass of synthetic division; the final entry is P(c) P(c). For high-degree polynomials this is much faster and is essentially how computers evaluate them (Horner's method).

Does every polynomial have a real root? No. x2+1 x^2 + 1 has no real root because it is never zero for real x x. But every non-constant polynomial has a complex root — that is the Fundamental Theorem of Algebra. Odd-degree real polynomials, however, always have at least one real root.

If there's no quintic formula, how do we solve degree-5 equations? Numerically. We use iterative methods (like Newton's method) to approximate the roots as accurately as we like. Abel–Ruffini only says there's no general formula in radicals; it does not say the roots don't exist or can't be found.

Quick Revision

  • Polynomial = sum of terms akxk a_k x^k with whole-number exponents; degree = highest power; standard form = descending order.
  • Add/subtract: combine like terms; distribute the minus sign fully when subtracting.
  • Multiply: distribute every term across every term; degrees add.
  • Division Algorithm: P=DQ+R P = D\cdot Q + R with degR<degD\deg R < \deg D.
  • Synthetic division: shortcut for divisor xc x - c; include placeholder zeros.
  • Remainder Theorem: remainder on dividing by xc x - c equals P(c) P(c).
  • Factor Theorem: xc x - c is a factor     P(c)=0\iff P(c) = 0.
  • Degree-nn polynomial: at most nn real roots; end behavior set by degree parity and leading-coefficient sign.
  • History: cubics/quartics solved by Cardano and Ferrari (1545); no quintic formula (Abel–Ruffini, 1824).

Prerequisites

  • Factoring and the quadratic formula (see the Algebra overview)
  • Complex numbers (arising naturally from roots of polynomials)

Next Topics

  • Calculus — derivatives and integrals of polynomials are the gateway to the whole subject.