standardForm f -- converts a polynomial or monomial to a form involving hash tables.
A polynomial is represented by hash tables in which the keys are hash tables representing the monomials and the values are the coefficients.
The monomials themselves are represented by hash tables in which the keys are the variables and the values are the corresponding exponents.
i1 : R = ZZ/101[x,y,z]; |
i2 : standardForm (x^2 - 7 + x*y*z^11 + y) |
Ways to use standardForm :