Sophie

Sophie

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

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>link -- link of a face in a simplicial complex</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="_lyubeznik__Complex.html">next</a> | <a href="_label.html">previous</a> | <a href="_lyubeznik__Complex.html">forward</a> | <a href="_label.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>link -- link of a face in a simplicial 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>link(D,f)</tt></div>
</dd></dl>
</div>
</li>
<li><div class="single">Inputs:<ul><li><span><tt>D</tt>, <span>a <a href="___Simplicial__Complex.html">simplicial complex</a></span></span></li>
<li><span><tt>f</tt>, <span>a <a href="../../Macaulay2Doc/html/___Ring__Element.html">ring element</a></span>, a monomial representing a face of the simplicial complex <tt>D</tt></span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><span>a <a href="___Simplicial__Complex.html">simplicial complex</a></span>, the link of <tt>f</tt> in <tt>D</tt></span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div>The link of a face <i>f</i> in <i>D</i> is the simplicial complex whose faces are the subsets <i>g</i> whose intersection with <i>f</i> is empty, where <i>f &cup;g</i> is a face of <i>D</i>.<table class="examples"><tr><td><pre>i1 : R = QQ[x0,x1,x2,x3,x4,x5,x6];</pre>
</td></tr>
<tr><td><pre>i2 : D = simplicialComplex {x0*x1*x3, x1*x3*x4, x1*x2*x4, x2*x4*x5,
                    x2*x3*x5, x3*x5*x6, x3*x4*x6, x0*x4*x6,
                    x0*x4*x5, x0*x1*x5, x1*x5*x6, x1*x2*x6,
                    x0*x2*x6, x0*x2*x3}

o2 = | x3x5x6 x1x5x6 x3x4x6 x0x4x6 x1x2x6 x0x2x6 x2x4x5 x0x4x5 x2x3x5 x0x1x5 x1x3x4 x1x2x4 x0x2x3 x0x1x3 |

o2 : SimplicialComplex</pre>
</td></tr>
<tr><td><pre>i3 : link(D,x0)

o3 = | x4x6 x2x6 x4x5 x1x5 x2x3 x1x3 |

o3 : SimplicialComplex</pre>
</td></tr>
<tr><td><pre>i4 : link(D,x0*x2)

o4 = | x6 x3 |

o4 : SimplicialComplex</pre>
</td></tr>
</table>
</div>
</div>
<div class="single"><h2>See also</h2>
<ul><li><span><a href="index.html" title="simplicial complexes">SimplicialComplexes</a> -- simplicial complexes</span></li>
</ul>
</div>
<div class="waystouse"><h2>Ways to use <tt>link</tt> :</h2>
<ul><li>link(SimplicialComplex,RingElement)</li>
</ul>
</div>
</div>
</body>
</html>