- AddPoly
Add two polynomials (vectors).
- DividePoly
Divide two polynomials (as vectors) using long division.
Returns the quotient
of the two polynomials. The optional argument r
is used to return the remainder. The remainder will have lower
degree than q
.
See
Planetmath for more information.
- IsPoly
Check if a vector is usable as a polynomial.
- MultiplyPoly
Multiply two polynomials (as vectors).
- NewtonsMethodPoly
NewtonsMethodPoly (poly,guess,epsilon,maxn) |
Run newton's method on a polynomial to attempt to find a root, returns after two successive values are within epsilon or after maxn tries (then returns null).
- Poly2ndDerivative
Take second polynomial (as vector) derivative.
- PolyDerivative
Take polynomial (as vector) derivative.
- PolyToFunction
Make function out of a polynomial (as vector).
- PolyToString
Make string out of a polynomial (as vector).
- SubtractPoly
Subtract two polynomials (as vectors).
- TrimPoly
Trim zeros from a polynomial (as vector).