Category:ApCoCoA-1:Package weyl

From ApCoCoAWiki

The package `Weyl' is designed to perform various computations in the Weyl algebras. In particular, one can compute a left Groebner basis of the left ideals in Weyl algebras.

Recall that the dimensional Weyl algebra over a field , is a non-commutative free associative algebra modulo the following commutation relations:

for

and

where . From the last relation we have , i.e. is non-commutative. If is a field of characteristic 0 then is simple. For the positive characteristic there exist non-trivial two-sided ideals of . The package Weyl also provides a function for computing the reduced two-sided Groebner basis of these two-sided ideals.

may be considered as a ring of differential operators with polynomial coefficients in and denotes the differentiation with respect to . According to the commutation relation, elements of can be represented as a -linear combination of monomials . Such a representation of an element of is called the Standard Form of .

In Weyl package, we represent such monomial as x[1]^i[1]*...*x[n]^i[n]*y[1]^j[1]*...*y[n]^j[n] like in the case of commutative polynomial. That is, Weyl Polynomials of that are in the Standard Form are given as polynomials in ApCoCoA. However, Weyl polynomials that are not in their standard form should have to be first converted into the standard form using the function Weyl.WStandardForm(L). Where L is a list of Lists. See below for the description of the use of this function.

Addition and subtraction can be done by +, -, but because of the non-commutativity of the multiplication is performed by calling the function Weyl.WMul(). Hence in Weyl package, one can work with the Weyl algebra by using the ApCoCoA ring environment for the commutative polynomial rings in 2n indeterminates over the field or where is a prime number.

Note:

1) Due to commutativity of ApCoCoA, we have yx=xy. Therefore, for every function in the package, it is not possible to check if the input polynomial F is in the standard form or not. Thus if any of the monomial in F is of the form y^A*x^B then 1st use WStandardForm(L) to convert F into its standard form (here L is a list of lists representing monomials in F).

2) To make all functions in Weyl package different from functions in other packages of ApCoCoA, some of the function names in the Weyl package starts with the letter 'W'. For example, WStandardlForm(), WGB(), etc.