Sophie

Sophie

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

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>ambient(Module) -- ambient free module</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="_ambient_lp__Projective__Variety_rp.html">next</a> | <a href="_ambient_lp__Matrix_rp.html">previous</a> | <a href="_ambient_lp__Projective__Variety_rp.html">forward</a> | <a href="_ambient_lp__Matrix_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>ambient(Module) -- ambient free module</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>ambient M</tt></div>
</dd></dl>
</div>
</li>
<li><span>Function: <a href="_ambient.html" title="ambient free module of a subquotient, or ambient ring">ambient</a></span></li>
<li><div class="single">Inputs:<ul><li><span><tt>M</tt>, <span>a <a href="___Module.html">module</a></span></span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><span>a <a href="___Module.html">module</a></span>, a free module</span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div>If a module is a submodule or quotient of a free module F, or is a subquotient of F (that is, a submodule of a quotient of F), then this routine yields the free module F.<table class="examples"><tr><td><pre>i1 : R = QQ[x_1 .. x_5]

o1 = R

o1 : PolynomialRing</pre>
</td></tr>
<tr><td><pre>i2 : N = image matrix{{x_1,x_2},{x_2,x_3}}

o2 = image | x_1 x_2 |
           | x_2 x_3 |

                             2
o2 : R-module, submodule of R</pre>
</td></tr>
<tr><td><pre>i3 : ambient N

      2
o3 = R

o3 : R-module, free</pre>
</td></tr>
<tr><td><pre>i4 : ambient cokernel vars R

      1
o4 = R

o4 : R-module, free</pre>
</td></tr>
<tr><td><pre>i5 : ambient kernel vars R

      5
o5 = R

o5 : R-module, free, degrees {1, 1, 1, 1, 1}</pre>
</td></tr>
<tr><td><pre>i6 : M = image vars R ++ cokernel vars R

o6 = subquotient (| x_1 x_2 x_3 x_4 x_5 0 |, | 0   0   0   0   0   |)
                  | 0   0   0   0   0   1 |  | x_1 x_2 x_3 x_4 x_5 |

                               2
o6 : R-module, subquotient of R</pre>
</td></tr>
<tr><td><pre>i7 : ambient M

      2
o7 = R

o7 : R-module, free</pre>
</td></tr>
</table>
This module is always the common target free module of the generator and relation matrices of M<table class="examples"><tr><td><pre>i8 : ambient M == target generators M

o8 = true</pre>
</td></tr>
<tr><td><pre>i9 : ambient M == target relations M

o9 = true</pre>
</td></tr>
</table>
</div>
</div>
<div class="single"><h2>See also</h2>
<ul><li><span><a href="_subquotient_spmodules.html" title="the way Macaulay2 represents modules">subquotient modules</a> -- the way Macaulay2 represents modules</span></li>
<li><span><a href="_cover_lp__Module_rp.html" title="get the covering free module">cover(Module)</a> -- get the covering free module</span></li>
<li><span><a href="_super.html" title="get the ambient module">super(Module)</a> -- get the ambient module</span></li>
<li><span><a href="_generators_lp__Module_rp.html" title="the generator matrix of a module">generators(Module)</a> -- the generator matrix of a module</span></li>
<li><span><a href="_relations.html" title="the defining relations">relations(Module)</a> -- the defining relations</span></li>
</ul>
</div>
</div>
</body>
</html>