Sophie

Sophie

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

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>janetResolution -- construct a free resolution for a given ideal or module using Janet bases</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="_mult__Var.html">next</a> | <a href="_janet__Mult__Var.html">previous</a> | <a href="_mult__Var.html">forward</a> | <a href="_janet__Mult__Var.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>janetResolution -- construct a free resolution for a given ideal or module using Janet bases</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>C = janetResolution M</tt></div>
</dd></dl>
</div>
</li>
<li><div class="single">Inputs:<ul><li><span>M, <span>a <a href="../../Macaulay2Doc/html/___Matrix.html">matrix</a></span> or <span>an <a href="../../Macaulay2Doc/html/___Ideal.html">ideal</a></span> or <span>a <a href="../../Macaulay2Doc/html/___Module.html">module</a></span></span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><tt>C</tt>, <span>a <a href="../../Macaulay2Doc/html/___Chain__Complex.html">chain complex</a></span>, a (non-minimal) free resolution of (the module generated by) M</span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div><p>The computed Janet basis for each homological degree can be extracted with <a href="_janet__Basis.html" title="compute Janet basis for an ideal or a submodule of a free module">janetBasis</a>.</p>
<p>The sets of multiplicative variables can also be extracted from the Janet basis in each homological degree with <a href="_mult__Var.html" title="extract the sets of multiplicative variables for each generator (in several contexts)">multVar</a>.</p>
<p>Note that janetResolution can be combined with <a href="../../Macaulay2Doc/html/_resolution.html" title="projective resolution">resolution</a>: when providing the option 'Strategy => Involutive' to <a href="../../Macaulay2Doc/html/_resolution.html" title="projective resolution">resolution</a>, janetResolution constructs the resolution.</p>
<table class="examples"><tr><td><pre>i1 : R = QQ[x,y,z];</pre>
</td></tr>
<tr><td><pre>i2 : M = matrix {{x,y,z}};

             1       3
o2 : Matrix R  &lt;--- R</pre>
</td></tr>
<tr><td><pre>i3 : C = janetResolution M

      1      3      3      1
o3 = R  &lt;-- R  &lt;-- R  &lt;-- R  &lt;-- 0
                                  
     0      1      2      3      4

o3 : ChainComplex</pre>
</td></tr>
<tr><td><pre>i4 : janetBasis(C, 2)

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

o4 : InvolutiveBasis</pre>
</td></tr>
<tr><td><pre>i5 : multVar(C, 2)

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

o5 : List</pre>
</td></tr>
</table>
<table class="examples"><tr><td><pre>i6 : R = QQ[x,y,z];</pre>
</td></tr>
<tr><td><pre>i7 : I = ideal(x,y,z);

o7 : Ideal of R</pre>
</td></tr>
<tr><td><pre>i8 : res(I, Strategy => Involutive)

      1      3      3      1
o8 = R  &lt;-- R  &lt;-- R  &lt;-- R  &lt;-- 0
                                  
     0      1      2      3      4

o8 : ChainComplex</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="_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>
<li><span><a href="_inv__Syzygies.html" title="compute involutive basis of syzygies">invSyzygies</a> -- compute involutive basis of syzygies</span></li>
</ul>
</div>
<div class="waystouse"><h2>Ways to use <tt>janetResolution</tt> :</h2>
<ul><li>janetResolution(Ideal)</li>
<li>janetResolution(InvolutiveBasis)</li>
<li>janetResolution(Matrix)</li>
<li>janetResolution(Module)</li>
</ul>
</div>
</div>
</body>
</html>