Polynomials
A polynomial is a sum of monomials — and everything you do to one is an extension of ordinary arithmetic. Degree and coefficients, adding, subtracting and multiplying, dividing by a binomial with Horner’s scheme, the remainder and factor theorems, integer roots, factoring and biquadratic equations.
Before you start
This topic builds on earlier ideas. Before you start, it's worth working through the lessons below — they'll make everything click:
- Special productsSeven identities that turn multiplying out brackets into a single line — and the same seven read right to left, which is factoring. The square of a sum and of a difference, the difference of squares, the cubes and the sum and difference of cubes, proved on a drawing and used for mental arithmetic.
- Quadratic equationsA quadratic equation has the unknown in the second power. Learn the general form, the discriminant, the formulas for the roots, the shortcuts for incomplete equations, Vieta formulas and how to read the solutions off a parabola.
Where this is used
Real situations where you count exactly the way this lesson teaches:
- A box folded from a sheet of cardCut squares of side x from the corners of a 30 × 20 cm sheet and fold the edges up. The volume is the polynomial V(x) = x(30 − 2x)(20 − 2x) = 4x³ − 100x² + 600x. At x = 4 cm that is 4 · 22 · 12 = 1,056 cm³, while x = 3 cm gives only 3 · 24 · 14 = 1,008 cm³ — one centimetre in the cut is almost 5% of the capacity.
- Saving with a deposit every yearThree yearly deposits of 1,000 in an account paying 5% grow to 1,000(q³ + q² + q), where q = 1.05 — a cubic in the annual multiplier. Substituting: 1,000 · (1.157625 + 1.1025 + 1.05) = 3,310.13, so 310.13 on top of the 3,000 paid in.
- Programming and evaluating a curve fastA degree-five polynomial evaluated directly, with every power computed from scratch, needs 15 multiplications: 10 for the powers x² to x⁵ and 5 for the coefficients. Horner’s scheme — the same one that divides by a binomial — needs 5 multiplications and 5 additions. In a loop rendering a million points of a curve that is three times fewer multiplications per point.
- Electronics and a temperature sensorThe resistance of a Pt100 sensor is the polynomial R(T) = 100(1 + 3.9083 · 10⁻³ T − 5.775 · 10⁻⁷ T²). At T = 100 °C that gives 100 · (1 + 0.39083 − 0.005775) = 138.51 Ω. Without the quadratic term it would read 139.08 Ω — half an ohm, which on this scale is an error of about 1.5 °C.
All formulas
General form
the degree n is the highest power with a non-zero coefficient
Degree of a product
adding can drop the degree, multiplying never does
Division with remainder
the remainder has a lower degree than the divisor
Remainder theorem
the remainder is simply the value of the polynomial at a
Factor theorem
a root and a linear factor are the same piece of information
Integer roots
they can only be divisors of the constant term
Biquadratic equation
substitute t = x², then take square roots to get back to x
The expression is a polynomial: a sum of monomials in which the variable appears only in powers with non-negative integer exponents. No , no — and that is the whole of the restriction.
It is worth knowing straight away, because this entire lesson rests on the fact that polynomials behave exactly like numbers: you add them, multiply them, divide them with remainder and factor them. Anyone who can do long division and factor an integer already knows half of what follows.
Degree, coefficients and the constant term
The degree is the highest power with a non-zero coefficient, and is the constant term — the value of the polynomial at zero. In the degree is and the constant term is .
Two polynomials are equal when they have the same coefficients on the same powers — agreeing at a few arguments is not enough. That principle is what every "choose the coefficients so that…" problem is built on.
Adding, subtracting and multiplying
Adding and subtracting is collecting like terms, power against power. The only trap is in the subtraction: a minus in front of a bracket flips the sign of every term inside it.
Multiplying is the distributive law applied to every pair of terms. The degree of a product is always the sum of the degrees — which is where it differs from a sum, whose degree can drop when the leading terms cancel:
Every one of the special products is a particular case of this multiplication — and it is worth using them instead of expanding from scratch.
Dividing by a binomial: Horner’s scheme
Polynomials divide with remainder, exactly as integers do:
When the divisor is a binomial , the remainder must have degree below — so it is a number. The whole computation then fits into one row of a table: Horner’s scheme. Write out the coefficients of the dividend (with zeros for missing powers), copy the first one down, and compute each next entry as the previous result times plus the next coefficient.
For divided by (so ):
| coefficients | ||||
The last number is the remainder — here . The three before it are the coefficients of the quotient, one degree lower:
The remainder and factor theorems
The remainder on dividing by is no accident. Substitute into : the first term vanishes and is left:
From it follows the factor theorem — Bézout’s theorem in the Polish tradition — one of the most useful corollaries in all of school algebra:
In other words: a root of a polynomial and a linear factor of it are one piece of information written two ways. Finding a single root immediately drops the degree of the problem by one.
Integer roots
The factor theorem says where the factors are — but not where to start looking. Another theorem does: if a polynomial with integer coefficients has an integer root, that root divides the constant term.
For the constant term is , so the candidates are — eight numbers instead of infinitely many. Checking in turn: , so is a root.
Factoring
Turn the root you found into a factor, divide it out with Horner’s scheme, and carry on with a polynomial one degree lower — down to a quadratic, which factors with the discriminant or with a special product.
Not every polynomial factors into linear pieces. A quadratic factor with a negative discriminant — , for instance — is irreducible over the reals and stays as it is.
Biquadratic equations
The equation contains only even powers, so the substitution turns it into a quadratic:
Just remember that cannot be negative. The way back to is therefore: a positive gives two solutions , gives one, and a negative is discarded.
Practice
Work through a set of exercises — they get harder as you go. At the end you'll see your score and the mistakes worth reviewing.
Common mistakes
- The minus in front of a bracket — subtracting a polynomial flips the sign of every term inside, not only the first.
- Missing powers in Horner’s scheme — dividing means writing the coefficients . Skipping the zeros shifts the whole computation.
- The wrong sign of — dividing by means , not . Horner’s scheme reads the root, not the number in the bracket.
- Hunting for roots outside the divisors of the constant term — there are no integer roots anywhere else; if no divisor gives zero, the polynomial simply has none.
- Forgetting both signs on the way back — gives and ; keeping only the positive one loses half the solutions.
- Accepting a negative — has no real solutions, so such a is discarded rather than square-rooted.
Formula card
Topic: Polynomials
General form
the degree n is the highest power with a non-zero coefficient
Degree of a product
adding can drop the degree, multiplying never does
Division with remainder
the remainder has a lower degree than the divisor
Remainder theorem
the remainder is simply the value of the polynomial at a
Factor theorem
a root and a linear factor are the same piece of information
Integer roots
they can only be divisors of the constant term
Biquadratic equation
substitute t = x², then take square roots to get back to x
