Sophie

Sophie

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

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>minimalPresentation(Ring) -- compute a minimal presentation of a quotient ring</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="_minimal__Primes.html">next</a> | <a href="_minimal__Presentation_lp__Module_rp.html">previous</a> | <a href="_minimal__Primes.html">forward</a> | <a href="_minimal__Presentation_lp__Module_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>minimalPresentation(Ring) -- compute a minimal presentation of a quotient ring</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>S = minimalPresentation R</tt><br/><tt>S = prune R</tt></div>
</dd></dl>
</div>
</li>
<li><span>Function: <a href="_minimal__Presentation.html" title="compute a minimal presentation">minimalPresentation</a></span></li>
<li><div class="single">Inputs:<ul><li><span><tt>R</tt>, <span>a <a href="___Ring.html">ring</a></span>, a quotient ring</span></li>
</ul>
</div>
</li>
<li><div class="single">Consequences:<ul><li>the isomorphism from <tt>R</tt> to <tt>S</tt> is stored as <tt>R.minimalPresentationMap</tt> and the inverse of this map is stored as <tt>R.minimalPresentationMapInv</tt></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><tt>S</tt>, <span>a <a href="___Ring.html">ring</a></span>, a quotient ring, minimally presented if <tt>R</tt> is homogeneous, isomorphic to <tt>R</tt></span></li>
</ul>
</div>
</li>
<li><div class="single"><a href="_using_spfunctions_spwith_spoptional_spinputs.html">Optional inputs</a>:<ul><li><span><tt>Exclude => ...</tt> (missing documentation<!-- tag: minimalPresentation(..., Exclude => ...) -->), </span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div>The computation is accomplished by considering the relations of <tt>R</tt>. If a variable occurs as a term of a relation of <tt>R</tt> and in no other terms of the same polynomial, then  the variable is replaced by the remaining terms and removed from the ring.  A minimal generating set for the resulting defining ideal is then computed and the new quotient ring is returned.  If <tt>R</tt> is not homogeneous, then an attempt is made to improve the presentation.<table class="examples"><tr><td><pre>i1 : R = ZZ/101[x,y,z,u,w]/ideal(x-x^2-y,z+x*y,w^2-u^2);</pre>
</td></tr>
<tr><td><pre>i2 : minimalPresentation(R)

      ZZ
     ---[x, u, w]
     101
o2 = ------------
          2    2
       - u  + w

o2 : QuotientRing</pre>
</td></tr>
<tr><td><pre>i3 : R.minimalPresentationMap

          ZZ
         ---[x, u, w]
         101                   2       3    2
o3 = map(------------,R,{x, - x  + x, x  - x , u, w})
              2    2
           - u  + w

              ZZ
             ---[x, u, w]
             101
o3 : RingMap ------------ &lt;--- R
                  2    2
               - u  + w</pre>
</td></tr>
<tr><td><pre>i4 : R.minimalPresentationMapInv

            ZZ
           ---[x, u, w]
           101
o4 = map(R,------------,{x, u, w})
                2    2
             - u  + w

                     ZZ
                    ---[x, u, w]
                    101
o4 : RingMap R &lt;--- ------------
                         2    2
                      - u  + w</pre>
</td></tr>
</table>
If the Exclude option is present, then those variables with the given indices are not simplified away (remember that ring variable indices start at 0).<table class="examples"><tr><td><pre>i5 : R = ZZ/101[x,y,z,u,w]/ideal(x-x^2-y,z+x*y,w^2-u^2);</pre>
</td></tr>
<tr><td><pre>i6 : minimalPresentation(R, Exclude=>{1})

           ZZ
          ---[x, y, u, w]
          101
o6 = -------------------------
         2             2    2
     (- x  + x - y, - u  + w )

o6 : QuotientRing</pre>
</td></tr>
</table>
</div>
</div>
<div class="single"><h2>See also</h2>
<ul><li><span><a href="_minimal__Presentation_lp__Ideal_rp.html" title="compute a minimal presentation of the quotient ring defined by an ideal">minimalPresentation(Ideal)</a> -- compute a minimal presentation of the quotient ring defined by an ideal</span></li>
<li><span><a href="_minimal__Presentation_lp__Ideal_rp.html" title="compute a minimal presentation of the quotient ring defined by an ideal">prune(Ideal)</a> -- compute a minimal presentation of the quotient ring defined by an ideal</span></li>
<li><span><a href="_trim_lp__Ring_rp.html" title="">trim(Ring)</a></span></li>
<li><span><a href="_trim_lp__Quotient__Ring_rp.html" title="">trim(QuotientRing)</a></span></li>
</ul>
</div>
</div>
</body>
</html>