Sophie

Sophie

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

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>icMap -- natural map from an affine domain into its integral closure</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="_ic__P__Ideal.html">next</a> | <a href="_ic__Fractions.html">previous</a> | <a href="_ic__P__Ideal.html">forward</a> | <a href="_ic__Fractions.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>icMap -- natural map from an affine domain into its integral closure</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>icMap R</tt></div>
</dd></dl>
</div>
</li>
<li><div class="single">Inputs:<ul><li><span><tt>R</tt>, <span>a <a href="../../Macaulay2Doc/html/___Ring.html">ring</a></span>, an affine domain</span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><span>a <a href="../../Macaulay2Doc/html/___Ring__Map.html">ring map</a></span>, from <tt>R</tt> to its integral closure</span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div><div>If the integral closure of <tt>R</tt> has not yet been computed, that computation is performed first.  No extra computation is involved.  If <tt>R</tt> is integrally closed, then the identity map is returned.</div>
<table class="examples"><tr><td><pre>i1 : R = QQ[x,y]/(y^2-x^3)

o1 = R

o1 : QuotientRing</pre>
</td></tr>
<tr><td><pre>i2 : icMap R

                   QQ[w   , x, y]
                       0,0
o2 = map(---------------------------------,R,{x, y})
                   2              2
         (w   y - x , w   x - y, w    - x)
           0,0         0,0        0,0

                       QQ[w   , x, y]
                           0,0
o2 : RingMap --------------------------------- &lt;--- R
                       2              2
             (w   y - x , w   x - y, w    - x)
               0,0         0,0        0,0</pre>
</td></tr>
</table>
<p></p>
<div>This finite ring map can be used to compute the conductor, that is, the ideal of elements of <tt>R</tt> which are universal denominators for the integral closure (i.e. those d &isin;R such that d R&rsquo; &sub;R).</div>
<table class="examples"><tr><td><pre>i3 : S = QQ[a,b,c]/ideal(a^6-c^6-b^2*c^4);</pre>
</td></tr>
<tr><td><pre>i4 : F = icMap S;

                              QQ[w   , w   , a, b, c]
                                  4,0   3,0
o4 : RingMap --------------------------------------------------------- &lt;--- S
                       2                          2     2      2    2
             (w   c - a , w   c - w   a, w   a - w   , w    - b  - c )
               3,0         4,0     3,0    4,0     3,0   4,0</pre>
</td></tr>
<tr><td><pre>i5 : conductor F

             3     2   3    4
o5 = ideal (c , a*c , a c, a )

o5 : Ideal of S</pre>
</td></tr>
</table>
</div>
</div>
<div class="single"><h2>Caveat</h2>
<div><div>If you want to control the computation of the integral closure via optional arguments, then make sure you call <a href="_integral__Closure_lp__Ring_rp.html" title="compute the integral closure (normalization) of an affine domain">integralClosure(Ring)</a> first, since <tt>icMap</tt> does not have optional arguments.</div>
</div>
</div>
<div class="single"><h2>See also</h2>
<ul><li><span><a href="_integral__Closure_lp__Ring_rp.html" title="compute the integral closure (normalization) of an affine domain">integralClosure(Ring)</a> -- compute the integral closure (normalization) of an affine domain</span></li>
<li><span><a href="_conductor.html" title="the conductor of a finite ring map">conductor</a> -- the conductor of a finite ring map</span></li>
</ul>
</div>
<div class="waystouse"><h2>Ways to use <tt>icMap</tt> :</h2>
<ul><li>icMap(Ring)</li>
</ul>
</div>
</div>
</body>
</html>