Sophie

Sophie

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

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>ringFromFractions -- find presentation for f.g. ring</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="___Verbosity.html">next</a> | <a href="___Radical__Codim1.html">previous</a> | <a href="___Verbosity.html">forward</a> | <a href="___Radical__Codim1.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>ringFromFractions -- find presentation for f.g. 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>(F,G) = ringFromFractions(H,f)</tt></div>
</dd></dl>
</div>
</li>
<li><div class="single">Inputs:<ul><li><span><tt>H</tt>, <span>a <a href="../../Macaulay2Doc/html/___Matrix.html">matrix</a></span>, a one row matrix over a ring <i>R</i></span></li>
<li><span><tt>f</tt>, <span>a <a href="../../Macaulay2Doc/html/___Ring__Element.html">ring element</a></span></span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><tt>F</tt>, <span>a <a href="../../Macaulay2Doc/html/___Ring__Map.html">ring map</a></span>, <i>R &rarr;S</i>, where <i>S</i> is the extension ring of <i>R</i> generated by the fractions <i>1/f H</i></span></li>
<li><span><tt>G</tt>, <span>a <a href="../../Macaulay2Doc/html/___Ring__Map.html">ring map</a></span>, <i>frac S &rarr;frac R</i>, the fractions</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>Index => ...</tt> (missing documentation<!-- tag: ringFromFractions(..., Index => ...) -->), </span></li>
<li><span><tt>Variable => ...</tt> (missing documentation<!-- tag: ringFromFractions(..., Variable => ...) -->), </span></li>
<li><span><tt>Verbosity => ...</tt> (missing documentation<!-- tag: ringFromFractions(..., Verbosity => ...) -->), </span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div><div>Serious restriction: It is assumed that this ring R[1/f H] is an endomorphism ring of an ideal in <i>R</i>.  This means that the Groebner basis, in a product order, will have lead terms all quadratic monomials in the new variables, together with other elements which are degree 0 or 1 in the new variables.</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 : H = (y * ideal(x,y)) : ideal(x,y)

                2
o2 = ideal (y, x )

o2 : Ideal of R</pre>
</td></tr>
<tr><td><pre>i3 : (F,G) = ringFromFractions(((gens H)_{1}), H_0);</pre>
</td></tr>
<tr><td><pre>i4 : S = target F

o4 = S

o4 : QuotientRing</pre>
</td></tr>
<tr><td><pre>i5 : F

o5 = map(S,R,{x, y})

o5 : RingMap S &lt;--- R</pre>
</td></tr>
<tr><td><pre>i6 : G

                          y
o6 = map(frac(R),frac(S),{-, x, y})
                          x

o6 : RingMap frac(R) &lt;--- frac(S)</pre>
</td></tr>
</table>
</div>
</div>
<div class="waystouse"><h2>Ways to use <tt>ringFromFractions</tt> :</h2>
<ul><li>ringFromFractions(Matrix,RingElement)</li>
</ul>
</div>
</div>
</body>
</html>