Sophie

Sophie

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

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>arrangement -- create a hyperplane arrangement</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="___Arrangement_sp^_sp__Flat.html">next</a> | <a href="___Arrangement.html">previous</a> | <a href="___Arrangement_sp^_sp__Flat.html">forward</a> | <a href="___Arrangement.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>arrangement -- create a hyperplane arrangement</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>arrangement(L,R) or arrangement(M) or arrangement(M,R)</tt></div>
</dd></dl>
</div>
</li>
<li><div class="single">Inputs:<ul><li><span><tt>L</tt>, a list of linear equations in the ring <tt>R</tt></span></li>
<li><span><tt>R</tt>, a polynomial ring or linear quotient of a polynomial ring</span></li>
<li><span><tt>M</tt>, a matrix whose rows represent linear forms defining hyperplanes</span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><span>a <a href="___Arrangement.html">hyperplane arrangement</a></span>, the hyperplane arrangement determined by <tt>L</tt> and <tt>R</tt></span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div>A hyperplane is a linear subspace of codimension one.  An arrangement is a finite set of hyperplanes.<p/>
Probably the best-known hyperplane arrangement is the braid arrangement consisting of all the diagonal hyperplanes.  In 4-space, it is constructed as follows: <table class="examples"><tr><td><pre>i1 : S = ZZ[w,x,y,z];</pre>
</td></tr>
<tr><td><pre>i2 : A3 = arrangement {w-x,w-y,w-z,x-y,x-z,y-z}

o2 = {w - x, w - y, w - z, x - y, x - z, y - z}

o2 : Hyperplane Arrangement </pre>
</td></tr>
<tr><td><pre>i3 : describe A3

o3 = {w - x, w - y, w - z, x - y, x - z, y - z}</pre>
</td></tr>
</table>
If we project along onto a subspace, then we obtain an essential arrangement:<table class="examples"><tr><td><pre>i4 : R = S/ideal(w+x+y+z)

o4 = R

o4 : QuotientRing</pre>
</td></tr>
<tr><td><pre>i5 : A3' = arrangement({w-x,w-y,w-z,x-y,x-z,y-z},R)

o5 = {- 2x - y - z, - x - 2y - z, - x - y - 2z, x - y, x - z, y - z}

o5 : Hyperplane Arrangement </pre>
</td></tr>
<tr><td><pre>i6 : describe A3'

o6 = {- 2x - y - z, - x - 2y - z, - x - y - 2z, x - y, x - z, y - z}</pre>
</td></tr>
</table>
The trivial arrangement has no equations.<table class="examples"><tr><td><pre>i7 : trivial = arrangement({},S)

o7 = {}

o7 : Hyperplane Arrangement </pre>
</td></tr>
<tr><td><pre>i8 : describe trivial

o8 = {}</pre>
</td></tr>
<tr><td><pre>i9 : ring trivial

o9 = S

o9 : PolynomialRing</pre>
</td></tr>
</table>
</div>
</div>
<div class="single"><h2>Caveat</h2>
<div>If the elements of <tt>L</tt> are not <a href="../../Macaulay2Doc/html/___Ring__Element.html">ring elements</a> in <tt>R</tt>, then the induced identity map is used to map them from <tt>ring L#0</tt> into <tt>R</tt>.</div>
</div>
<div class="single"><h2>See also</h2>
<ul><li><span><a href="index.html" title="hyperplane arrangements">HyperplaneArrangements</a> -- hyperplane arrangements</span></li>
<li><span><a href="_arrangement_lp__String_cm__Polynomial__Ring_rp.html" title="look up a built-in hyperplane arrangement">arrangement(String,PolynomialRing)</a> -- look up a built-in hyperplane arrangement</span></li>
</ul>
</div>
<div class="waystouse"><h2>Ways to use <tt>arrangement</tt> :</h2>
<ul><li>arrangement(Arrangement,Ring)</li>
<li>arrangement(List)</li>
<li>arrangement(List,Ring)</li>
<li>arrangement(Matrix)</li>
<li>arrangement(Matrix,Ring)</li>
<li><span><tt>arrangement(Flat)</tt> (missing documentation<!-- tag: (arrangement,Flat) -->)</span></li>
<li><span><tt>arrangement(String)</tt> (missing documentation<!-- tag: (arrangement,String) -->)</span></li>
<li><span><a href="_arrangement_lp__String_cm__Polynomial__Ring_rp.html" title="look up a built-in hyperplane arrangement">arrangement(String,PolynomialRing)</a> -- look up a built-in hyperplane arrangement</span></li>
<li><span><tt>arrangement(String,Ring)</tt> (missing documentation<!-- tag: (arrangement,String,Ring) -->)</span></li>
</ul>
</div>
</div>
</body>
</html>