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

From ApCoCoAWiki
m (insert version info)
m (replaced <quotes> tag by real quotes)
 
Line 15: Line 15:
 
<example>
 
<example>
 
Use QQ[x[1..1,0..20]];
 
Use QQ[x[1..1,0..20]];
Use QQ[x[1..1,0..20]], Ord(DA.DiffTO(<quotes>Lex</quotes>));
+
Use QQ[x[1..1,0..20]], Ord(DA.DiffTO("Lex"));
 
DA.PseudoReduce(x[1,1]^4+x[1,0], [x[1,0]^2+3x[1,0]]);
 
DA.PseudoReduce(x[1,1]^4+x[1,0], [x[1,0]^2+3x[1,0]]);
 
-------------------------------
 
-------------------------------

Latest revision as of 13:30, 29 October 2020

This article is about a function from ApCoCoA-1.

DA.PseudoReduce

Computes a pseudo normal form of a differential polynomial.

Syntax

DA.PseudoReduce(F:POLY, G:LIST):POLY

Description

DA.PseudoReduce computes the pseudo normal form of the differential polynomial F wrt. the list G of differential polynomials.

  • @param F Differential polynomial for which to compute the pseudo normal.

  • @param G List of differential polynomials wrt. which the normal form of F has to be computed.

  • @return The pseudo normal form of F wrt. G.

Example

Use QQ[x[1..1,0..20]];
Use QQ[x[1..1,0..20]], Ord(DA.DiffTO("Lex"));
DA.PseudoReduce(x[1,1]^4+x[1,0], [x[1,0]^2+3x[1,0]]);
-------------------------------
-3x[1,0]
-------------------------------

DA.DiffTO