Overview

Newton's sums connect coefficients of a polynomial to power sums of its roots. They let you compute rk+sk+r^k+s^k+\cdots without solving for roots.

Key Ideas

  • For a monic quadratic x2S1x+S2x^2 - S_1 x + S_2, the roots satisfy P1=S1P_1 = S_1 and P2=S1P12S2P_2 = S_1 P_1 - 2S_2.
  • For monic polynomials, the recurrence uses coefficients and earlier power sums.
  • Power sums are especially useful in symmetric expressions.

Core Skills

Make the Polynomial Monic

Divide by the leading coefficient so that the Newton sum recurrence applies cleanly.

Build a Recurrence

Use the relation between coefficients and power sums to compute P3,P4,P_3,P_4,\ldots from earlier values.

Combine with Symmetric Identities

Convert rk+skr^k+s^k into expressions involving r+sr+s and rsrs when a direct recurrence is shorter.

Worked Example

Let x25x+6=0x^2-5x+6=0 have roots r,sr,s. Find r3+s3r^3+s^3.

We have S1=r+s=5S_1 = r+s = 5 and S2=rs=6S_2 = rs = 6. First compute P2=r2+s2=S122S2=2512=13P_2 = r^2+s^2 = S_1^2 - 2S_2 = 25-12=13. Then r3+s3=(r+s)(r2rs+s2)=5(136)=35r^3+s^3 = (r+s)(r^2 - rs + s^2) = 5(13-6)=35.

More Examples

Example 1: Quadratic Power Sum

If x23x+1=0x^2-3x+1=0 has roots r,sr,s, find r4+s4r^4+s^4.

P1=3P_1=3, P2=P122=7P_2=P_1^2-2=7, then P3=3P2P1=18P_3=3P_2-P_1=18, P4=3P3P2=47P_4=3P_3-P_2=47.

Example 2: Cubic Recurrence

For x32x2+x1=0x^3-2x^2+x-1=0 with roots r,s,tr,s,t, compute r+s+tr+s+t and r2+s2+t2r^2+s^2+t^2.

S1=2S_1=2, S2=1S_2=1, so P1=2P_1=2 and P2=S1P12S2=222=2P_2=S_1P_1-2S_2=2\cdot 2-2=2.

Example 3: Symmetric Shortcut

If r+s=4r+s=4 and rs=3rs=3, compute r3+s3r^3+s^3.

r3+s3=(r+s)33rs(r+s)=6436=28r^3+s^3=(r+s)^3-3rs(r+s)=64-36=28.

Strategy Checklist

  • Make the polynomial monic first.
  • Compute P1,P2P_1, P_2 before higher powers.
  • Use symmetric shortcuts when faster.

Common Pitfalls

  • Forgetting to convert to monic form first.
  • Mixing S1,S2S_1,S_2 with P1,P2P_1,P_2.
  • Skipping earlier power sums needed for the recurrence.

Practice Problems

StatusSourceProblem NameDifficultyTags
AMC 12AHard
Show TagsAlgebra, Newton Sums, Polynomials, Vieta's Formulas
AIME IIMedium
Show TagsAlgebra, Newton Sums, Polynomials, Vieta's Formulas
AIME IIMedium
Show TagsAlgebra, Newton Sums, Polynomials, Vieta's Formulas

Module Progress:

Join the AoPS Community!

Stuck on a problem, or don't understand a module? Join the AoPS community and get help from other math contest students.