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

normalElements -- Finds normal elements

Synopsis

Description

Let b_1,...,b_n be a monomial basis for an NCRing A in degree d. We assume A is generated by elements a_1,...,a_k of degree 1. A homogeneous element r in A is normal if a_i*r is in the span of the r*a_j for all i.

Using the input symbols x and y, we define the "normal variety" to be the set of common solutions to the equations x_j*a_i*b_j = y_j1*b_j*a_1+...+y_jk*b_j*a_k for all i and j. Saturating the ideal at each x_i we extract polynomial equations the x_i must satisfy for the element x_1*b_1+...+x_n*b_n to be normal in A.

Before computing the normal variety, this method checks for normal monomials in degree n. These are returned first to reduce the complexity of the problem. Then the method computes the variety and returns its components. The equations the method returns are given in terms of the indexed variable x. The indices are basis monomials in degree n.

The following example is a 3-dimensional Sklyanin algebra.

i1 : B = threeDimSklyanin(QQ,{1,1,-1},{x,y,z})
--Calling Bergman for NCGB calculation.
Complete!

o1 = B

o1 : NCQuotientRing
i2 : basis(2,B)

o2 = | x^2 y*x x*y y^2 x*z y*z |

o2 : NCMatrix
i3 : normalElements(B,2,r,s)
Normal monomials of degree 2:
 2
x
 2
y
Components of the normal variety, excluding normal monomials:

o3 = {| r_(y*z) r_(x*z) r_(y*x)-r_(x*y) |}

o3 : List

The normal elements in degree 2 are x^2, y^2 and z^2. The basis calculation shows x^2 and y^2 are normal forms in B. The normalElements method first checks all basis monomials using isNormal. In this case it finds x^2 and y^2 are normal and returns this information. However, z^2 is not a normal form expression. The normal form of z^2 is x*y+y*x. In the second phase of the calculation, the method returns generators of the ideal describing the normal elements (excluding the normal monomials). We see the coefficients of basis monomials y*z and x*z must be 0 and the coefficients of x*y and y*x must be equal. The last equation identifies z^2 = x*y+y*x as a normal element of degree 2.

i4 : normalElements(B,3,t,u)
Normal monomials of degree 3:
none
Components of the normal variety, excluding normal monomials:

o4 = {| t_(y^2*z) t_(y*x*z)+t_(x*y*z) t_(x^2*z) t_(y^3)-t_(x*y*z) t_(x*y^2)
     ------------------------------------------------------------------------
     t_(y*x*y) t_(x^2*y) t_(x*y*x) t_(x^3)+t_(x*y*z) |}

o4 : List
i5 : g = -y^3-x*y*z+y*x*z+x^3

       3          3
o5 = -y +yxz-xyz+x

o5 : B
i6 : isCentral g

o6 = true

In degree 3, there are no normal monomials. The function returns several equations which determine the only normal element of degree 3 (up to scaling) is the central element g.

Ways to use normalElements :

For the programmer

The object normalElements is a method function.