| [ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] | 
Procedures for one-variable polynomials.
creates a one-variable polynomial.
(polynomial1 1 2 3 4)
returns a polynomial x^3+2x^2+3x+4.
returns #t if the object is a one-variable polynomial.
differenciate the polynomial.
integrates the polynomial between begin to end.
substitutes variables in the polynomials to x.
[R5RS+] adds all given arguments. This procedure extends for polynomials.
[R5RS+] subtracts given arguments from the first argument. This procedure extends for polynomials.
[R5RS+] multiplies all given arguments. This procedure extends for polynomials.
[R5RS+] computes quotient of the polynomial. This procedure extends for polynomials.
[R5RS+] computes remainder of the polynomial. This procedure extends for polynomials.
gets degree of the polynomial. Degree of function 0 is -1.
computes indefinite integral of the polynomial. Integral constant is given by C.
gets coefficient of the nth order. This procedure return 0 if the order is greater than degree of the polynomial.
solves equation c_nx^n+c_{n-1}x^{n-1}+\dots+c_0=0
and returns a list of the real roots.
The roots are inexact value.
solves equation c_nx^n+c_{n-1}x^{n-1}+\dots+c_0=0
using Bairstow method and returns a list of the complex roots.
The roots are inexact value.
| [ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] | 
 
  This document was generated on August 9, 2012 using texi2html 5.0.