AMC // 10
LEARN>ALGEBRA>POLYNOMIALS
// CONCEPT // ALGEBRA

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 xx is an expression of the form anxn+an1xn1++a1x+a0a_n x^n + a_{n-1}x^{n-1} + \cdots + a_1 x + a_0 where the aia_i are real (or complex) numbers and nn 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 p(k)p(k)?" 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: deg(pq)=degp+degq\deg(p \cdot q) = \deg p + \deg q. Useful when you only need the leading term of an expansion.
  • Remainder Theorem: When p(x)p(x) is divided by (xc)(x - c), the remainder equals p(c)p(c). So if you only need the remainder, just evaluate the polynomial at cc.
  • Factor Theorem: (xc)(x - c) is a factor of p(x)p(x) if and only if p(c)=0p(c) = 0. Use this to test whether a suspected root actually works.
  • Vieta's formulas — quadratic ax2+bx+c=0ax^2 + bx + c = 0 with roots r,sr, s: r+s=ba,rs=ca.r + s = -\frac{b}{a}, \qquad rs = \frac{c}{a}.
  • Vieta's formulas — cubic ax3+bx2+cx+d=0ax^3 + bx^2 + cx + d = 0 with roots r,s,tr, s, t: r+s+t=ba,rs+rt+st=ca,rst=da.r+s+t = -\frac{b}{a}, \quad rs+rt+st = \frac{c}{a}, \quad rst = -\frac{d}{a}. Memorize the pattern: the elementary symmetric polynomials cycle through signs ,+,-, +, -.
  • Fundamental Theorem of Algebra: A degree-nn polynomial (over C\mathbb{C}) has exactly nn roots counted with multiplicity. A real odd-degree polynomial always has at least one real root.
  • Difference of cubes / sum of cubes: a3b3=(ab)(a2+ab+b2),a3+b3=(a+b)(a2ab+b2).a^3 - b^3 = (a-b)(a^2+ab+b^2), \qquad a^3 + b^3 = (a+b)(a^2-ab+b^2).
  • Polynomial evaluation trick: To evaluate p(x)p(x) at x=cx = c, Horner's method rewrites anxn++a0a_n x^n + \cdots + a_0 as (((anx+an1)x+an2))x+a0(\cdots((a_n \cdot x + a_{n-1})\cdot x + a_{n-2})\cdots)\cdot x + a_0, requiring only nn multiplications and nn additions — great for mental math.

Worked example 1

Problem. Suppose p(x)=x36x2+11x6p(x) = x^3 - 6x^2 + 11x - 6. Without fully factoring, find the remainder when p(x)p(x) is divided by (x4)(x - 4).

Solution. By the Remainder Theorem, the remainder is p(4)p(4).

p(4)=436(42)+11(4)6=6496+446=6.p(4) = 4^3 - 6(4^2) + 11(4) - 6 = 64 - 96 + 44 - 6 = 6.

So the remainder is 66. (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 x3+px+q=0x^3 + px + q = 0 satisfy r+s+t=0r + s + t = 0, rs+rt+st=prs + rt + st = p, and rst=qrst = -q. Given that the roots also satisfy r2+s2+t2=10r^2 + s^2 + t^2 = 10 and r3+s3+t3=15r^3 + s^3 + t^3 = 15, find pp and qq.

Solution.

Step 1 — find pp. Use the identity (r+s+t)2=r2+s2+t2+2(rs+rt+st)(r+s+t)^2 = r^2+s^2+t^2 + 2(rs+rt+st). Since r+s+t=0r+s+t = 0 (the coefficient of x2x^2 is 0), we get 0=10+2p0 = 10 + 2p, so p=5p = -5.

Step 2 — find qq. Use Newton's identity r3+s3+t33rst=(r+s+t)(r2+s2+t2rsrtst)r^3+s^3+t^3 - 3rst = (r+s+t)(r^2+s^2+t^2 - rs - rt - st). The right side is 00 (because r+s+t=0r+s+t=0), so r3+s3+t3=3rstr^3+s^3+t^3 = 3rst. Thus 15=3(q)15 = 3(-q), giving q=5-q = 5, i.e. q=5q = -5.

Answer: p=5p = -5, q=5q = -5. We can verify: x35x5=0x^3 - 5x - 5 = 0 has the right symmetric sums.

Common traps

  • Forgetting the sign in Vieta's sum. The sum of the roots is b/a-b/a, not +b/a+b/a. A misplaced sign here flips every subsequent answer.
  • Confusing "root" with "factor." If rr is a root then (xr)(x - r) is the factor — students sometimes write (x+r)(x + r) by reflex.
  • Applying the Remainder Theorem to the wrong linear factor. Dividing by (xc)(x - c) gives remainder p(c)p(c); dividing by (2x1)(2x - 1) — a non-monic factor — gives remainder p(1/2)p(1/2), not p(2)p(2).
  • Off-by-one in degree counting. A degree-nn polynomial has at most nn roots; more than nn roots means the polynomial is identically zero.
  • Dropping repeated roots. A factor (xr)2(x - r)^2 means rr is a root of multiplicity 2; Vieta's formulas still count it twice when summing or multiplying roots.