Sophie

Sophie

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

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>HH^ZZ ChainComplex -- cohomology of a chain complex</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="___H__H^__Z__Z_sp__Chain__Complex__Map.html">next</a> | <a href="___H__H_sp__Chain__Complex__Map.html">previous</a> | <a href="___H__H^__Z__Z_sp__Chain__Complex__Map.html">forward</a> | <a href="___H__H_sp__Chain__Complex__Map.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>HH^ZZ ChainComplex -- cohomology of a chain 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>HH^i C</tt></div>
</dd></dl>
</div>
</li>
<li><span>Function: <a href="_cohomology.html" title="general cohomology functor">cohomology</a></span></li>
<li><div class="single">Inputs:<ul><li><span><tt>i</tt>, <span>an <a href="___Z__Z.html">integer</a></span></span></li>
<li><span><tt>C</tt>, <span>a <a href="___Chain__Complex.html">chain complex</a></span></span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><span>a <a href="___Module.html">module</a></span>, HH^i C -- homology at the i-th spot of the chain complex <tt>C</tt>.</span></li>
</ul>
</div>
</li>
<li><div class="single"><a href="_using_spfunctions_spwith_spoptional_spinputs.html">Optional inputs</a>:<ul><li><span><a href="_cohomology_lp..._cm_sp__Degree_sp_eq_gt_sp..._rp.html">Degree => ...</a>, </span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div>By definition, this is the same as computing HH_(-i) C.<p/>
<table class="examples"><tr><td><pre>i1 : R = ZZ/101[x,y]

o1 = R

o1 : PolynomialRing</pre>
</td></tr>
<tr><td><pre>i2 : C = chainComplex(matrix{{x,y}},matrix{{x*y},{-x^2}})

      1      2      1
o2 = R  &lt;-- R  &lt;-- R
                    
     0      1      2

o2 : ChainComplex</pre>
</td></tr>
<tr><td><pre>i3 : M = HH^1 C

o3 = 0

o3 : R-module</pre>
</td></tr>
<tr><td><pre>i4 : prune M

o4 = 0

o4 : R-module</pre>
</td></tr>
</table>
<p/>
Here is another example computing simplicial cohomology (for a hollow tetrahedron):<table class="examples"><tr><td><pre>i5 : needsPackage "SimplicialComplexes"

o5 = SimplicialComplexes

o5 : Package</pre>
</td></tr>
<tr><td><pre>i6 : R = QQ[a..d]

o6 = R

o6 : PolynomialRing</pre>
</td></tr>
<tr><td><pre>i7 : D = simplicialComplex {a*b*c,a*b*d,a*c*d,b*c*d}

o7 = | bcd acd abd abc |

o7 : SimplicialComplex</pre>
</td></tr>
<tr><td><pre>i8 : C = chainComplex D

       1       4       6       4
o8 = QQ  &lt;-- QQ  &lt;-- QQ  &lt;-- QQ
                              
     -1      0       1       2

o8 : ChainComplex</pre>
</td></tr>
<tr><td><pre>i9 : HH_2 C

o9 = image | -1 |
           | 1  |
           | -1 |
           | 1  |

                               4
o9 : QQ-module, submodule of QQ</pre>
</td></tr>
<tr><td><pre>i10 : prune oo

        1
o10 = QQ

o10 : QQ-module, free</pre>
</td></tr>
</table>
</div>
</div>
<div class="single"><h2>See also</h2>
<ul><li><span><a href="___Graded__Module.html" title="the class of all graded modules">GradedModule</a> -- the class of all graded modules</span></li>
<li><span><a href="___H__H.html" title="general homology and cohomology functor">HH</a> -- general homology and cohomology functor</span></li>
</ul>
</div>
</div>
</body>
</html>