Difference between revisions of "ApCoCoA-1:DA.Weight"

From ApCoCoAWiki
(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...)
(No difference)

Revision as of 10:10, 8 December 2008

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
-------------------------------