<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ Comm</code>( <var class="Arg">L</var> )</td><td class="tdright">( operation )</td></tr></table></div>
<p>This method has been transferred from package <strong class="pkg">ResClasses</strong>.</p>
<p>It provides a method for <code class="code">Comm</code> when the argument is a list (enclosed in square brackets), and calls the function <code class="code">LeftNormedComm</code>.</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ ListOfPowers</code>( <var class="Arg">g</var>, <var class="Arg">exp</var> )</td><td class="tdright">( operation )</td></tr></table></div>
<p>This function has been transferred from package <strong class="pkg">RCWA</strong>.</p>
<p>The operation <code class="code">ListOfPowers(g,exp)</code> returns the list <span class="SimpleMath">[g,g^2,...,g^exp]</span> of powers of the element <span class="SimpleMath">g</span>.</p>
<p>The upper and lower Fitting series and the Fitting length of a solvable group are described here: <span class="URL"><a href="https://en.wikipedia.org/wiki/Fitting_length">https://en.wikipedia.org/wiki/Fitting_length</a></span>.</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ LeftCoset</code>( <var class="Arg">g</var>, <var class="Arg">U</var> )</td><td class="tdright">( operation )</td></tr></table></div>
<p>Since <strong class="pkg">GAP</strong> uses right actions by default, the library contains the operation <code class="code">RightCoset(U,g)</code> for constructing the right coset <span class="SimpleMath">Ug</span> of a subgroup <span class="SimpleMath">U ≤ G</span> and an element <span class="SimpleMath">g ∈ G</span>. It has been noted in the reference manual that, by inverting all the elements in <span class="SimpleMath">Ug</span>, the left coset <span class="SimpleMath">g^-1U</span> is obtained.</p>
<p>Just for the sake of completeness, from August 2022 this package provides the operation <code class="code">LeftCoset(g,U)</code> for constructing the left coset <span class="SimpleMath">gU</span>. Users are strongly recommended to continue to use <code class="code">RightCoset</code> for all serious calculations, since left cosets have a much simpler implementation and do not behave exactly like right cosets.</p>
<p>The methods for left cosets which are provided generally work by converting <span class="SimpleMath">gU</span> to <span class="SimpleMath">Ug^-1</span>; applying the equivalent method for right cosets; and, if necessary, converting back again to left cosets.</p>
<p><span class="SimpleMath">G</span> acts on left cosets by <code class="code">OnLeftInverse</code>: <span class="SimpleMath">(gU)^g_0 = g_0^-1*(gU) = (g_0^-1g)U</span>.</p>
<p>The inverse of the left coset <span class="SimpleMath">gU</span> is the right coset <span class="SimpleMath">Ug^-1</span>, and conversely. This is an abuse of the attribute <code class="code">Inverse</code>, since the standard requirement, that <span class="SimpleMath">x*x^-1</span> is an identity, does not hold.</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ EpimorphismByGenerators</code>( <var class="Arg">G</var>, <var class="Arg">H</var> )</td><td class="tdright">( operation )</td></tr></table></div>
<p>This function has been transferred from package <strong class="pkg">RCWA</strong>.</p>
<p>It constructs a group homomorphism which maps the generators of <span class="SimpleMath">G</span> to those of <span class="SimpleMath">H</span>. Its intended use is when <span class="SimpleMath">G</span> is a free group, and a warning is printed when this is not the case. Note that anything may happen if the resulting map is not a homomorphism!</p>
<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput">G := Group( (1,2,3), (3,4,5), (5,6,7), (7,8,9) );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">phi := EpimorphismByGenerators( FreeGroup("a","b","c","d"), G );</span>
[ a, b, c, d ] -> [ (1,2,3), (3,4,5), (5,6,7), (7,8,9) ]
<span class="GAPprompt">gap></span> <span class="GAPinput">PreImagesRepresentativeNC( phi, (1,2,3,4,5,6,7,8,9) );</span>
d*c*b*a
<span class="GAPprompt">gap></span> <span class="GAPinput">a := G.1;; b := G.2;; c := G.3;; d := G.4;;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">d*c*b*a;</span>
(1,2,3,4,5,6,7,8,9)
<span class="GAPprompt">gap></span> <span class="GAPinput">## note that it is easy to produce nonsense: </span>
<span class="GAPprompt">gap></span> <span class="GAPinput">epi := EpimorphismByGenerators( Group((1,2,3)), Group((8,9)) );</span>
Warning: calling GroupHomomorphismByImagesNC without checks
[ (1,2,3) ] -> [ (8,9) ]
<span class="GAPprompt">gap></span> <span class="GAPinput">IsGroupHomomorphism( epi );</span>
true
<span class="GAPprompt">gap></span> <span class="GAPinput">Image( epi, (1,2,3) ); </span>
()
<span class="GAPprompt">gap></span> <span class="GAPinput">Image( epi, (1,3,2) );</span>
(8,9)
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ Pullback</code>( <var class="Arg">hom1</var>, <var class="Arg">hom2</var> )</td><td class="tdright">( operation )</td></tr></table></div>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ PullbackInfo</code>( <var class="Arg">G</var> )</td><td class="tdright">( attribute )</td></tr></table></div>
<p>If <span class="SimpleMath">ϕ_1 : G_1 -> H</span> and <span class="SimpleMath">ϕ_2 : G_2 -> H</span> are two group homomorphisms with the same range, then their <em>pullback</em> is the subgroup of <span class="SimpleMath">G_1 × G_2</span> consisting of those elements <span class="SimpleMath">(g_1,g_2)</span> such that <span class="SimpleMath">ϕ_1 g_1 = ϕ_2 g_2</span>.</p>
<p>The attribute <code class="code">PullbackInfo</code> of a pullback group <code class="code">P</code> is similar to <code class="code">DirectProductInfo</code> for a direct product of groups. Its value is a record with the following components:</p>
</dd>
<dt><strong class="Mark"><code class="code">projections</code></strong></dt>
<dd><p>a list with the two projections onto <span class="SimpleMath">G_1</span> and <span class="SimpleMath">G_2</span>.</p>
</dd>
</dl>
<p>There are no embeddings in this record, but it is possible to use the embeddings into the direct product, see <code class="func">Embedding</code> (<a href="/home/runner/gap/doc/ref/chap32.html#X86452F8587CBAEA0"><span class="RefLink">Reference: Embedding</span></a>).</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ CentralProduct</code>( <var class="Arg">G1</var>, <var class="Arg">G2</var>, <var class="Arg">Z1</var>, <var class="Arg">Phi</var> )</td><td class="tdright">( operation )</td></tr></table></div>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ CentralProductInfo</code>( <var class="Arg">G</var> )</td><td class="tdright">( attribute )</td></tr></table></div>
<p>This function was added by Thomas Breuer, following discussions with Hongyi Zhao (see <span class="URL"><a href="https://github.com/gap-packages/hap/issues/73">https://github.com/gap-packages/hap/issues/73</a></span>).</p>
<p>Let <var class="Arg">G1</var> and <var class="Arg">G2</var> be two groups, <var class="Arg">Z1</var> be a central subgroup of <var class="Arg">G1</var>, and <var class="Arg">Phi</var> be an isomorphism from <var class="Arg">Z1</var> to a central subgroup of <var class="Arg">G2</var>. The <em>central product</em> defined by these arguments is the factor group of the direct product of <var class="Arg">G1</var> and <var class="Arg">G2</var> by the central subgroup <span class="SimpleMath">{ (z, (<var class="Arg">Phi</var>(z))^-1) : z ∈ <var class="Arg">Z1</var> }</span>.</p>
<p>The attribute <code class="func">CentralProductInfo</code> of a group <span class="SimpleMath">G</span> that has been created by <code class="func">CentralProduct</code> is similar to <code class="func">PullbackInfo</code> (<a href="chap5.html#X7C705F2A79F8E43C"><span class="RefLink">5.3-2</span></a>) for pullback groups. Its value is a record with the following components.</p>
<dl>
<dt><strong class="Mark"><code class="code">projection</code></strong></dt>
<dd><p>the epimorphism from the direct product of <var class="Arg">G1</var> and <var class="Arg">G2</var> to <span class="SimpleMath">G</span>, and</p>
</dd>
</dl>
<p>Note that one can access the direct product as the <code class="func">Source</code> (<a href="/home/runner/gap/doc/ref/chap32.html#X7DE8173F80E07AB1"><span class="RefLink">Reference: Source</span></a>) value of the <code class="code">projection</code> map, and one can access <var class="Arg">G1</var> and <var class="Arg">G2</var> as the two embeddings of this direct product, see <codeclass="func">Embedding</code> (<a href="/home/runner/gap/doc/ref/chap32.html#X86452F8587CBAEA0"><span class="RefLink">Reference: Embedding</span></a>).</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ IdempotentEndomorphisms</code>( <var class="Arg">G</var> )</td><td class="tdright">( operation )</td></tr></table></div>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ IdempotentEndomorphismsData</code>( <var class="Arg">G</var> )</td><td class="tdright">( attribute )</td></tr></table></div>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ IdempotentEndomorphismsWithImage</code>( <var class="Arg">genG</var>, <var class="Arg">R</var> )</td><td class="tdright">( operation )</td></tr></table></div>
<p>An endomorphism <span class="SimpleMath">f : G -> G</span> is idempotent if <span class="SimpleMath">f^2=f</span>. It has an image <span class="SimpleMath">R leqslant G</span>; is the identity map when restricted to <span class="SimpleMath">R</span>; and has a kernel <span class="SimpleMath">N</span> which has trivial intersection with <span class="SimpleMath">R</span> and has size <span class="SimpleMath">|G|/|R|</span>.</p>
<p>The operation <code class="code">IdempotentEndomorphismsWithImage(genG,R)</code> returns a list of the images of the generating set <code class="code">genG</code> of a group <span class="SimpleMath">G</span> under the idempotent endomorphisms with image <span class="SimpleMath">R</span>.</p>
<p>The attribute <code class="code">IdempotentEndomorphismsData(G)</code> returns a record <code class="code">data</code> with fields <code class="code">data.gens</code>, a fixed generating set for <span class="SimpleMath">G</span>, and <code class="code">data.images</code> a list of the non-empty outputs of <code class="code">IdempotentEndomorphismsWithImage(genG,R)</code> obtained by iterating over all subgroups of <span class="SimpleMath">G</span>.</p>
<p>The operation <code class="code">IdempotentEndomorphisms(G)</code> returns the list of these mappings obtained using <code class="code">IdempotentEndomorphismsData(G)</code>. The first of these is the zero map, the second is the identity.</p>
<p>The quaternion group <code class="code">q8</code> is an example of a group with a tail: there is only one subgroup in the lattice which covers the identity subgroup. The only idempotent isomorphisms of such groups are the identity mapping and the zero mapping because the only pairs <span class="SimpleMath">N,R</span> are the whole group and the identity subgroup.</p>
<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput">q8 := QuaternionGroup( 8 );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">IdempotentEndomorphisms( q8 );</span>
[ [ x, y ] -> [ <identity> of ..., <identity> of ... ], [ x, y ] -> [ x, y ] ]
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ DirectProductOfAutomorphismGroups</code>( <var class="Arg">A1</var>, <var class="Arg">A2</var> )</td><td class="tdright">( operation )</td></tr></table></div>
<p>Let <span class="SimpleMath">A_1,A_2</span> be groups of automorphism of groups <span class="SimpleMath">G_1,G_2</span> respectively. The output of this function is a group <span class="SimpleMath">A_1 × A_2</span> of automorphisms of <span class="SimpleMath">G_1 × G_2</span>.</p>
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.