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

From ApCoCoAWiki
m (insert version info)
m (replaced <quotes> tag by real quotes)
 
Line 15: Line 15:
 
<example>
 
<example>
 
Use QQ[x[1..2,0..20]];
 
Use QQ[x[1..2,0..20]];
Use QQ[x[1..2,0..20]], Ord(DA.DiffTO(<quotes>Lex</quotes>));
+
Use QQ[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];

Latest revision as of 13:29, 29 October 2020

This article is about a function from ApCoCoA-1.

DA.InitialOfDer

Computes the initial wrt. a given derivative.

Syntax

DA.InitialOfDer(F:POLY, X:INDET):POLY

Description

DA.InitialOfDer returns the polynomial leading coefficient of polynomial F regarded as polynomial in the derivative X.

  • @param F A differential polynomial.

  • @param X A indeterminate.

  • @return Initial of F wrt. X.

Example

Use QQ[x[1..2,0..20]];
Use QQ[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.InitialOfDer(F, x[1,2]);
-------------------------------
x[2,2]^2
-------------------------------

DA.Initial

DA.DiffTO