1.1 Roots of Polynomial Equations

2026 Syllabus Objectives

  1. 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)

  2. 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=0ax^2 + bx + c = 0 with roots α\alpha and β\beta, we can rewrite it in the form:

x2+bax+ca=0x^2 + \frac{b}{a}x + \frac{c}{a} = 0

Comparing this to the factored form (xα)(xβ)=0(x - \alpha)(x - \beta) = 0, which expands to:

x2(α+β)x+αβ=0x^2 - (\alpha + \beta)x + \alpha\beta = 0

We obtain the fundamental relationships:

Sum of roots:

α+β=ba\alpha + \beta = -\frac{b}{a}

Product of roots:

αβ=ca\alpha\beta = \frac{c}{a}

Summation Notation

We can write these relationships using summation notation:

  • Sum of roots: α=α+β\sum \alpha = \alpha + \beta
  • Product of roots: αβ=αβ\sum \alpha\beta = \alpha\beta

This notation provides a shorthand way to express symmetric functions of the roots.

General Quadratic Form

Any quadratic equation with roots α\alpha and β\beta can be written as:

x2(α+β)x+αβ=0x^2 - (\alpha + \beta)x + \alpha\beta = 0

or equivalently:

x2(α)x+αβ=0x^2 - \left(\sum \alpha\right)x + \sum \alpha\beta = 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(\alpha + \beta)^2 = \alpha^2 + 2\alpha\beta + \beta^2, we rearrange to get:

α2+β2=(α+β)22αβ\alpha^2 + \beta^2 = (\alpha + \beta)^2 - 2\alpha\beta

In summation notation:

α2=(α)22αβ\sum \alpha^2 = \left(\sum \alpha\right)^2 - 2\sum \alpha\beta

Sum of cubes:

Using the binomial expansion:

(α+β)3=α3+3α2β+3αβ2+β3(\alpha + \beta)^3 = \alpha^3 + 3\alpha^2\beta + 3\alpha\beta^2 + \beta^3

Factoring the middle terms:

(α+β)3=α3+β3+3αβ(α+β)(\alpha + \beta)^3 = \alpha^3 + \beta^3 + 3\alpha\beta(\alpha + \beta)

Rearranging:

α3+β3=(α+β)33αβ(α+β)\alpha^3 + \beta^3 = (\alpha + \beta)^3 - 3\alpha\beta(\alpha + \beta)

In summation notation:

α3=(α)33αβα\sum \alpha^3 = \left(\sum \alpha\right)^3 - 3\sum \alpha\beta \sum \alpha

Recurrence Relations ⚡

For a quadratic equation ax2+bx+c=0ax^2 + bx + c = 0, we can define:

Sn=αn+βnS_n = \alpha^n + \beta^n

Since α\alpha and β\beta are roots, they satisfy:

aα2+bα+c=0andaβ2+bβ+c=0a\alpha^2 + b\alpha + c = 0 \quad \text{and} \quad a\beta^2 + b\beta + c = 0

Multiplying the first equation by αn\alpha^n and the second by βn\beta^n, then adding:

a(αn+2+βn+2)+b(αn+1+βn+1)+c(αn+βn)=0a(\alpha^{n+2} + \beta^{n+2}) + b(\alpha^{n+1} + \beta^{n+1}) + c(\alpha^n + \beta^n) = 0

This gives the recurrence formula:

aSn+2+bSn+1+cSn=0aS_{n+2} + bS_{n+1} + cS_n = 0

This formula allows us to calculate SnS_n for any positive integer nn once we know S0S_0 and S1S_1.

Note: S0=α0+β0=1+1=2S_0 = \alpha^0 + \beta^0 = 1 + 1 = 2 (there are 2 roots)

Worked Example 1: Finding Unknown Coefficients

Problem: The quadratic equation x22px+p=0x^2 - 2px + p = 0 is such that one root is three times the value of the other root. Find pp.

Solution:

Let the roots be α\alpha and 3α3\alpha.

Sum of roots:

α+3α=2p\alpha + 3\alpha = 2p

4α=2p4\alpha = 2p

p=2α    α=p2p = 2\alpha \quad \implies \quad \alpha = \frac{p}{2}

Product of roots:

α×3α=p\alpha \times 3\alpha = p

3α2=p3\alpha^2 = p

Equating the two expressions:

Substitute α=p2\alpha = \frac{p}{2} into 3α2=p3\alpha^2 = p:

3(p2)2=p3\left(\frac{p}{2}\right)^2 = p

3p24=p3 \cdot \frac{p^2}{4} = p

3p24=p\frac{3p^2}{4} = p

3p2=4p3p^2 = 4p

3p24p=03p^2 - 4p = 0

p(3p4)=0p(3p - 4) = 0

Since we need p>0p > 0 for real distinct roots:

p=43p = \frac{4}{3}

Worked Example 2: Using Recurrence Relations

Problem: Given that 2x2+3x2=02x^2 + 3x - 2 = 0 has roots α,β\alpha, \beta, find the values of α2+β2\alpha^2 + \beta^2 and α3+β3\alpha^3 + \beta^3.

Solution:

From the equation 2x2+3x2=02x^2 + 3x - 2 = 0, we have a=2a = 2, b=3b = 3, c=2c = -2.

Finding S1S_1:

S1=α+β=ba=32S_1 = \alpha + \beta = -\frac{b}{a} = -\frac{3}{2}

Finding S2=α2+β2S_2 = \alpha^2 + \beta^2:

The recurrence relation is 2Sn+2+3Sn+12Sn=02S_{n+2} + 3S_{n+1} - 2S_n = 0.

For n=0n = 0:

2S2+3S12S0=02S_2 + 3S_1 - 2S_0 = 0

2S2+3(32)2(2)=02S_2 + 3\left(-\frac{3}{2}\right) - 2(2) = 0

2S2924=02S_2 - \frac{9}{2} - 4 = 0

2S2=92+4=92+82=1722S_2 = \frac{9}{2} + 4 = \frac{9}{2} + \frac{8}{2} = \frac{17}{2}

S2=174S_2 = \frac{17}{4}

Finding S3=α3+β3S_3 = \alpha^3 + \beta^3:

Multiply the original equation by xx:

2x3+3x22x=02x^3 + 3x^2 - 2x = 0

This gives us the recurrence:

2S3+3S22S1=02S_3 + 3S_2 - 2S_1 = 0

2S3+3(174)2(32)=02S_3 + 3\left(\frac{17}{4}\right) - 2\left(-\frac{3}{2}\right) = 0

2S3+514+3=02S_3 + \frac{51}{4} + 3 = 0

2S3+514+124=02S_3 + \frac{51}{4} + \frac{12}{4} = 0

2S3+634=02S_3 + \frac{63}{4} = 0

S3=638S_3 = -\frac{63}{8}

Sign in to view full notes