ApCoCoA-1:DA.Differentiate
From ApCoCoAWiki
diffalg.Differentiate
Computes the derivation of a polynomial.
Syntax
$diffalg.Differentiate(F:POLY):POLY
Description
The function computes the derivation of the polynomial F.
Example
Use Q[x[1..2,0..20]]; F:=x[1,4]^2*x[1,1]-x[2,4]^3; $diffalg.Differentiate(F); ------------------------------- x[1,2]x[1,4]^2 + 2x[1,1]x[1,4]x[1,5] - 3x[2,4]^2x[2,5] -------------------------------