Synopsis:
A standard pair of a monomial ideal I is a pair {xa,l} where m is a monomial and l is a subset of the variables subject to the following three conditions:
i1 : QQ[x,y,z,w]; |
i2 : I = monomialIdeal(y^2, y*w, y*z, x*w^2) |
i3 : standardPairs I |
The standard pairs are computed with algorithm 3.2.5 in Groebner Deformations of Hypergeometric Differential Equations, by Mutsumi Saito, Bernd Sturmfels and Nobuki Takayama; Algorithms and Computation in Mathematics, Volume 6, Springer-Verlag, 2000.
Implemented by Greg Smith.
Code:
-- ../../../Macaulay2/m2/monideal.m2:347 standardPairs MonomialIdeal := (I) -> standardPairs(I,Delta I)