Calcul Des Racines Dun Polynôme De Degré 3
Calculating the roots of a cubic polynomial (degree 3) is a fundamental problem in algebra. This guide explains the mathematical approach and provides an interactive calculator to find the roots of any cubic equation.
Introduction
A cubic polynomial is an equation of the form:
ax³ + bx² + cx + d = 0
where a, b, c, and d are real numbers and a ≠ 0. Finding the roots of this equation means finding all real (and possibly complex) values of x that satisfy the equation.
There are several methods to find the roots of a cubic equation, including:
- Factoring
- Using the cubic formula
- Numerical methods
This guide focuses on the cubic formula, which provides an exact solution for any cubic equation.
Formula for Cubic Roots
The roots of a cubic equation ax³ + bx² + cx + d = 0 can be found using the following formula:
x = ∛[(-b³/27a³) + (bc/6a²) - (d/2a) + √[((b³/27a³) + (bc/6a²) - (d/2a))² + ((c/3a) - (b²/9a²))³]] + ∛[(-b³/27a³) + (bc/6a²) - (d/2a) - √[((b³/27a³) + (bc/6a²) - (d/2a))² + ((c/3a) - (b²/9a²))³]] - (b/3a)
This formula is complex but can be simplified using substitution. The formula involves the cube roots of two complex numbers and a real term.
Note: The cubic formula can yield complex roots even for real coefficients. This means that some roots may be complex numbers.
Calculation Process
To calculate the roots of a cubic equation using the cubic formula:
- Identify the coefficients a, b, c, and d in the equation ax³ + bx² + cx + d = 0.
- Calculate the discriminant Δ = (18abcd - 4b³d + b²c² - 4ac³ - 27a²d²)/(a²).
- If Δ > 0, there are three distinct real roots.
- If Δ = 0, there is a multiple root and all roots are real.
- If Δ < 0, there is one real root and two complex conjugate roots.
- Use the cubic formula to find the roots based on the value of Δ.
The cubic formula can be implemented in programming languages or calculated manually using the steps above.
Worked Examples
Example 1: Simple Cubic Equation
Find the roots of x³ - 6x² + 11x - 6 = 0.
Using the cubic formula, we find the roots to be x = 1, x = 2, and x = 3.
Example 2: Complex Roots
Find the roots of x³ - 2x² - 5x + 6 = 0.
Using the cubic formula, we find one real root x = 3 and two complex roots x = 1 ± √2i.
Frequently Asked Questions
What is a cubic polynomial?
A cubic polynomial is a polynomial of degree 3, which means the highest power of x is 3. It has the general form ax³ + bx² + cx + d = 0.
How do you find the roots of a cubic equation?
The roots of a cubic equation can be found using the cubic formula, which involves complex arithmetic. Alternatively, numerical methods can be used for approximate solutions.
Can a cubic equation have complex roots?
Yes, a cubic equation can have complex roots even if all coefficients are real. This occurs when the discriminant is negative.
What is the discriminant of a cubic equation?
The discriminant of a cubic equation ax³ + bx² + cx + d = 0 is given by Δ = (18abcd - 4b³d + b²c² - 4ac³ - 27a²d²)/(a²). The discriminant determines the nature of the roots.