Sophie

Sophie

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

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>factorModuleBasis -- enumerate standard monomials</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="_inv__Noether__Normalization.html">next</a> | <a href="___Factor__Module__Basis.html">previous</a> | <a href="_inv__Noether__Normalization.html">forward</a> | <a href="___Factor__Module__Basis.html">backward</a> | up | <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>
<hr/>
<div><h1>factorModuleBasis -- enumerate standard monomials</h1>
<div class="single"><h2>Synopsis</h2>
<ul><li><div class="list"><dl class="element"><dt class="heading">Usage: </dt><dd class="value"><div><tt>F = factorModuleBasis(J)</tt></div>
</dd></dl>
</div>
</li>
<li><div class="single">Inputs:<ul><li><span><tt>J</tt>, <span>an object of class <a href="___Involutive__Basis.html" title="the class of all involutive bases">InvolutiveBasis</a></span></span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><tt>F</tt>, <span>an object of class <a href="___Factor__Module__Basis.html" title="the class of all factor module bases">FactorModuleBasis</a></span>, a partition of the set of monomials that are not leading monomial of any element of the module spanned by J, into monomial cones</span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div><p>The result represents a collection of finitely many cones of monomials, each cone being the set of multiples of a certain monomial by all monomials in certain variables; the generating monomials are accessed by <a href="_basis__Elements.html" title="extract the matrix of generators from an involutive basis or factor module basis">basisElements</a>; the sets of variables for each cone are obtained from <a href="_mult__Var.html" title="extract the sets of multiplicative variables for each generator (in several contexts)">multVar</a>.</p>
<table class="examples"><tr><td><pre>i1 : R = QQ[x,y,z];</pre>
</td></tr>
<tr><td><pre>i2 : M = matrix {{x*y,x^3*z}};

             1       2
o2 : Matrix R  &lt;--- R</pre>
</td></tr>
<tr><td><pre>i3 : J = janetBasis M;</pre>
</td></tr>
<tr><td><pre>i4 : F = factorModuleBasis J

     +--+------+
o4 = |1 |{z, y}|
     +--+------+
     |x |{z}   |
     +--+------+
     | 2|      |
     |x |{z}   |
     +--+------+
     | 3|      |
     |x |{x}   |
     +--+------+

o4 : FactorModuleBasis</pre>
</td></tr>
<tr><td><pre>i5 : basisElements F

o5 = | 1 x x2 x3 |

             1       4
o5 : Matrix R  &lt;--- R</pre>
</td></tr>
<tr><td><pre>i6 : multVar F

o6 = {set {y, z}, set {z}, set {z}, set {x}}

o6 : List</pre>
</td></tr>
</table>
<table class="examples"><tr><td><pre>i7 : R = QQ[x,y];</pre>
</td></tr>
<tr><td><pre>i8 : M = matrix {{x*y-y^3, x*y^2, x*y-x}, {x, y^2, x}};

             2       3
o8 : Matrix R  &lt;--- R</pre>
</td></tr>
<tr><td><pre>i9 : J = janetBasis M

     +--------------+------+
o9 = || y3-x |      |{y}   |
     || 0    |      |      |
     +--------------+------+
     || xy-x |      |{y}   |
     || x    |      |      |
     +--------------+------+
     || x2y-x2 |    |{y}   |
     || x2     |    |      |
     +--------------+------+
     || x3 |        |{y, x}|
     || x2 |        |      |
     +--------------+------+
     || -x      |   |{y}   |
     || xy-y2+x |   |      |
     +--------------+------+
     || x2 |        |{y}   |
     || y3 |        |      |
     +--------------+------+
     || -x2        ||{y}   |
     || x2y-xy2+x2 ||      |
     +--------------+------+
     || 0         | |{y, x}|
     || x3+2x2+y2 | |      |
     +--------------+------+

o9 : InvolutiveBasis</pre>
</td></tr>
<tr><td><pre>i10 : F = factorModuleBasis J

      +------+--+
o10 = || 1 | |{}|
      || 0 | |  |
      +------+--+
      || y | |{}|
      || 0 | |  |
      +------+--+
      || y2 ||{}|
      || 0  ||  |
      +------+--+
      || x | |{}|
      || 0 | |  |
      +------+--+
      || x2 ||{}|
      || 0  ||  |
      +------+--+
      || 0 | |{}|
      || 1 | |  |
      +------+--+
      || 0 | |{}|
      || y | |  |
      +------+--+
      || 0  ||{}|
      || y2 ||  |
      +------+--+
      || 0 | |{}|
      || x | |  |
      +------+--+
      || 0  ||{}|
      || x2 ||  |
      +------+--+

o10 : FactorModuleBasis</pre>
</td></tr>
<tr><td><pre>i11 : basisElements F

o11 = | 1 y y2 x x2 0 0 0  0 0  |
      | 0 0 0  0 0  1 y y2 x x2 |

              2       10
o11 : Matrix R  &lt;--- R</pre>
</td></tr>
<tr><td><pre>i12 : multVar F

o12 = {set {}, set {}, set {}, set {}, set {}, set {}, set {}, set {}, set
      -----------------------------------------------------------------------
      {}, set {}}

o12 : List</pre>
</td></tr>
</table>
</div>
</div>
<div class="single"><h2>See also</h2>
<ul><li><span><a href="_janet__Basis.html" title="compute Janet basis for an ideal or a submodule of a free module">janetBasis</a> -- compute Janet basis for an ideal or a submodule of a free module</span></li>
<li><span><a href="_basis__Elements.html" title="extract the matrix of generators from an involutive basis or factor module basis">basisElements</a> -- extract the matrix of generators from an involutive basis or factor module basis</span></li>
<li><span><a href="_mult__Var.html" title="extract the sets of multiplicative variables for each generator (in several contexts)">multVar</a> -- extract the sets of multiplicative variables for each generator (in several contexts)</span></li>
</ul>
</div>
<div class="waystouse"><h2>Ways to use <tt>factorModuleBasis</tt> :</h2>
<ul><li>factorModuleBasis(InvolutiveBasis)</li>
</ul>
</div>
</div>
</body>
</html>