up
previous
next
Log
Syntax
Log(F:POLY):LIST
Summary
the list of exponents of the leading term of a polynomial
Description
This function returns the list of exponents of the leading term of F.
example
Use R ::= Q[x,y,z];
F := x^3y^2z^5+x^2y+xz^4;
Log(F);
[3, 2, 5]
-------------------------------
See Also