|  |  D.15.2.2 monomials Procedure from libraryarnold.lib(see  arnold_lib).
 
Example:Usage:
monomials(f); f poly
Return:
the set of monomials of f as a list
 |  | LIB "arnold.lib";
ring R=0,(x,y),ds;
poly f = 2*x^2+5*x*y+7*x^7;
monomials(f);
==> [1]:
==>    x2
==> [2]:
==>    xy
==> [3]:
==>    x7
 | 
 
 |