|
up: ``translations'' next: algebraic operations |
Solve x3 + x2 + 2x - 23 = 0
| Mathematica: (analytical): Solve[x^3+x^2+2x-23==0, x] (numerical): NSolve[x^3+x^2+2x-23==0, x] (to 50 digits): N[Solve[x^3+x^2+2x-23==0, x],50] |
Matlab: (analytical): solve('x^3+x^2+2*x-23=0') (numerical): roots([1 1 2 -23]) |
| Maple: (analytical): solve({x^3+x^2+2*x-23=0}, {x});
(numerical):
(to 50 digits): |
IDL: (numerical only)
c = [ -23., 2., 1., 1. ]   ; polynomial's coefficients
|