Roots of polynomial equations
| English | Chinese | Pinyin |
|---|---|---|
| quadratic | 二次 | èr cì |
| root | 根 | gēn |
| coefficient | 系数 | xì shù |
| cubic | 三次 | sān cì |
| substitution | 代换 | dài huàn |
The secret hidden in every equation
- Every quadratic 二次 equation hides two numbers — its roots 根. You can find their sum and product without solving the equation at all.
- These relationships between roots and coefficients 系数 unlock problems that would otherwise require messy algebra.
Roots of a quadratic
- For $ax^2 + bx + c = 0$ with roots $\alpha, \beta$:
Worked example. $2x^2 - 7x + 3 = 0$. Sum of roots $= \dfrac{7}{2}$, product $= \dfrac{3}{2}$. Check: roots are $3$ and $\dfrac{1}{2}$: sum $= 3.5$ ✓, product $= 1.5$ ✓.

The roots of a quadratic and how they relate to its coefficients
Roots of a polynomial
y = ax³ + bx² + cx + d
The roots are where the curve meets the x-axis — their sum and product link to the coefficients.
For x² − 5x + 6 = 0, what is the sum of the roots α + β = −b/a?
α + β = −b/a = −(−5)/1 = 5.
For x² − 5x + 6 = 0, what is the product αβ = c/a?
αβ = c/a = 6/1 = 6.
Roots of a cubic 三次
- For a cubic $ax^3 + bx^2 + cx + d = 0$ with roots $\alpha, \beta, \gamma$:
- $\sum\alpha = -\dfrac{b}{a}$, $\sum\alpha\beta = \dfrac{c}{a}$, $\alpha\beta\gamma = -\dfrac{d}{a}$.
Watch the signs. The sum of roots is $-\dfrac{b}{a}$ (negative), and the product of three roots is $-\dfrac{d}{a}$ (also negative). Getting the signs wrong is the most common error.
For x³ − 6x² + 11x − 6 = 0, the sum of roots Σα = −b/a. Find it.
Σα = −(−6)/1 = 6. (Roots are 1, 2, 3: sum = 6.)
For ax³ + bx² + cx + d = 0, the product of roots αβγ = d/a.
The product of three roots is αβγ = −d/a (negative), not d/a.
Match each root relationship to its formula (leading coefficient a).
Quadratic: α+β = −b/a, αβ = c/a. Cubic: Σα = −b/a, αβγ = −d/a (sign alternates with degree).
Transforming roots
- To find an equation whose roots are changed simply, use a substitution 代换 (e.g. $w = \alpha + 1$).
- Example: $x^2 - 5x + 6 = 0$ ($\alpha+\beta=5$, $\alpha\beta=6$) → roots $\alpha+1,\beta+1$ give sum $7$, product $12$, so $x^2 - 7x + 12 = 0$.
With α + β = 5 and αβ = 6, what is the product (α+1)(β+1)?
(α+1)(β+1) = αβ + α + β + 1 = 6 + 5 + 1 = 12.
Worked example — finding $\alpha^2 + \beta^2$
- Given $x^2 - 5x + 6 = 0$: $\alpha + \beta = 5$, $\alpha\beta = 6$.
- $\alpha^2 + \beta^2 = (\alpha + \beta)^2 - 2\alpha\beta = 25 - 12 = 13$.
- Sums like $\sum\alpha$ are symmetric functions of the roots.
For x² − 5x + 6 = 0, α² + β² = (α+β)² − 2αβ. Find it.
(α+β)² − 2αβ = 25 − 12 = 13.
You've got it
- quadratic: $\alpha+\beta = -\dfrac{b}{a}$, $\alpha\beta = \dfrac{c}{a}$
- cubic: $\sum\alpha = -\dfrac{b}{a}$, $\sum\alpha\beta = \dfrac{c}{a}$, $\alpha\beta\gamma = -\dfrac{d}{a}$
- transform roots with a substitution