[back] [prev] [next] [index] [root]

 


PolyDeriv

Returns the derivative of a given polynomial.

Syntax:

h := PolyDeriv(f);

polynomial
  h  
polynomial
  f  

Description:

Returns the derivative h\in S[x] of a polynomial f\in S[x].


Example:

The derivative of x^4 + 73*x^2 - 280*x - 2399:

kash> f := Poly(Zx, [1, 0, 73, -280, -2399]);
x^4 + 73*x^2 - 280*x - 2399
kash> PolyDeriv(f);
> 4*x^3 + 146*x - 280


<- back[back] [prev] [next] [index] [root]