Macaulay2 » Documentation
Packages » NCAlgebra :: quadraticClosure
next | previous | forward | backward | up | index | toc

quadraticClosure -- Creates the subideal generated by quadratic elements of a given ideal

Synopsis

Description

The quadratic closure of an NCIdeal in an NCPolynomialRing is the NCIdeal generated by the elements of degree at most 2. Commonly used with Link to homogDual in the case where the ideal generators are homogeneous of degree greater than 1.

If the input is an NCQuotientRing, the method is applied to the defining ideal of the quotient ring and the corresponding quotient ring is returned. At the moment, quotients of quotients is not implemented, and the ambient ring of the input NCQuotientRing is assumed to be an NCPolynomialRing.

This method is commonly used in conjunction with homogDual.

i1 : A = QQ{x,y,z}

o1 = A

o1 : NCPolynomialRing
i2 : I = ncIdeal{x*z-z*x, y*z, x*y^2-y^2*x, x^3*y-y*x^3}

                                    2    2     3  3
o2 = Two-sided ideal {-zx+xz, yz, -y x+xy , -yx +x y}

o2 : NCIdeal
i3 : J = quadraticClosure I

o3 = Two-sided ideal {-zx+xz, yz}

o3 : NCIdeal

See also

Ways to use quadraticClosure :

For the programmer

The object quadraticClosure is a method function.