<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ LinearRepresentationIsomorphism</code>( <var class="Arg">rho</var>, <var class="Arg">tau</var>[, <var class="Arg">rho_cent_basis</var>, <var class="Arg">tau_cent_basis</var>] )</td><td class="tdright">( function )</td></tr></table></div>
<p>Returns: A matrix <span class="SimpleMath">\(A\)</span> or fail</p>
<p>Let <span class="SimpleMath">\(\rho : G \to GL(V)\)</span> and <span class="SimpleMath">\(\tau : G \to GL(W)\)</span>. If there exists a linear map <span class="SimpleMath">\(A : V \to W\)</span> such that for all <span class="SimpleMath">\(g \in G\)</span>, <span class="SimpleMath">\(\tau(g)A = A\rho(g)\)</span>, this function returns one such <span class="SimpleMath">\(A\)</span>. <span class="SimpleMath">\(A\)</span> is the isomorphism between the representations. If the representations are not isomorphic, then fail is returned.</p>
<p>There are three methods that we can use to compute an isomorphism of linear representations, you can select one by passing options to the function.</p>
<ul>
<li><p><code class="code">use_kronecker</code>: Assumes the matrices are small enough that their Kronecker products can fit into memory. Uses <code class="func">GroupSumBSGS</code> (<a href="chap4_mj.html#X85E8A5FC844DC09A"><span class="RefLink">4.2-1</span></a>) and <code class="code">KroneckerProduct</code> to compute an element of the fixed subspace of <span class="SimpleMath">\(\rho \otimes \tau^*\)</span>.</p>
</li>
</ul>
<ul>
<li><p><code class="code">use_orbit_sum</code>: Finds an isomorphism by summing orbits of the the action of <span class="SimpleMath">\(\rho \otimes \tau^*\)</span> on matrices. Note that orbits could be very large, so this could be as bad as summing over the whole group.</p>
</li>
</ul>
<ul>
<li><p>The default, sums over the whole group to compute the projection onto the fixed subspace.</p>
</li>
</ul>
<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput">G := SymmetricGroup(4);;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">irreps := IrreducibleRepresentations(G);;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput"># rho and tau are isomorphic - they just have a different block order</span>
<span class="GAPprompt">></span> <span class="GAPinput">rho := DirectSumOfRepresentations([irreps[1], irreps[3], irreps[3]]);;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">tau := DirectSumOfRepresentations([irreps[3], irreps[1], irreps[3]]);;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput"># tau2 is just tau with a basis change - still isomorphic</span>
<span class="GAPprompt">></span> <span class="GAPinput">B := RandomInvertibleMat(5);;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">tau2 := ComposeHomFunction(tau, x -> B^-1 * x * B);;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput"># using the default implementation</span>
<span class="GAPprompt">></span> <span class="GAPinput">M := LinearRepresentationIsomorphism(rho, tau);;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">IsLinearRepresentationIsomorphism(M, rho, tau);</span>
true
<span class="GAPprompt">gap></span> <span class="GAPinput">M := LinearRepresentationIsomorphism(tau, tau2);;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">IsLinearRepresentationIsomorphism(M, tau, tau2);</span>
true
<span class="GAPprompt">gap></span> <span class="GAPinput"># using the kronecker sum implementation</span>
<span class="GAPprompt">></span> <span class="GAPinput">M := LinearRepresentationIsomorphism(tau, tau2 : use_kronecker);;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">IsLinearRepresentationIsomorphism(M, tau, tau2);</span>
true
<span class="GAPprompt">gap></span> <span class="GAPinput"># using the orbit sum implementation</span>
<span class="GAPprompt">></span> <span class="GAPinput">M := LinearRepresentationIsomorphism(tau, tau2 : use_orbit_sum);;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">IsLinearRepresentationIsomorphism(M, tau, tau2);</span>
true
<span class="GAPprompt">gap></span> <span class="GAPinput"># two distinct irreps are not isomorphic</span>
<span class="GAPprompt">></span> <span class="GAPinput">M := LinearRepresentationIsomorphism(irreps[1], irreps[2]);</span>
fail
</pre></div>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ LinearRepresentationIsomorphismSlow</code>( <var class="Arg">rho</var>, <var class="Arg">tau</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Returns: A matrix <span class="SimpleMath">\(A\)</span> or fail</p>
<p>Gives the same result as <code class="func">LinearRepresentationIsomorphism</code> (<a href="chap2_mj.html#X7F0D3CFB7800149A"><span class="RefLink">2.1-1</span></a>), but this function uses a simpler method which always involves summing over <span class="SimpleMath">\(G\)</span>, without using <code class="func">GroupSumBSGS</code> (<a href="chap4_mj.html#X85E8A5FC844DC09A"><span class="RefLink">4.2-1</span></a>). This might be useful in some cases if computing a good BSGS is difficult. However, for all cases that have been tested, it is slow (as the name suggests).</p>
<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput"># Following on from the previous example</span>
<span class="GAPprompt">></span> <span class="GAPinput">M := LinearRepresentationIsomorphismSlow(rho, tau);;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">IsLinearRepresentationIsomorphism(M, rho, tau);</span>
true
</pre></div>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ AreRepsIsomorphic</code>( <var class="Arg">rho</var>, <var class="Arg">tau</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Returns: true if <var class="Arg">rho</var> and <var class="Arg">tau</var> are isomorphic as representations, false otherwise.</p>
<p>Since representations of finite groups over <span class="SimpleMath">\(\mathbb{C}\)</span> are determined by their characters, it is easy to check whether two representations are isomorphic by checking if they have the same character. We try to use characters wherever possible.</p>
<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput"># Following on from the previous examples</span>
<span class="GAPprompt">></span> <span class="GAPinput"># Some isomorphic representations</span>
<span class="GAPprompt">></span> <span class="GAPinput">AreRepsIsomorphic(rho, tau);</span>
true
<span class="GAPprompt">gap></span> <span class="GAPinput">AreRepsIsomorphic(rho, tau2);</span>
true
<span class="GAPprompt">gap></span> <span class="GAPinput"># rho isn't iso to irreps[1] since rho is irreps[1] plus some other stuff
<span class="GAPprompt">></span> <span class="GAPinput">AreRepsIsomorphic(rho, irreps[1]);</span>
false
</pre></div>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ IsLinearRepresentationIsomorphism</code>( <var class="Arg">A</var>, <var class="Arg">rho</var>, <var class="Arg">tau</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Returns: true if <var class="Arg">rho</var> and <var class="Arg">tau</var> are isomorphic as as representations with the isomorphism given by the linear map <var class="Arg">A</var></p>
<p>This function tests if, for all <span class="SimpleMath">\(g \in G\)</span>, <span class="SimpleMath">\(A \rho(g) = \tau(g) A\)</span>. That is, true is returned iff <span class="SimpleMath">\(A\)</span> is the intertwining operator taking <span class="SimpleMath">\(\rho\)</span> to <span class="SimpleMath">\(\tau\)</span>. that:</p>
<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput"># We have already seen this function used heavily in previous examples.</span>
<span class="GAPprompt">></span> <span class="GAPinput"># If two representations are isomorphic, the following is always true:</span>
<span class="GAPprompt">></span> <span class="GAPinput">IsLinearRepresentationIsomorphism(LinearRepresentationIsomorphism(rho, tau), rho, tau);</span>
true
<span class="GAPprompt">gap></span> <span class="GAPinput"># Note: this test is sensitive to ordering:</span>
<span class="GAPprompt">></span> <span class="GAPinput">IsLinearRepresentationIsomorphism(LinearRepresentationIsomorphism(rho, tau), tau, rho);</span>
false
</pre></div>
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.