Sophie

Sophie

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

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>minors(ZZ,Matrix) -- ideal generated by minors</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="_min__Position.html">next</a> | <a href="_minors_lp..._cm_sp__Strategy_sp_eq_gt_sp..._rp.html">previous</a> | <a href="_min__Position.html">forward</a> | <a href="_minors_lp..._cm_sp__Strategy_sp_eq_gt_sp..._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>minors(ZZ,Matrix) -- ideal generated by minors</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>minors(n,M)</tt></div>
</dd></dl>
</div>
</li>
<li><span>Function: <a href="_minors_lp__Z__Z_cm__Matrix_rp.html" title="ideal generated by minors">minors</a></span></li>
<li><div class="single">Inputs:<ul><li><span><tt>n</tt>, <span>an <a href="___Z__Z.html">integer</a></span>, order of the minor</span></li>
<li><span><tt>M</tt>, <span>a <a href="___Matrix.html">matrix</a></span>, a map between free modules</span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><span>an <a href="___Ideal.html">ideal</a></span>, the ideal generated by the <tt>n</tt> by <tt>n</tt> minors of the matrix <tt>M</tt></span></li>
</ul>
</div>
</li>
<li><div class="single"><a href="_using_spfunctions_spwith_spoptional_spinputs.html">Optional inputs</a>:<ul><li><span><tt>First => </tt><span><span>a <a href="___List.html">list</a></span>, <span>default value null</span>, if given, should be a list of two integer lists, which will be the first minor computed</span></span></li>
<li><span><tt>Limit => </tt><span><span>an <a href="___Z__Z.html">integer</a></span>, <span>default value infinity</span>, the maximum number of minors to find</span></span></li>
<li><span><a href="_minors_lp..._cm_sp__Strategy_sp_eq_gt_sp..._rp.html">Strategy => ...</a>,  -- choose between Bareiss and Cofactor algorithms</span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div>Minors are generated in the same order as that used by <a href="_subsets_lp__Z__Z_cm__Z__Z_rp.html" title="produce all the subsets">subsets(ZZ,ZZ)</a>.<table class="examples"><tr><td><pre>i1 : R = ZZ[a..f];</pre>
</td></tr>
<tr><td><pre>i2 : M = matrix{{a,b,c},{d,e,f}}

o2 = | a b c |
     | d e f |

             2       3
o2 : Matrix R  &lt;--- R</pre>
</td></tr>
<tr><td><pre>i3 : minors(2,M)

o3 = ideal (- b*d + a*e, - c*d + a*f, - c*e + b*f)

o3 : Ideal of R</pre>
</td></tr>
<tr><td><pre>i4 : minors(2,M,Limit=>1)

o4 = ideal(- b*d + a*e)

o4 : Ideal of R</pre>
</td></tr>
</table>
<p>When <tt>n</tt> is negative, the unit ideal is returned, to preserve the expected ordering among the resulting ideals.</p>
<table class="examples"><tr><td><pre>i5 : minors(1,M)

o5 = ideal (a, d, b, e, c, f)

o5 : Ideal of R</pre>
</td></tr>
<tr><td><pre>i6 : minors(0,M)

o6 = ideal 1

o6 : Ideal of R</pre>
</td></tr>
<tr><td><pre>i7 : minors(-1,M)

o7 = ideal 1

o7 : Ideal of R</pre>
</td></tr>
</table>
</div>
</div>
<div class="single"><h2>See also</h2>
<ul><li><span><a href="_exterior__Power.html" title="exterior power">exteriorPower</a> -- exterior power</span></li>
<li><span><a href="_determinant.html" title="determinant of a matrix">determinant</a> -- determinant of a matrix</span></li>
</ul>
</div>
</div>
</body>
</html>