Sophie

Sophie

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

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>eulers(CoherentSheaf) -- list the sectional Euler characteristics</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="_eulers_lp__Ideal_rp.html">next</a> | <a href="_eulers.html">previous</a> | <a href="_eulers_lp__Ideal_rp.html">forward</a> | <a href="_eulers.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>eulers(CoherentSheaf) -- list the sectional Euler characteristics</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>eulers E</tt></div>
</dd></dl>
</div>
</li>
<li><span>Function: <a href="_eulers.html" title="list the sectional Euler characteristics">eulers</a></span></li>
<li><div class="single">Inputs:<ul><li><span><tt>E</tt>, <span>a <a href="___Coherent__Sheaf.html">coherent sheaf</a></span></span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><span>a <a href="___List.html">list</a></span>, the successive sectional Euler characteristics of a coherent sheaf, or a module.</span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div>Computes a list of the successive sectional Euler characteristics of a coherent sheaf, the i-th entry on the list being the Euler characteristic of the i-th generic hyperplane restriction of <tt>E</tt><p/>
The Horrocks-Mumford bundle on the projective fourspace:<table class="examples"><tr><td><pre>i1 : R = QQ[x_0..x_4];</pre>
</td></tr>
<tr><td><pre>i2 : a = {1,0,0,0,0}

o2 = {1, 0, 0, 0, 0}

o2 : List</pre>
</td></tr>
<tr><td><pre>i3 : b = {0,1,0,0,1}

o3 = {0, 1, 0, 0, 1}

o3 : List</pre>
</td></tr>
<tr><td><pre>i4 : c = {0,0,1,1,0}

o4 = {0, 0, 1, 1, 0}

o4 : List</pre>
</td></tr>
<tr><td><pre>i5 : M1 = matrix table(5,5, (i,j)-> x_((i+j)%5)*a_((i-j)%5))

o5 = | x_0 0   0   0   0   |
     | 0   x_2 0   0   0   |
     | 0   0   x_4 0   0   |
     | 0   0   0   x_1 0   |
     | 0   0   0   0   x_3 |

             5       5
o5 : Matrix R  &lt;--- R</pre>
</td></tr>
<tr><td><pre>i6 : M2 = matrix table(5,5, (i,j)-> x_((i+j)%5)*b_((i-j)%5))

o6 = | 0   x_1 0   0   x_4 |
     | x_1 0   x_3 0   0   |
     | 0   x_3 0   x_0 0   |
     | 0   0   x_0 0   x_2 |
     | x_4 0   0   x_2 0   |

             5       5
o6 : Matrix R  &lt;--- R</pre>
</td></tr>
<tr><td><pre>i7 : M3 = matrix table(5,5, (i,j)-> x_((i+j)%5)*c_((i-j)%5))

o7 = | 0   0   x_2 x_3 0   |
     | 0   0   0   x_4 x_0 |
     | x_2 0   0   0   x_1 |
     | x_3 x_4 0   0   0   |
     | 0   x_0 x_1 0   0   |

             5       5
o7 : Matrix R  &lt;--- R</pre>
</td></tr>
<tr><td><pre>i8 : M = M1 | M2 | M3;

             5       15
o8 : Matrix R  &lt;--- R</pre>
</td></tr>
<tr><td><pre>i9 : betti (C=res coker M)

            0  1  2  3  4 5
o9 = total: 5 15 29 37 20 2
         0: 5 15 10  2  . .
         1: .  .  4  .  . .
         2: .  . 15 35 20 .
         3: .  .  .  .  . 2

o9 : BettiTally</pre>
</td></tr>
<tr><td><pre>i10 : N = transpose submatrix(C.dd_3,{10..28},{2..36});

              35       19
o10 : Matrix R   &lt;--- R</pre>
</td></tr>
<tr><td><pre>i11 : betti (D=res coker N)

              0  1  2  3  4 5
o11 = total: 35 19 19 35 20 2
         -5: 35 15  .  .  . .
         -4:  .  4  .  .  . .
         -3:  .  .  .  .  . .
         -2:  .  .  .  .  . .
         -1:  .  .  .  .  . .
          0:  .  .  4  .  . .
          1:  .  . 15 35 20 .
          2:  .  .  .  .  . 2

o11 : BettiTally</pre>
</td></tr>
<tr><td><pre>i12 : Pfour = Proj(R)

o12 = Pfour

o12 : ProjectiveVariety</pre>
</td></tr>
<tr><td><pre>i13 : HorrocksMumford = sheaf(coker D.dd_3);</pre>
</td></tr>
<tr><td><pre>i14 : HH^0(HorrocksMumford(1))

o14 = 0

o14 : QQ-module</pre>
</td></tr>
<tr><td><pre>i15 : HH^0(HorrocksMumford(2))

        4
o15 = QQ

o15 : QQ-module, free</pre>
</td></tr>
<tr><td><pre>i16 : eulers(HorrocksMumford(2))

o16 = {2, 12, 12, 7, 2}

o16 : List</pre>
</td></tr>
</table>
</div>
</div>
<div class="single"><h2>See also</h2>
<ul><li><span><a href="_genera.html" title="list of the successive linear sectional arithmetic genera">genera</a> -- list of the successive linear sectional arithmetic genera</span></li>
<li><span><a href="_genus.html" title="arithmetic genus">genus</a> -- arithmetic genus</span></li>
</ul>
</div>
</div>
</body>
</html>