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...)
 
Line 1: Line 1:
 
<command>
 
<command>
 
     <title>diffalg.Weight</title>
 
     <title>diffalg.Weight</title>
     <short_description>computes the weight of a differential polynomial</short_description>
+
     <short_description>the weight of a differential polynomial</short_description>
 
<syntax>
 
<syntax>
 
$diffalg.Weight(F:POLY):INT
 
$diffalg.Weight(F:POLY):INT

Revision as of 09:13, 22 December 2008

diffalg.Weight

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