Sophie

Sophie

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

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>Hom(Matrix,Module) -- induced map on Hom modules</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="___Hom_lp__Module_cm__Chain__Complex_rp.html">next</a> | <a href="___Hom_lp__Coherent__Sheaf_cm__Coherent__Sheaf_rp.html">previous</a> | <a href="___Hom_lp__Module_cm__Chain__Complex_rp.html">forward</a> | <a href="___Hom_lp__Coherent__Sheaf_cm__Coherent__Sheaf_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>Hom(Matrix,Module) -- induced map on Hom modules</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>Hom(f,M)</tt><br/><tt>Hom(M,f)</tt></div>
</dd></dl>
</div>
</li>
<li><span>Function: <a href="___Hom.html" title="module of homomorphisms">Hom</a></span></li>
<li><div class="single">Inputs:<ul><li><span><tt>f</tt>, <span>a <a href="___Matrix.html">matrix</a></span>, a map <tt>N1 --> N2</tt> of modules or <span>a <a href="___Chain__Complex.html">chain complex</a></span></span></li>
<li><span><tt>M</tt>, <span>a <a href="___Module.html">module</a></span>, over the same ring <tt>R</tt> as <tt>f</tt></span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><span>a <a href="___Matrix.html">matrix</a></span>, either the map <tt>Hom_R(N2,M) --> Hom_R(N1,M)</tt> in the first case, or the map <tt>Hom_R(M,N1) --> Hom_R(M,N2)</tt> in the second case</span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div>If <tt>f</tt> is a map of chain complexes, then the result is a <span>a <a href="___Chain__Complex__Map.html">chain complex map</a></span>.<table class="examples"><tr><td><pre>i1 : R = QQ[a..d];</pre>
</td></tr>
<tr><td><pre>i2 : I = ideal(a*b,c*d);

o2 : Ideal of R</pre>
</td></tr>
<tr><td><pre>i3 : J = I + ideal(a*d);

o3 : Ideal of R</pre>
</td></tr>
<tr><td><pre>i4 : f = inducedMap(module J,module I)

o4 = {2} | 1 0 |
     {2} | 0 1 |
     {2} | 0 0 |

o4 : Matrix</pre>
</td></tr>
<tr><td><pre>i5 : g = Hom(R^3,f)

o5 = {2} | 1 0 0 0 0 0 |
     {2} | 0 1 0 0 0 0 |
     {2} | 0 0 0 0 0 0 |
     {2} | 0 0 1 0 0 0 |
     {2} | 0 0 0 1 0 0 |
     {2} | 0 0 0 0 0 0 |
     {2} | 0 0 0 0 1 0 |
     {2} | 0 0 0 0 0 1 |
     {2} | 0 0 0 0 0 0 |

o5 : Matrix</pre>
</td></tr>
<tr><td><pre>i6 : ker g

o6 = image 0

                             3
o6 : R-module, submodule of R</pre>
</td></tr>
<tr><td><pre>i7 : image g

o7 = image | ab cd 0  0  0  0  |
           | 0  0  ab cd 0  0  |
           | 0  0  0  0  ab cd |

                             3
o7 : R-module, submodule of R</pre>
</td></tr>
</table>
</div>
</div>
<div class="single"><h2>Caveat</h2>
<div>Not all possible combinations are implemented yet</div>
</div>
</div>
</body>
</html>