Sophie

Sophie

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

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>tangentCone(Ideal)</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div>next | <a href="_tangent__Cone_lp__Ideal_rp.html">previous</a> | forward | <a href="_tangent__Cone_lp__Ideal_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>tangentCone(Ideal)</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>tangentCone I</tt></div>
</dd></dl>
</div>
</li>
<li><span>Function: <a href="_tangent__Cone_lp__Ideal_rp.html" title="">tangentCone</a></span></li>
<li><div class="single">Inputs:<ul><li><span><tt>I</tt>, <span>an <a href="../../Macaulay2Doc/html/___Ideal.html">ideal</a></span></span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><span>an <a href="../../Macaulay2Doc/html/___Ideal.html">ideal</a></span>, the ideal of the tangent cone of the subvariety defined by <tt>I</tt> at the point defined by the variables of the ring, with a minimal set of generators</span></li>
</ul>
</div>
</li>
<li><div class="single"><a href="../../Macaulay2Doc/html/_using_spfunctions_spwith_spoptional_spinputs.html">Optional inputs</a>:<ul><li><span><tt>Strategy => </tt><span><span>default value Local</span>, <tt>Local</tt> or <tt>Global</tt></span></span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div><p>The tangent cone is the ideal that defines <tt>gr(R/I)</tt>, where <tt>R</tt> is the ring containing <tt>I</tt>, and <tt>gr</tt> is the associated graded ring formed with respect to maximal ideal generated by the variables.</p>
<p>The algorithm follows the method of Proposition 15.28 in the book <em>Commutative Algebra with a View Toward Algebraic Geometry</em> by David Eisenbud (Springer, Graduate Texts in Mathematics, volume 150).</p>
<table class="examples"><tr><td><pre>i1 : R = QQ[x,y,z]

o1 = R

o1 : PolynomialRing</pre>
</td></tr>
<tr><td><pre>i2 : tangentCone ideal "xz-y3,yz-x4,z2-x3y2"

             2             4
o2 = ideal (z , y*z, x*z, y )

o2 : Ideal of R</pre>
</td></tr>
<tr><td><pre>i3 : tangentCone ideal "z2-x5,zx-y3"

             2        3    6
o3 = ideal (z , x*z, y z, y )

o3 : Ideal of R</pre>
</td></tr>
<tr><td><pre>i4 : tangentCone ideal "x3+x2z2,x2y+xz3+z5"

             2    3   2 3        5      6     7     9
o4 = ideal (x y, x , x z , 2x*y*z  - x*z , x*z , y*z )

o4 : Ideal of R</pre>
</td></tr>
<tr><td><pre>i5 : betti oo

            0 1
o5 = total: 1 6
         0: 1 .
         1: . .
         2: . 2
         3: . .
         4: . 1
         5: . .
         6: . 1
         7: . 1
         8: . .
         9: . 1

o5 : BettiTally</pre>
</td></tr>
</table>
</div>
</div>
</div>
</body>
</html>