1.1 Roots of Polynomial Equations
2026 Syllabus Objectives
-
Recall and use the relations between the roots and coefficients of polynomial equations (e.g., to evaluate symmetric functions of the roots or to solve problems involving unknown coefficients in equations; restricted to equations of degree 2, 3 or 4 only)
-
Use a substitution to obtain an equation whose roots are related in a simple way to those of the original equation (Substitutions will not be given for the easiest cases, e.g., where the new roots are reciprocals or squares or a simple linear function of the old roots)
1.1 Quadratic Equations 🔑
Relations Between Roots and Coefficients
For a quadratic equation ax2+bx+c=0 with roots α and β, we can rewrite it in the form:
x2+abx+ac=0
Comparing this to the factored form (x−α)(x−β)=0, which expands to:
x2−(α+β)x+αβ=0
We obtain the fundamental relationships:
Sum of roots:
α+β=−ab
Product of roots:
αβ=ac
Summation Notation
We can write these relationships using summation notation:
- Sum of roots: ∑α=α+β
- Product of roots: ∑αβ=αβ
This notation provides a shorthand way to express symmetric functions of the roots.
General Quadratic Form
Any quadratic equation with roots α and β can be written as:
x2−(α+β)x+αβ=0
or equivalently:
x2−(∑α)x+∑αβ=0
Sum of Powers of Roots
We can find expressions for sums of powers of roots using algebraic manipulation.
Sum of squares:
Starting with (α+β)2=α2+2αβ+β2, we rearrange to get:
α2+β2=(α+β)2−2αβ
In summation notation:
∑α2=(∑α)2−2∑αβ
Sum of cubes:
Using the binomial expansion:
(α+β)3=α3+3α2β+3αβ2+β3
Factoring the middle terms:
(α+β)3=α3+β3+3αβ(α+β)
Rearranging:
α3+β3=(α+β)3−3αβ(α+β)
In summation notation:
∑α3=(∑α)3−3∑αβ∑α
Recurrence Relations ⚡
For a quadratic equation ax2+bx+c=0, we can define:
Sn=αn+βn
Since α and β are roots, they satisfy:
aα2+bα+c=0andaβ2+bβ+c=0
Multiplying the first equation by αn and the second by βn, then adding:
a(αn+2+βn+2)+b(αn+1+βn+1)+c(αn+βn)=0
This gives the recurrence formula:
aSn+2+bSn+1+cSn=0
This formula allows us to calculate Sn for any positive integer n once we know S0 and S1.
Note: S0=α0+β0=1+1=2 (there are 2 roots)
Worked Example 1: Finding Unknown Coefficients
Problem: The quadratic equation x2−2px+p=0 is such that one root is three times the value of the other root. Find p.
Solution:
Let the roots be α and 3α.
Sum of roots:
α+3α=2p
4α=2p
p=2α⟹α=2p
Product of roots:
α×3α=p
3α2=p
Equating the two expressions:
Substitute α=2p into 3α2=p:
3(2p)2=p
3⋅4p2=p
43p2=p
3p2=4p
3p2−4p=0
p(3p−4)=0
Since we need p>0 for real distinct roots:
p=34
Worked Example 2: Using Recurrence Relations
Problem: Given that 2x2+3x−2=0 has roots α,β, find the values of α2+β2 and α3+β3.
Solution:
From the equation 2x2+3x−2=0, we have a=2, b=3, c=−2.
Finding S1:
S1=α+β=−ab=−23
Finding S2=α2+β2:
The recurrence relation is 2Sn+2+3Sn+1−2Sn=0.
For n=0:
2S2+3S1−2S0=0
2S2+3(−23)−2(2)=0
2S2−29−4=0
2S2=29+4=29+28=217
S2=417
Finding S3=α3+β3:
Multiply the original equation by x:
2x3+3x2−2x=0
This gives us the recurrence:
2S3+3S2−2S1=0
2S3+3(417)−2(−23)=0
2S3+451+3=0
2S3+451+412=0
2S3+463=0
S3=−863