Category:ApCoCoA-1:Package weyl: Difference between revisions

From ApCoCoAWiki
Ali (talk | contribs)
mNo edit summary
m Bot: Replacing category ApCoCoA Manual with ApCoCoA-1 Manual
Line 40: Line 40:
letter 'W'. For example, WStandardlForm(), WGB(), etc.
letter 'W'. For example, WStandardlForm(), WGB(), etc.


[[Category:ApCoCoA_Manual]]
[[Category:ApCoCoA-1 Manual]]

Revision as of 14:20, 2 October 2020

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 n dimensional Weyl algebra An=K<x1,...,xn,y1,...,yn> over a field K, is a non-commutative free associative algebra modulo the following commutation relations:

[xi,xj]=0,[yi,yj]=0,[yi,xj]=0 for ij,

and

[yi,xi]=1,

where [a,b]=abba. From the last relation we have yixi=xiyi+1, i.e. An(K) is non-commutative. If K is a field of characteristic 0 then An(K) is simple. For the positive characteristic there exist non-trivial two-sided ideals of An(K). The package Weyl also provides a function for computing the reduced two-sided Groebner basis of these two-sided ideals.

An(K) may be considered as a ring of differential operators with polynomial coefficients in K[x1,..,xn] and yi denotes the differentiation with respect to xi. According to the commutation relation, elements of An(K) can be represented as a K-linear combination of monomials x1i1...xniny1j1...ynjn. Such a representation of an element f of An(K) is called the Standard Form of f.

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 An(K) 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 An(K), 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 /p where p 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.