Sophie

Sophie

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

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>gbRemove -- remove Gröbner basis</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="_gb__Snapshot.html">next</a> | <a href="___G__B__Degrees.html">previous</a> | <a href="_gb__Snapshot.html">forward</a> | <a href="___G__B__Degrees.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>gbRemove -- remove Gröbner basis</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>gbRemove M</tt></div>
</dd></dl>
</div>
</li>
<li><div class="single">Inputs:<ul><li><span><tt>M</tt>, <span>an <a href="___Ideal.html">ideal</a></span>, <span>a <a href="___Matrix.html">matrix</a></span>, or <span>a <a href="___Module.html">module</a></span></span></li>
</ul>
</div>
</li>
<li><div class="single">Consequences:<ul><li>all Gröbner bases computed for M are removed</li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div>This is a simple way to remove the space associated with large Gröbner bases that are no longer needed.<table class="examples"><tr><td><pre>i1 : R = ZZ[a]/(a^2-3)[x,y]

o1 = R

o1 : PolynomialRing</pre>
</td></tr>
<tr><td><pre>i2 : F = y^2-x*(x-1)*(x-a)

        3           2    2
o2 = - x  + (a + 1)x  + y  - a*x

o2 : R</pre>
</td></tr>
<tr><td><pre>i3 : J = ideal(diff(x,F),diff(y,F),F)

                2                         3           2    2
o3 = ideal (- 3x  + (2a + 2)x - a, 2y, - x  + (a + 1)x  + y  - a*x)

o3 : Ideal of R</pre>
</td></tr>
<tr><td><pre>i4 : gens gb J

o4 = | 12 6a+6 2y 4x-2a+6 2xa+2x+2a+6 y2+2x-a-3 x2+3a |

             1       7
o4 : Matrix R  &lt;--- R</pre>
</td></tr>
<tr><td><pre>i5 : peek J.generators.cache

o5 = CacheTable{GroebnerBasisOptions{HardDegreeLimit => null} => GroebnerBasis[status: done; S-pairs encountered up to degree 5]}
                                     Syzygies => false
                                     SyzygyRows => 0
                image => image | -3x2+2xa+2x-a 2y -x3+x2a+x2+y2-xa |
                isHomogeneous => false</pre>
</td></tr>
<tr><td><pre>i6 : gbRemove J</pre>
</td></tr>
<tr><td><pre>i7 : peek J.generators.cache

o7 = CacheTable{image => image | -3x2+2xa+2x-a 2y -x3+x2a+x2+y2-xa |}
                isHomogeneous => false</pre>
</td></tr>
</table>
</div>
</div>
<div class="single"><h2>See also</h2>
<ul><li><span><a href="_gb.html" title="compute a Gröbner basis">gb</a> -- compute a Gröbner basis</span></li>
<li><span><a href="_gb__Trace.html" title="provide tracing output during various computations in the 	 engine.">gbTrace</a> -- provide tracing output during various computations in the 	 engine.</span></li>
<li><span><a href="_gb__Snapshot.html" title="the Gröbner basis matrix as so far computed">gbSnapshot</a> -- the Gröbner basis matrix as so far computed</span></li>
</ul>
</div>
<div class="waystouse"><h2>Ways to use <tt>gbRemove</tt> :</h2>
<ul><li>gbRemove(Ideal)</li>
<li>gbRemove(Matrix)</li>
<li>gbRemove(Module)</li>
</ul>
</div>
</div>
</body>
</html>