Sophie

Sophie

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

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>normal forms</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="_elimination_spof_spvariables.html">next</a> | <a href="_computing_sp__Groebner_spbases.html">previous</a> | <a href="_elimination_spof_spvariables.html">forward</a> | <a href="___Gröbner_spbases.html">backward</a> | <a href="index.html">up</a> | <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>
<div><a href="index.html" title="">Macaulay2Doc</a> > <a href="_normal_spforms.html" title="">normal forms</a></div>
<hr/>
<div><h1>normal forms</h1>
<div>Let R = k[x<sub>1</sub>, ..., x<sub>n</sub>] be a polynomial ring over a field k, and let <i>I &sub; R</i> be an ideal. Let <i>{g<sub>1</sub>, ..., g<sub>t</sub>}</i> be a Groebner basis for <i>I</i>. For any <i>f &isin; R</i>, there is a unique &lsquo;remainder&rsquo; <i>r &isin; R</i> such that no term of <i>r</i> is divisible by the leading term of any <i>g<sub>i</sub></i> and such that <i>f-r</i> belongs to <i>I</i>. This polynomial <i>r</i> is sometimes called the normal form of <i>f</i>.<p/>
For an example, consider symmetric polynomials.  The normal form of the symmetric polynomial <tt>f</tt> with respect to the ideal <tt>I</tt> below writes <tt>f</tt> in terms of the elementary symmetric functions <tt>a,b,c</tt>.<table class="examples"><tr><td><pre>i1 : R = QQ[x,y,z,a,b,c,MonomialOrder=>Eliminate 3];</pre>
</td></tr>
<tr><td><pre>i2 : I = ideal(a-(x+y+z), b-(x*y+x*z+y*z), c-x*y*z)

o2 = ideal (- x - y - z + a, - x*y - x*z - y*z + b, - x*y*z + c)

o2 : Ideal of R</pre>
</td></tr>
<tr><td><pre>i3 : f = x^3+y^3+z^3

      3    3    3
o3 = x  + y  + z

o3 : R</pre>
</td></tr>
<tr><td><pre>i4 : f % I

      3
o4 = a  - 3a*b + 3c

o4 : R</pre>
</td></tr>
</table>
</div>
<div class="single"><h2>See also</h2>
<ul><li><span><a href="___Gröbner_spbases.html" title="">Gröbner bases</a></span></li>
<li><span><a href="_methods_spfor_spnormal_spforms_spand_spremainder.html" title="calculate the normal form of ring elements and matrices">RingElement % Ideal</a> -- calculate the normal form of ring elements and matrices</span></li>
</ul>
</div>
</div>
</body>
</html>