POLYNOMIALS
Master polynomial arithmetic, the Factor and Remainder Theorems, Vieta's formulas for cubics, and evaluation tricks used throughout AMC 10.
Overview
A polynomial in is an expression of the form where the are real (or complex) numbers and is a non-negative integer. The degree is the highest power with a nonzero coefficient. Polynomials are the backbone of algebra: every AMC 10 problem about roots, factors, or "what is ?" lives in this world.
The AMC loves polynomials because a single compact expression can hide several independent ideas at once — the relationship between coefficients and roots (Vieta's formulas), the behavior at special inputs (the Remainder Theorem), and the factoring insight that turns an ugly expression into a product of linear pieces. Mastering these three lenses lets you crack most polynomial AMC questions in under two minutes.
Polynomial arithmetic is straightforward: add/subtract by collecting like terms, multiply by distributing every term of one factor across the other, and divide using long division or synthetic division. The one trap students hit is sign errors when subtracting; writing each subtraction as adding the negative helps.
Key facts
- Degree of a product: . Useful when you only need the leading term of an expansion.
- Remainder Theorem: When is divided by , the remainder equals . So if you only need the remainder, just evaluate the polynomial at .
- Factor Theorem: is a factor of if and only if . Use this to test whether a suspected root actually works.
- Vieta's formulas — quadratic with roots :
- Vieta's formulas — cubic with roots : Memorize the pattern: the elementary symmetric polynomials cycle through signs .
- Fundamental Theorem of Algebra: A degree- polynomial (over ) has exactly roots counted with multiplicity. A real odd-degree polynomial always has at least one real root.
- Difference of cubes / sum of cubes:
- Polynomial evaluation trick: To evaluate at , Horner's method rewrites as , requiring only multiplications and additions — great for mental math.
Worked example 1
Problem. Suppose . Without fully factoring, find the remainder when is divided by .
Solution. By the Remainder Theorem, the remainder is .
So the remainder is . (Notice we didn't need long division at all — the theorem converts a division question into a simple substitution.)
Worked example 2
Problem. The three roots of satisfy , , and . Given that the roots also satisfy and , find and .
Solution.
Step 1 — find . Use the identity . Since (the coefficient of is 0), we get , so .
Step 2 — find . Use Newton's identity . The right side is (because ), so . Thus , giving , i.e. .
Answer: , . We can verify: has the right symmetric sums.
Common traps
- Forgetting the sign in Vieta's sum. The sum of the roots is , not . A misplaced sign here flips every subsequent answer.
- Confusing "root" with "factor." If is a root then is the factor — students sometimes write by reflex.
- Applying the Remainder Theorem to the wrong linear factor. Dividing by gives remainder ; dividing by — a non-monic factor — gives remainder , not .
- Off-by-one in degree counting. A degree- polynomial has at most roots; more than roots means the polynomial is identically zero.
- Dropping repeated roots. A factor means is a root of multiplicity 2; Vieta's formulas still count it twice when summing or multiplying roots.