CoCoA:LPP

From ApCoCoAWiki
Revision as of 10:02, 24 October 2007 by XMLBot (talk | contribs) (pushing XML rev. 1.46, again)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

LPP

the leading power-product of a polynomial or vector

Description

This function returns the leading power-product of P.

Example

  Use R ::= Q[x,y];
  LPP(3x^2y+y);  -- LPP is the same as LT for polynomials
x^2y
-------------------------------
  LPP(Vector(2x,y));
x
-------------------------------
  LT(Vector(2x,y));  -- Note the difference between LPP and LT
                     -- for vectors.
Vector(x, 0)
-------------------------------

Syntax

LPP(P:POLY or VECTOR):POLY

LC

LM

LT

   <type>polynomial</type>
   <type>vector</type>