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

From ApCoCoAWiki
m (Bot: Category moved)
m (fixed links to namespace ApCoCoA)
Line 6: Line 6:
 
</syntax>
 
</syntax>
 
<description>
 
<description>
<ref>DA.LD</ref> computes the leading derivative of polynomial <tt>F</tt> wrt. the current differential term ordering, or the hereby induced ranking respectively.
+
<ref>ApCoCoA-1:DA.LD|DA.LD</ref> computes the leading derivative of polynomial <tt>F</tt> wrt. the current differential term ordering, or the hereby induced ranking respectively.
 
<itemize>
 
<itemize>
 
<item>@param <em>F</em> A differential polynomial.</item>
 
<item>@param <em>F</em> A differential polynomial.</item>
Line 24: Line 24:
 
<type>polynomial</type>
 
<type>polynomial</type>
 
</types>
 
</types>
<see>DA.DiffTO</see>
+
<see>ApCoCoA-1:DA.DiffTO|DA.DiffTO</see>
  
 
<key>LD</key>
 
<key>LD</key>

Revision as of 08:10, 7 October 2020

DA.LD

Computes the leading derivative of a differential polynomial.

Syntax

DA.LD(F:POLY):POLY

Description

DA.LD computes the leading derivative of polynomial F wrt. the current differential term ordering, or the hereby induced ranking respectively.

  • @param F A differential polynomial.

  • @return The leading derivative of F.

Example

Use QQ[x[1..2,0..20]];
Use QQ[x[1..2,0..20]], Ord(DA.DiffTO(<quotes>DegOrd</quotes>));
F:=x[1,2]^2*x[1,1]-x[2,4]^3;
DA.LD(F);
-------------------------------
x[2,4]
-------------------------------

DA.DiffTO