Sophie

Sophie

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

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>isSyzygy -- Tests if a module is a d-th syzygy</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div>next | <a href="_evans__Griffith.html">previous</a> | forward | <a href="_evans__Griffith.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>isSyzygy -- Tests if a module is a d-th syzygy</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>b = isSyzygy(M,d)</tt></div>
</dd></dl>
</div>
</li>
<li><div class="single">Inputs:<ul><li><span><tt>M</tt>, <span>a <a href="../../Macaulay2Doc/html/___Module.html">module</a></span>, over a polynomial ring.</span></li>
<li><span><tt>d</tt>, <span>an <a href="../../Macaulay2Doc/html/___Z__Z.html">integer</a></span>, positive</span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><tt>b</tt>, <span>a <a href="../../Macaulay2Doc/html/___Boolean.html">Boolean value</a></span>, returns <tt>true</tt> if M is a d-th syzygy, and <tt>false</tt> otherwise.</span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div><div>This algorithm is based upon the methods described in the book of Evans and Griffith (<em>Syzygies</em>. London Mathematical Society Lecture Note Series, 106. Cambridge University Press, Cambridge, 1985.)</div>
<table class="examples"><tr><td><pre>i1 : kk=ZZ/32003

o1 = kk

o1 : QuotientRing</pre>
</td></tr>
<tr><td><pre>i2 : S=kk[a..d]

o2 = S

o2 : PolynomialRing</pre>
</td></tr>
<tr><td><pre>i3 : F=res (ideal vars S)^2

      1      10      20      15      4
o3 = S  &lt;-- S   &lt;-- S   &lt;-- S   &lt;-- S  &lt;-- 0
                                            
     0      1       2       3       4      5

o3 : ChainComplex</pre>
</td></tr>
</table>
<div><b>NOTE:</b>  We are viewing a syzygy module as a cokernel of an appropriate map.</div>
<table class="examples"><tr><td><pre>i4 : isSyzygy(coker F.dd_3,3)  -- the cokernel defined by the 3rd map is not a 3rd syzygy

o4 = false</pre>
</td></tr>
<tr><td><pre>i5 : isSyzygy(coker F.dd_4,3)  -- the cokernel defined by the 4th map is a 3rd syzygy

o5 = true</pre>
</td></tr>
</table>
<p>This function is called within <a href="_evans__Griffith.html" title="Reduces the rank of a syzygy">evansGriffith</a>.</p>
<div/>
</div>
</div>
<div class="waystouse"><h2>Ways to use <tt>isSyzygy</tt> :</h2>
<ul><li>isSyzygy(Module,ZZ)</li>
</ul>
</div>
</div>
</body>
</html>