ApCoCoA-1:DA.Initial: Difference between revisions
From ApCoCoAWiki
S schuster (talk | contribs) No edit summary |
S schuster (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
<command> | <command> | ||
<title> | <title>DA.Initial</title> | ||
<short_description>the initial of a differential polynomial</short_description> | <short_description>Computes the initial of a differential polynomial.</short_description> | ||
<syntax> | <syntax> | ||
DA.Initial(F:POLY):POLY | |||
</syntax> | </syntax> | ||
<description> | <description> | ||
Initial returns the initial of polynomial F wrt. the current differential term ordering, or the hereby induced ranking, respectively. | Initial returns the initial of polynomial F wrt. the current differential term ordering, or the hereby induced ranking, respectively. | ||
<itemize> | |||
<item>@param F A differential polynomial.</item> | |||
<item>@return The initial of F.</item> | |||
</itemize> | |||
<example> | <example> | ||
Use Q[x[1..2,0..20]]; | Use Q[x[1..2,0..20]]; | ||
Use Q[x[1..2,0..20]], Ord( | Use Q[x[1..2,0..20]], Ord(DA.DiffTO("Lex")); | ||
F:=x[1,2]^3x[2,2]^2 + x[1,1]^3x[2,2]^2 + 1/4x[1,2]; | F:=x[1,2]^3x[2,2]^2 + x[1,1]^3x[2,2]^2 + 1/4x[1,2]; | ||
DA.LD(F); | |||
------------------------------- | ------------------------------- | ||
x[2,2] | x[2,2] | ||
------------------------------- | ------------------------------- | ||
DA.LPot(F); | |||
------------------------------- | ------------------------------- | ||
x[2,2]^2 | x[2,2]^2 | ||
------------------------------- | ------------------------------- | ||
DA.Initial(F); | |||
------------------------------- | ------------------------------- | ||
x[1,2]^3 + x[1,1]^3 | x[1,2]^3 + x[1,1]^3 | ||
Line 29: | Line 31: | ||
</example> | </example> | ||
</description> | </description> | ||
<see> | <types> | ||
<see> | <type>polynomial</type> | ||
<see> | </types> | ||
<see>DA.LD</see> | |||
<see>DA.LPot</see> | |||
<see>DA.DiffTO</see> | |||
<key>Initial</key> | |||
<key>DA.Initial</key> | |||
<key>diffalg.Initial</key> | |||
<key>differential.Initial</key> | |||
<wiki-category>Package_diffalg</wiki-category> | <wiki-category>Package_diffalg</wiki-category> | ||
</command> | </command> |
Revision as of 13:27, 22 April 2009
DA.Initial
Computes the initial of a differential polynomial.
Syntax
DA.Initial(F:POLY):POLY
Description
Initial returns the initial of polynomial F wrt. the current differential term ordering, or the hereby induced ranking, respectively.
@param F A differential polynomial.
@return The initial of F.
Example
Use Q[x[1..2,0..20]]; Use Q[x[1..2,0..20]], Ord(DA.DiffTO("Lex")); F:=x[1,2]^3x[2,2]^2 + x[1,1]^3x[2,2]^2 + 1/4x[1,2]; DA.LD(F); ------------------------------- x[2,2] ------------------------------- DA.LPot(F); ------------------------------- x[2,2]^2 ------------------------------- DA.Initial(F); ------------------------------- x[1,2]^3 + x[1,1]^3 -------------------------------