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

From ApCoCoAWiki
(Corrected example.)
Line 1: Line 1:
 
<command>
 
<command>
 
     <title>DA.DiffOrd</title>
 
     <title>DA.DiffOrd</title>
     <short_description>Compute the differential order of a differential polynomial.</short_description>
+
     <short_description>Computes the differential order of a differential polynomial.</short_description>
 
<syntax>
 
<syntax>
 
DA.DiffOrd(F:POLY):INT
 
DA.DiffOrd(F:POLY):INT

Revision as of 13:14, 28 April 2009

DA.DiffOrd

Computes the differential order of a differential polynomial.

Syntax

DA.DiffOrd(F:POLY):INT

Description

Computes the differential order of the differential polynomial F. The differential order is the maximum order of the derivatives occuring in the terms of F.

  • @param F A differential polynomial.

  • @return Order of F.

Example

Use QQ[x[1..2,0..20]];
F:=x[1,4]^2-x[2,4]^3;
DA.DiffOrd(F);
-------------------------------
4
-------------------------------