Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 7ebd25ac536d248d499a3ce2acda963a > files > 3917

Macaulay2-1.3.1-8.fc15.i686.rpm

<?xml version="1.0" encoding="utf-8" ?>  <!-- for emacs: -*- coding: utf-8 -*- -->
<!-- Apache may like this line in the file .htaccess: AddCharset utf-8 .html -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"	 "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg-flat.dtd" >
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head><title>Weyl algebras</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="_associative_spalgebras.html">next</a> | <a href="_tensor_spproducts_spof_springs.html">previous</a> | <a href="_associative_spalgebras.html">forward</a> | <a href="_tensor_spproducts_spof_springs.html">backward</a> | <a href="_rings.html">up</a> | <a href="index.html">top</a> | <a href="master.html">index</a> | <a href="toc.html">toc</a> | <a href="http://www.math.uiuc.edu/Macaulay2/">Macaulay2 web site</a></div>

    </td>
  </tr>
</table>
<div><a href="index.html" title="">Macaulay2Doc</a> > <a href="_rings.html" title="">rings</a> > <a href="___Weyl_spalgebras.html" title="">Weyl algebras</a></div>
<hr/>
<div><h1>Weyl algebras</h1>
<div>A Weyl algebra is the non-commutative algebra of algebraic differential operators on a polynomial ring.  To each variable <tt>x</tt> corresponds the operator <tt>dx</tt> that differentiates with respect to that variable.  The evident commutation relation takes the form <tt>dx*x == x*dx + 1</tt>.<p/>
We can give any names we like to the variables in a Weyl algebra, provided we specify the correspondence between the variables and the derivatives, with the <a href="___Weyl__Algebra.html" title="name for an optional argument">WeylAlgebra</a> option, as follows.<p/>
<table class="examples"><tr><td><pre>i1 : R = QQ[x,y,dx,dy,t,WeylAlgebra => {x=>dx, y=>dy}]

o1 = R

o1 : PolynomialRing</pre>
</td></tr>
<tr><td><pre>i2 : dx*dy*x*y

o2 = x*y*dx*dy + x*dx + y*dy + 1

o2 : R</pre>
</td></tr>
<tr><td><pre>i3 : dx*x^5

      5       4
o3 = x dx + 5x

o3 : R</pre>
</td></tr>
</table>
All modules over Weyl algebras are, in Macaulay2, right modules.  This means that multiplication of matrices is from the opposite side:<table class="examples"><tr><td><pre>i4 : dx*x

o4 = x*dx + 1

o4 : R</pre>
</td></tr>
<tr><td><pre>i5 : matrix{{dx}} * matrix{{x}}

o5 = | xdx |

             1       1
o5 : Matrix R  &lt;--- R</pre>
</td></tr>
</table>
All Gröbner basis and related computations work over this ring.  For an extensive collection of D-module routines (A D-module is a module over a Weyl algebra), see <a href="../../Dmodules/html/index.html" title="algorithms for D-modules">Dmodules</a>.</div>
</div>
</body>
</html>