Difference between revisions of "ApCoCoA-1:DA.Weight"
From ApCoCoAWiki
m (Bot: Category moved) |
|||
Line 31: | Line 31: | ||
<key>diffalg.Weight</key> | <key>diffalg.Weight</key> | ||
<key>differential.Weight</key> | <key>differential.Weight</key> | ||
− | <wiki-category>Package_diffalg</wiki-category> | + | <wiki-category>ApCoCoA-1:Package_diffalg</wiki-category> |
</command> | </command> |
Revision as of 16:06, 2 October 2020
DA.Weight
Computes the weight of a differential polynomial.
Syntax
DA.Weight(F:POLY):INT
Description
Computes the weight of the differential polynomial F.
@param F A differential polynomial.
@return The weight of F.
Example
Use QQ[x[1..2,0..20]]; F:=x[1,2]^2x[1,1]3+x[2,1]; DA.Weight(F); 5 ------------------------------- F:=x[1,2]^2x[1,1]^3+x[2,1]; DA.Weight(F); 7 -------------------------------