Sophie

Sophie

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

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>schurModule -- creates Schur module from a partition and free module</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="_schur__Modules__Map.html">next</a> | <a href="_schur.html">previous</a> | <a href="_schur__Modules__Map.html">forward</a> | <a href="_schur.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>schurModule -- creates Schur module from a partition and 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>schurModule(lambda,E)</tt></div>
</dd></dl>
</div>
</li>
<li><div class="single">Inputs:<ul><li><span><tt>lambda</tt>, <span>a <a href="../../Macaulay2Doc/html/___List.html">list</a></span>, a list of numbers representing a partition; e.g. 3,1 stands for 2 rows of length 3 and 1.</span></li>
<li><span><tt>E</tt>, <span>a <a href="../../Macaulay2Doc/html/___Module.html">module</a></span>, a free module</span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><tt>M</tt>, <span>a <a href="../../Macaulay2Doc/html/___Module.html">module</a></span>, The result of application of the Schur functor associated to lambda to E.</span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div><p>Applies the Schur functor associated to lambda to the free module E. For a detailed definition of the Schur module see p.106 of Fulton "Young Tableaux".</p>
<p>The resulting M comes with cached data M.cache.Schur = f, finv, AT, ST where</p>
<p>"f is a map from exterior<sub>m</sub>u E to M;", "finv is a map from M to exterior<sub>m</sub>u E;", "AT is a hash table of all tableaux, whose entries increase in every column;", "ST is a hash table of all standard tableaux (tableaux in AT, whose entries nondecrease in every row)." </p>
<div>Tableaux are represented with objects of class Filling, which is a doble list whose entries are lists giving the fillings of the corresponding columns.</div>
<table class="examples"><tr><td><pre>i1 : M=QQ^3;</pre>
</td></tr>
<tr><td><pre>i2 : scan(4, i-> &lt;&lt; i+1 &lt;&lt; "-th symmetric power of M = " &lt;&lt; schurModule({i+1},M) &lt;&lt; endl)
                              3
1-th symmetric power of M = QQ
                              6
2-th symmetric power of M = QQ
                              10
3-th symmetric power of M = QQ
                              15
4-th symmetric power of M = QQ</pre>
</td></tr>
<tr><td><pre>i3 : S = schurModule({3,2,1}, M);</pre>
</td></tr>
<tr><td><pre>i4 : v = sum(numgens S, i-> (i+1)*S_i) -- an element of S represented by a vector

o4 = | 1 |
     | 2 |
     | 3 |
     | 4 |
     | 5 |
     | 6 |
     | 7 |
     | 8 |

       8
o4 : QQ</pre>
</td></tr>
<tr><td><pre>i5 : printSchurModuleElement(v, S);
  +-+-+-+   +-+-+-+   +-+-+-+   +-+-+-+   +-+-+-+   +-+-+-+   +-+-+-+   +-+-+-+
1*|0|0|0| 2*|0|0|1| 3*|0|0|2| 4*|0|0|0| 5*|0|0|1| 6*|0|0|2| 7*|0|1|1| 8*|0|1|2| 
  |1|1| |   |1|1| |   |1|1| |   |1|2| |   |1|2| |   |1|2| |   |1|2| |   |1|2| |
  |2| | |   |2| | |   |2| | |   |2| | |   |2| | |   |2| | |   |2| | |   |2| | |
  +-+-+-+   +-+-+-+   +-+-+-+   +-+-+-+   +-+-+-+   +-+-+-+   +-+-+-+   +-+-+-+</pre>
</td></tr>
</table>
</div>
</div>
<div class="single"><h2>Caveat</h2>
<div><div>The partition lambda should be a valid nonempty partition.</div>
</div>
</div>
<div class="single"><h2>See also</h2>
<ul><li><span><a href="_schur.html" title="creates a map between Schur modules">schur</a> -- creates a map between Schur modules</span></li>
</ul>
</div>
<div class="waystouse"><h2>Ways to use <tt>schurModule</tt> :</h2>
<ul><li>schurModule(List,Module)</li>
</ul>
</div>
</div>
</body>
</html>