9231 · 1.1
Roots of polynomial equations
The coefficients of a polynomial equation hold a secret code about its roots. Vieta's formulas allow us to crack this code, revealing properties like the sum and product of roots without ever having to find them individually.
Need to know
What you need to know
- **Quadratic:** For $ax^2+bx+c=0$ with roots $\alpha, \beta$: <br> $\Sigma \alpha = \alpha+\beta = -b/a$ <br> $\alpha\beta = c/a$
- **Cubic:** For $ax^3+bx^2+cx+d=0$ with roots $\alpha, \beta, \gamma$: <br> $\Sigma \alpha = \alpha+\beta+\gamma = -b/a$ <br> $\Sigma \alpha\beta = \alpha\beta+\beta\gamma+\gamma\alpha = c/a$ <br> $\alpha\beta\gamma = -d/a$
- **Quartic:** For $ax^4+bx^3+cx^2+dx+e=0$ with roots $\alpha, \beta, \gamma, \delta$: <br> $\Sigma \alpha = -b/a$ <br> $\Sigma \alpha\beta = c/a$ <br> $\Sigma \alpha\beta\gamma = -d/a$ <br> $\alpha\beta\gamma\delta = e/a$
Explanation
The Secret Code of Polynomials
- Identify the polynomial's coefficients, ensuring it's in the form $ax^n + bx^{n-1} + \dots = 0$.
- Apply Vieta's formulas to find the fundamental sums of roots ($\Sigma \alpha$, $\Sigma \alpha\beta$, etc.), watching the signs.
- Identify the target expression you need to find (e.g., $\Sigma \alpha^2$) or the transformation for a new equation.
- Use algebraic identities to express your target in terms of the fundamental sums, or perform a substitution to find a new equation.