Cubic Equation Calculator
Find a real root of ax³ + bx² + cx + d = 0.
Find a real solution to any cubic equation. The tool uses Newton's method for a robust numerical root.
The math behind it
A cubic always has at least one real root. Newton's method iterates xₙ₊₁ = xₙ − f(xₙ)/f′(xₙ) until it converges.
Worked example
x³ − 6x² + 11x − 6 = 0 has roots 1, 2 and 3; the tool returns one of them.
FAQ
Does it find all three roots?
It returns one real root. Divide it out to reduce the cubic to a quadratic for the remaining roots.