<!DOCTYPEhtml PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type"
content="text/html; charset=ISO-8859-1">
<title>AboutHap</title>
</head>
<body style="color: rgb(0, 0, 153); background-color: rgb(204, 255, 255);"
alink="#000066"link="#000066" vlink="#000066">
<br>
<table style="text-align: left; margin-left: auto; margin-right: auto; color: rgb(0, 0, 102);"
border="0" cellpadding="20" cellspacing="10">
<tbody>
<tr align="center">
<thstyle="vertical-align: top;">
<tablestyle="width: 100%; text-align: left;" cellpadding="2"
cellspacing="2">
<tbody>
<tr>
<tdstyle="vertical-align: top;"><a
href="aboutSpaceGroup.html"><smallstyle="color: rgb(0, 0, 102);">Previous</small></a><br>
</td>
<td style="text-align: center; vertical-align: top; color: rgb(0, 0, 102);"><big><span style="font-weight: bold;">About HAP: The
Rosenberger monster - an example of how to piece together information <br>
</span></big></td>
<tdstyle="text-align: right; vertical-align: top;"><a
href="aboutCocycles.html"><smallstyle="color: rgb(0, 0, 102);">next</small></a><br>
</td>
</tr>
</tbody>
</table>
<big><spanstyle="font-weight: bold;"></span></big><br>
</th>
</tr>
<tr>
<td style="vertical-align: top; background-color: rgb(255, 255, 255); text-align: left;">A
<spanstyle="font-style: italic;">generalized triangle group</span>
is a group given by a presentation <br>
<divstyle="text-align: center;"><br>
< a, b | a<sup>p</sup> = b<sup>q</sup> = R<sup>m</sup> = 1 ><br>
<br>
</div>
where p, q , m are integers greater than 1 and R is a reduced word in
the free monoid on a and b. The finite generalized triangle groups were
classified in <br>
<ul>
<li>[J. Howie, V.Metaftsis & R.M.Thomas, Triangle groups
and their generalizations, <spanstyle="font-style: italic;">Groups
Korea '94, pages 135-147, (de Gruyter 1995)],
<li>[L. Levai, G. Rosenberger and B. Souvignier, All finite
generalized triangle groups, <spanstyle="font-style: italic;">Transactions
American Mathematical Society </span>347 (9) (1995), 3625-3627].</li>
</ul>
The largest finite generalized triangle group is<br>
<br>
<divstyle="text-align: center;">G = < a, b
| a<sup>2</sup>, b<sup>3</sup>, (abababab<sup>2</sup>ab<sup>2</sup>abab<sup>2</sup>ab<sup>2</sup>)<sup>2</sup>
> <br>
</div>
<br>
and has order |G| = 2<sup>20</sup> 3<sup>4</sup> 5 . It has been named
the <spanstyle="font-style: italic;">Rosenberger monster</span>. The
following GAP commands, which were shown to me by R.F. Morse, create a
solvable subgroup K in G of index 5.<br>
</td>
</tr>
<tr>
<td style="background-color: rgb(255, 255, 204); vertical-align: top;">gap>
F := FreeGroup("a","b");; a:=F.1;; b:=F.2;;<br>
gap> R := [a^2, b^3, (a*b*a*b*a*b*a*b^2*a*b^2*a*b*a*b^2*a*b^2)^2];;<br>
gap> G := F/R;;<br>
<br>
gap> a:= G.1;; b:=G.2;;<br>
gap> K:=Subgroup(G, [a, (b^a)^b, (b^a)^(b^2)]);;<br>
gap> Index(G,K);<br>
5<br>
</td>
</tr>
<tr>
<td style="background-color: rgb(255, 255, 255); vertical-align: top;">The
Schur Multiplier H<sub>2</sub>(G,Z) of the Rosenberger monster is a
quotient of H<sub>2</sub>(K,Z) since K contains the Sylow 2-subgroup
and Sylow 3-subgroup of G, and the Sylow 5-subgroup is cyclic and thus
has trivial Schur multiplier. The following commands first create a
pc-group Kpc isomorphism to K, then construct three terms of a
resolution for K, and finally show that H<sub>1</sub>(K,Z)=H<sub>2</sub>(K,Z)
= Z<sub>3</sub>+Z<sub>6</sub> . <br>
</td>
</tr>
<tr>
<td style="background-color: rgb(255, 255, 204); vertical-align: top;">gap>
K_iso_Kfp := IsomorphismFpGroup(K);;<br>
gap> Kfp:=Image(K_iso_Kfp);;<br>
gap> Kfp_iso_Kpc:= EpimorphismSolvableQuotient(Kfp,2^20*3^4);;<br>
gap> Kpc:=Image(Kfp_iso_Kpc);;<br>
<br>
gap> D:=DerivedSeries(Kpc)[3];;<br>
gap> NatHom:=NaturalHomomorphismByNormalSubgroup(Kpc,D);;<br>
gap> Q:=Image(NatHom);;<br>
<br>
gap> N:=NormalSubgroups(Q)[12];;<br>
gap> RQ:=ResolutionNormalSeries([Q,N,TrivialSubgroup(Q)],3);;<br>
<br>
gap> RD:=ResolutionNilpotentGroup(D,3);;<br>
gap> RKpc:=ResolutionExtension(NatHom,RD,RQ);;<br>
<br>
gap> TRKpc:=TensorWithIntegers(RKpc);;<br>
gap> Homology(TRKpc,1);<br>
[ 3, 6 ]<br>
<br>
gap> Homology(TRKpc,2);<br>
[ 3, 6 ]<br>
</td>
</tr>
<tr>
<td style="vertical-align: top; background-color: rgb(255, 255, 255);">The
following commands construct the group D=[[G,G],[G,G]] and show that H<sub>2</sub>(G/D,Z)=Z<sub>6</sub>
and D=[G,D] .</td>
</tr>
<tr>
<td style="vertical-align: top; background-color: rgb(255, 255, 204);">gap>
D:=DerivedSubgroup(DerivedSubgroup(G));;<br>
gap> GroupHomology(G/D,2);<br>
[ 2, 3 ]<br>
gap> Index(G,D)=Index(G,CommutatorSubgroup(G,D));<br>
true<br>
</td>
</tr>
<tr>
<td style="vertical-align: top; background-color: rgb(255, 255, 255);">The
five term exact sequence in integral homology (see <a
href="aboutSchurMultiplier.html">this page</a> for details) arising
from the normal subgroup D in G yields a surjection H<sub>2</sub>(G,Z)
→ H<sub>2</sub>(G/D,Z) . We conclude that the Schur multiplier of the
Rosenberger monster is either<br>
<br>
<divstyle="text-align: center;">H<sub>2</sub>(G,Z) = Z<sub>3</sub>+Z<sub>6</sub>
<spanstyle="font-weight: bold;">or </span>
H<sub>2</sub>(G,Z) = Z<sub>6 </sub>.<sub>.</sub><br>
<divstyle="text-align: left;"><br>
We can complete the calculation of H<sub>2</sub>(G,Z) using the
following basic result.<br>
<br>
<table style="margin-left: auto; margin-right: auto; width: 80%; text-align: left;"
border="0" cellpadding="20" cellspacing="0">
<tbody>
<tr>
<td style="vertical-align: top; background-color: rgb(204, 255, 255);">For
any finite group G with presentation G = < <span style="text-decoration: underline;">x</span> | <span style="text-decoration: underline;">r</span> > the minimum number
of generator of the Schur multiplier dH<sub>2</sub>(G,Z) satisfies<br>
<br>
<divstyle="text-align: center;">dH<sub>2</sub>(G,Z) < |<span style="text-decoration: underline;">r</span>| - |<span style="text-decoration: underline;">x</span>| + 1 .<br>
</div>
</td>
</tr>
</tbody>
</table>
<br>
This result follows from the fact that H<sub>*</sub>(G,Z) is finite and
is the homology of a chain complex of free abelian groups with 1
generator in dimension 0, |x| generators in dimension 1 and |<span style="text-decoration: underline;">r</span>| generators in dimension
2. We now have the following. <br>
<br>
<table style="margin-left: auto; margin-right: auto; width: 80%; text-align: left;"
border="0" cellpadding="20" cellspacing="0">
<tbody>
<tr>
<td style="vertical-align: top; background-color: rgb(204, 255, 255);"><span style="font-weight: bold;">Proposition<br>
<br>
</span>The Rosenberger monster has Schur multiplier H<sub>2</sub>(G,Z)
= Z<sub>6</sub> .<spanstyle="font-weight: bold;"><br>
</span></td>
</tr>
</tbody>
</table>
<br>
</div>
</div>
</td>
</tr>
<tr>
<tdstyle="vertical-align: top;">
<table style="margin-left: auto; margin-right: auto; width: 100%; text-align: left;"
border="0" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<tdstyle="vertical-align: top;"><a style="color: rgb(0, 0, 102);" href="aboutSpaceGroup.html">Previous
Page</a><br>
</td>
<tdstyle="text-align: center; vertical-align: top;"><a
href="aboutContents.html"><spanstyle="color: rgb(0, 0, 102);">Contents</span></a><br>
</td>
<tdstyle="text-align: right; vertical-align: top;"><a
href="aboutCocycles.html"><spanstyle="color: rgb(0, 0, 102);">Next
page</span><br>
</a> </td>
</tr>
</tbody>
</table>
<a href="aboutTopology.html"><br>
</a> </td>
</tr>
</tbody>
</table>
<br>
<br>
</body>
</html>
Messung V0.5
¤ Dauer der Verarbeitung: 0.11 Sekunden
(vorverarbeitet)
¤
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 und die Messung sind noch experimentell.