ApCoCoA-1:DA.Weight
From ApCoCoAWiki
Revision as of 10:10, 8 December 2008 by S schuster (talk | contribs) (New page: <command> <title>diffalg.Weight</title> <short_description>computes the weight of a differential polynomial</short_description> <syntax> $diffalg.Weight(F:POLY):INT </syntax> <desc...)
diffalg.Weight
computes the weight of a differential polynomial
Syntax
$diffalg.Weight(F:POLY):INT
Description
Computes the weight of the differential polynomial F.
Example
Use Q[x[1..2,0..20]]; F:=x[1,2]^2x[1,1]3+x[2,1]; $diffalg.Weight(F); ------------------------------- F:=x[1,2]^2x[1,1]^3+x[2,1]; $diffalg.Weight(F); 7 -------------------------------