Cubic Equation Calculator
A cubic equation has the form ax3 + bx2 + cx + d = 0. It must have the term in x3 or it would not be cubic
but any or all of b, c and d can be zero. Free online cubic equation calculation, used to find the roots of the cubic
equation using this calculator.
Related Articles:
>> A simple Cubic Equation tutorial.
|
Related Topics
|
| Cubic Equation Calculator. |
|
To calculate the roots:
For example ,Enter a=1, b=8, c=16 and d=10.
|
Cubic Equation Formula:
discriminant(Δ) = q3 + r2
q = (3c- b2)/9
r = -27d + b(9c-2b2)
s = r + math.sqrt(discriminant)
t = r - math.sqrt(discriminant)
term1 = math.sqrt(3.0)*((-t + s)/2)
r13= 2 * math.sqrt(q)
x1=(- term1 + r13*math.cos(q3/3) )
x2=(- term1 + r13*math.cos(q3+(2*math.PI)/3) )
x3=(- term1 + r13*math.cos(q3+(4*math.PI)/3) )
This calculator will help you dynamically to calculate the roots of the cubic equation. Easy to understand and use.