leadTerm f -- return the leading term of the polynomial or
vector f.
leadTerm m -- return the matrix of initial forms of
the columns of the matrix m.
leadTerm(i,m) -- return the matrix of polynomials formed
by retaining those monomials of each entry which agree on the first i
weight vectors.
i1 : R = ZZ/101[a..d] |
i2 : leadTerm (3 + 8*a^2*b + 7*b*c^2) |
i3 : leadTerm matrix {{a,b},{c,d}} |
i4 : leadTerm matrix {{c,d},{a,b}} |
See also:
Ways to use leadTerm :