Sophie

Sophie

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

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>monomialIdeal(Matrix) -- monomial ideal of lead monomials</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="___Monomials.html">next</a> | <a href="_monomial__Ideal_lp__Ideal_rp.html">previous</a> | <a href="___Monomials.html">forward</a> | <a href="_monomial__Ideal_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>monomialIdeal(Matrix) -- monomial ideal of lead monomials</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>monomialIdeal L</tt></div>
</dd></dl>
</div>
</li>
<li><span>Function: <a href="_monomial__Ideal.html" title="make a monomial ideal">monomialIdeal</a></span></li>
<li><div class="single">Inputs:<ul><li><span><tt>L</tt>, <span>a <a href="___Matrix.html">matrix</a></span>, <span>a <a href="___Ring__Element.html">ring element</a></span>, <span>a <a href="___List.html">list</a></span>, or <span>a <a href="___Sequence.html">sequence</a></span></span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><span>a <a href="___Monomial__Ideal.html">monomial ideal</a></span>, the monomial ideal of lead monomials of the elements of L</span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div>If L is a matrix, then it must have only one row.  For all of these types, the result is generated by only the lead monomials given: no Gröbner bases are computed.  See <a href="_monomial__Ideal_lp__Ideal_rp.html" title="monomial ideal of lead monomials of a Gröbner basis">monomialIdeal(Ideal)</a> if the lead monomials of a Gröbner basis is desired.<table class="examples"><tr><td><pre>i1 : R = ZZ/101[a,b,c];</pre>
</td></tr>
<tr><td><pre>i2 : I = monomialIdeal(a^3,b^3,c^3, a^2-b^2)

                     2   3   3
o2 = monomialIdeal (a , b , c )

o2 : MonomialIdeal of R</pre>
</td></tr>
<tr><td><pre>i3 : M = monomialIdeal vars R

o3 = monomialIdeal (a, b, c)

o3 : MonomialIdeal of R</pre>
</td></tr>
<tr><td><pre>i4 : J = monomialIdeal 0_R

o4 = 0

o4 : MonomialIdeal of R</pre>
</td></tr>
</table>
If the coefficient ring is ZZ, lead coefficients of the monomials are ignored.<table class="examples"><tr><td><pre>i5 : R = ZZ[x,y]

o5 = R

o5 : PolynomialRing</pre>
</td></tr>
<tr><td><pre>i6 : monomialIdeal(2*x,3*y)

o6 = monomialIdeal (x, y)

o6 : MonomialIdeal of R</pre>
</td></tr>
</table>
</div>
</div>
<div class="single"><h2>See also</h2>
<ul><li><span><a href="___Monomial__Ideal.html" title="the class of all monomial ideals handled by the engine">MonomialIdeal</a> -- the class of all monomial ideals handled by the engine</span></li>
</ul>
</div>
</div>
</body>
</html>