Sophie

Sophie

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

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>pureCharFree -- first betti number of specific exact complex</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="_pure__Cohomology__Table_lp__List_cm__Z__Z_cm__Z__Z_rp.html">next</a> | <a href="_pure__Betti__Diagram_lp__List_rp.html">previous</a> | <a href="_pure__Cohomology__Table_lp__List_cm__Z__Z_cm__Z__Z_rp.html">forward</a> | <a href="_pure__Betti__Diagram_lp__List_rp.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>pureCharFree -- first betti number of specific exact complex</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>pureCharFree</tt></div>
</dd></dl>
</div>
</li>
<li><div class="single">Inputs:<ul><li><span><span>a <a href="../../Macaulay2Doc/html/___List.html">list</a></span>, a strictly increasing sequence of degrees</span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><span>an <a href="../../Macaulay2Doc/html/___Z__Z.html">integer</a></span>, The zero-th betti number of the corresponding pure resolution construction</span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div><tt>pureCharFree</tt> corresponds to the construction in math.AC/0712.1843v2, "Betti Numbers of Graded Modules and Cohomology of Vector Bundles", Section 5.<table class="examples"><tr><td><pre>i1 : L = {0,2,3,9}

o1 = {0, 2, 3, 9}

o1 : List</pre>
</td></tr>
<tr><td><pre>i2 : B = pureBettiDiagram L

            0  1  2 3
o2 = total: 7 27 21 1
         0: 7  .  . .
         1: . 27 21 .
         2: .  .  . .
         3: .  .  . .
         4: .  .  . .
         5: .  .  . .
         6: .  .  . 1

o2 : BettiTally</pre>
</td></tr>
<tr><td><pre>i3 : pureCharFree L

o3 = 56</pre>
</td></tr>
<tr><td><pre>i4 : L1 = {0,3,4,6}

o4 = {0, 3, 4, 6}

o4 : List</pre>
</td></tr>
<tr><td><pre>i5 : B1 = pureBettiDiagram L1

            0 1 2 3
o5 = total: 1 8 9 2
         0: 1 . . .
         1: . . . .
         2: . 8 9 .
         3: . . . 2

o5 : BettiTally</pre>
</td></tr>
<tr><td><pre>i6 : pureCharFree L1

o6 = 5</pre>
</td></tr>
</table>
Thus, for large enough multiples m, m*B occurs as the Betti diagram of a module from the pureCharFree construction<p/>
However, we can find B itself as the Betti diagram of a module:<table class="examples"><tr><td><pre>i7 : betti res randomSocleModule(L,1)

            0  1  2 3
o7 = total: 7 27 21 1
         0: 7  .  . .
         1: . 27 21 .
         2: .  .  . .
         3: .  .  . .
         4: .  .  . .
         5: .  .  . .
         6: .  .  . 1

o7 : BettiTally</pre>
</td></tr>
<tr><td><pre>i8 : betti res randomModule(L,1)

            0  1  2  3
o8 = total: 7 27 35 15
         0: 7  .  .  .
         1: . 27 11  .
         2: .  . 24 15

o8 : BettiTally</pre>
</td></tr>
<tr><td><pre>i9 : betti res randomModule({0,6,7,9},1)

            0  1  2 3
o9 = total: 1 21 27 7
         0: 1  .  . .
         1: .  .  . .
         2: .  .  . .
         3: .  .  . .
         4: .  .  . .
         5: . 21 27 .
         6: .  .  . 7

o9 : BettiTally</pre>
</td></tr>
<tr><td><pre>i10 : betti res randomSocleModule(L1,1)

             0 1 2 3
o10 = total: 1 8 9 2
          0: 1 . . .
          1: . . . .
          2: . 8 9 .
          3: . . . 2

o10 : BettiTally</pre>
</td></tr>
<tr><td><pre>i11 : betti res randomModule(L1,1)

             0 1 2 3
o11 = total: 1 8 9 2
          0: 1 . . .
          1: . . . .
          2: . 8 9 .
          3: . . . 2

o11 : BettiTally</pre>
</td></tr>
<tr><td><pre>i12 : betti res randomModule({0,2,3,6},1)

             0 1  2 3
o12 = total: 2 9 10 3
          0: 2 .  . .
          1: . 9  7 .
          2: . .  3 3

o12 : BettiTally</pre>
</td></tr>
<tr><td><pre>i13 : betti res randomSocleModule({0,2,3,6},1)

             0 1 2 3
o13 = total: 2 9 8 1
          0: 2 . . .
          1: . 9 8 .
          2: . . . .
          3: . . . 1

o13 : BettiTally</pre>
</td></tr>
</table>
</div>
</div>
<div class="single"><h2>See also</h2>
<ul><li><span><a href="_pure__All.html" title="Vector of first betti number of our three specific exact complexes">pureAll</a> -- Vector of first betti number of our three specific exact complexes</span></li>
<li><span><a href="_pure__Weyman.html" title="first betti number of specific exact complex">pureWeyman</a> -- first betti number of specific exact complex</span></li>
<li><span><a href="_pure__Two__Invariant.html" title="first betti number of specific exact complex">pureTwoInvariant</a> -- first betti number of specific exact complex</span></li>
</ul>
</div>
<div class="waystouse"><h2>Ways to use <tt>pureCharFree</tt> :</h2>
<ul><li>pureCharFree(List)</li>
</ul>
</div>
</div>
</body>
</html>