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

From ApCoCoAWiki
(New page: <command> <title>diffalg.DiffOrd</title> <short_description>Computes the differential order of a differential polynomial.</short_description> <syntax> $diffalg.DiffOrd(F:POLY):INT ...)
 
m (insert version info)
 
(8 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
{{Version|1}}
 
<command>
 
<command>
     <title>diffalg.DiffOrd</title>
+
     <title>DA.DiffOrd</title>
 
     <short_description>Computes the differential order of a differential polynomial.</short_description>
 
     <short_description>Computes the differential order of a differential polynomial.</short_description>
 
<syntax>
 
<syntax>
$diffalg.DiffOrd(F:POLY):INT
+
DA.DiffOrd(F:POLY):INT
 
</syntax>
 
</syntax>
 
<description>
 
<description>
Computes the differential order of the differential polynomial F. The differential order is the maximum order of any derivative occuring in the terms of F.
+
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.
 +
<itemize>
 +
<item>@param <em>F</em> A differential polynomial.</item>
 +
<item>@return Order of F.</item>
 +
</itemize>
 
<example>
 
<example>
Use Q[x[1..2,0..20]];
+
Use QQ[x[1..2,0..20]];
 
F:=x[1,4]^2-x[2,4]^3;
 
F:=x[1,4]^2-x[2,4]^3;
$diffalg.DiffOrd(F);
+
DA.DiffOrd(F);
 
-------------------------------
 
-------------------------------
 
4
 
4
Line 16: Line 21:
 
</example>
 
</example>
 
</description>
 
</description>
<wiki-category>Package_diffalg</wiki-category>
+
<types>
 +
<type>polynomial</type>
 +
</types>
 +
<key>DiffOrd</key>
 +
<key>DA.DiffOrd</key>
 +
<key>diffalg.DiffOrd</key>
 +
<key>differential.DiffOrd</key>
 +
<wiki-category>ApCoCoA-1:Package_diffalg</wiki-category>
 
</command>
 
</command>

Latest revision as of 09:57, 7 October 2020

This article is about a function from ApCoCoA-1.

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