Macaulay2 » Documentation
Packages » GeometricDecomposability > isLexCompatiblyGVD
next | previous | forward | backward | up | index | toc

isLexCompatiblyGVD -- checks whether an ideal is <-compatibly geometrically vertex decomposable for a given order

Synopsis

Description

An ideal $I$ is $<$-compatibly geometrically vertex decomposable if there exists a (lexicographic) order $<$ such that $I$ is geometrically vertex decomposable and for every (one-step) geometric vertex decomposition, we pick $y$ to be the most expensive indeterminate remaining in the ideal according to $<$ [KR, Definition 2.11]. For the definition of a (one-step) geometric vertex decomposition, see oneStepGVD.

This method returns a Boolean value depending upon whether or not the given ideal is $<$-compatibly geometrically vertex decomposable with respect to a given ordering lex ordering of the indeterminates. Compare this function to the command findLexCompatiblyGVDOrders which checks all possible lex orders of the variables in order to find at least one $<$-compatibly lex order.

Below is [KR, Example 2.16], which is an example of an ideal that is not $<$-compatibly geometrically vertex decomposable. Any permutation of the variables we give in this example will result in false.

i1 : R = QQ[x,y,z,w,r,s];
i2 : I = ideal(y*(z*s - x^2), y*w*r, w*r*(z^2 + z*x + w*r + s^2));

o2 : Ideal of R
i3 : isLexCompatiblyGVD(I, {x,y,z,w,r,s})

o3 = false
i4 : isLexCompatiblyGVD(I, {s,x,w,y,r,z}, Verbose=>true)
I = ideal(-x^2*y+y*z*s,y*w*r,x*z*w*r+z^2*w*r+w^2*r^2+w*r*s^2)
-- decomposing with respect to s
Warning: not a valid geometric vertex decomposition

o4 = false

References

[KR] Patricia Klein and Jenna Rajchgot. Geometric vertex decomposition and liaison. Forum Math. Sigma, 9 (2021) e70:1-23.

See also

Ways to use isLexCompatiblyGVD :

For the programmer

The object isLexCompatiblyGVD is a method function with options.