<!-- %W maintain.xml GAP 4 package AtlasRep Thomas Breuer -->
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->
<Chapter Label="chap:maintain">
<Heading>Maintenance Issues of the &AtlasRep; Package</Heading>
This is just preliminary, in particular not intended for inclusion in the manual!
<hier/>
This chapter describes why some data that are available in the web &ATLAS;
are excluded from the &GAP; interface,
by which data they have been replaced (if applicable),
and which additional data are distributed together with the
&AtlasRep; package.
-> section on just added material, such as cyc2ccls scripts
-> document all in datapkg!
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->
<Section Label="sect:kernel_scripts">
<Heading>Generators of Kernels</Heading>
- change the code!
- test.g -> not only for compatible std. generators & same std.!
run for 3^(1+12):2.Suz.2
Print( "hier\n" );
if entry[1] = "3^(1+12):2.Suz.2" then
SetSize( N, 3^13 );
fi;
#T for 3^13, calling Size exceeds the memory!
#T (trans. permutation action on 3^12 = 531441 points!)
-> how to verify that the kernel is correct?
Note that the program computes elements in G,
in particular we are not concerned with standardization in F,
and we do not assume that the given standard generators of G
are compatible with some standard generators of F.
(Only relation: If G has several normal subgroups N such that G/N
is isomorphic with F and if the i-th std. gens of G and F are compatible
then we prefer the normal subgroup that is the kernel of the epim.
given by mapping the i-th std. gen. of G to those of F.)
- provide kernel info also for incompatible generators:
- hard case:
2.2E6(2) ->> 2E6(2) (and analog. 2^2.2E6(2) -> 2E6(2))
need to skip obviously unnecessary words;
the > 5593818-th word works (which exactly?),
but only 525 words must actually be tested (really?)
(altogether 10 minutes runtime!)
-> is equal to (m2^2*m1)^3*m2*m1*m2^2*m1*(m2*m1)^4
with slp 3:= 2*1
4:= 2*3
5:= 4^3 (2 mult)
6:= 3^4 (2 mult)
7:= 5*3
8:= 7*4
9:= 8*6
thus 9 mult!
-> add a remark about the arbitr. of the printed factoriz.!
(only those numbers are shown for which all syllables are below the el. order,
and "-" means that the order in the factor group is even, which need not be
checked)
- function is AGR.Test.ComputeKernelGenerators...
-> better move out from Test!
- really verify the non-cyclic kernels! (see TODO_2)
f:= FreeMonoid( 2 );
mgens:= GeneratorsOfMonoid( f );
iter:= Iterator( f );
for word in iter do
m:= MappedWord( word, mgens, gens );
fm:= MappedWord( word, mgens, fgens );
ord:= Order( fm );
if Order( m ) <> ord then
kergen:= m^ord;
if not kergen in kergens then
Add( kergens, kergen );
Add( kerwords, word );
if Length( kerwords ) >= 1 then
Error("!");
fi;
fi;
fi;
od;
word;
Order( m );
Order( fm );
brk> word;
m1
brk> Order( m );
4
brk> Order( fm );
2
#I AGR.Test.KernelGenerators for 2.A10.2: missing kernels of epim. to
#I [ "A10.2" ]
#I AGR.Test.KernelGenerators for 2.A12.2: missing kernels of epim. to
#I [ "A12.2" ]
#I AGR.Test.KernelGenerators for 2.A13.2: missing kernels of epim. to
#I [ "A13.2" ]
#I AGR.Test.KernelGenerators for 2.A8.2: missing kernels of epim. to
#I [ "A8.2" ]
#I AGR.Test.KernelGenerators for 2.A9.2: missing kernels of epim. to
#I [ "A9.2" ]
#I AGR.Test.KernelGenerators for 2.B: missing kernels of epim. to
#I [ "B" ]
#I AGR.Test.KernelGenerators for 2.L2(25): missing kernels of epim. to
#I [ "L2(25)" ]
#I AGR.Test.KernelGenerators for 2.O7(3).2: missing kernels of epim. to
#I [ "O7(3).2" ]
#I AGR.Test.KernelGenerators for 2.O8+(2): missing kernels of epim. to
#I [ "O8+(2)" ]
#I AGR.Test.KernelGenerators for 2.O8+(2).2: missing kernels of epim. to
#I [ "O8+(2).2" ]
#I AGR.Test.KernelGenerators for 2.U6(2).2: missing kernels of epim. to
#I [ "U6(2).2" ]
omit 2^2.2E6(2)
#I AGR.Test.KernelGenerators for 2^2.2E6(2).S3: missing kernels of epim. to
#I [ "2E6(2).3.2" ]
#I AGR.Test.KernelGenerators for 2^2.L3(4): missing kernels of epim. to
#I [ "2.L3(4)", "L3(4)" ]
#I AGR.Test.KernelGenerators for 2^2.L3(4).2_2: missing kernels of epim. to
#I [ "L3(4).2_2" ]
#I AGR.Test.KernelGenerators for 6.O7(3).2: missing kernels of epim. to
#I [ "2.O7(3).2", "3.O7(3).2", "O7(3).2" ]
#I AGR.Test.KernelGenerators for Isoclinic(12.M22.2): missing kernels of epim\
. to
#I [ "2.M22.2", "3.M22.2", "6.M22.2", "M22.2" ]
#I AGR.Test.KernelGenerators for Isoclinic(2.A8.2): missing kernels of epim. \
to
#I [ "A8.2" ]
#I AGR.Test.KernelGenerators for Isoclinic(2.HS.2): missing kernels of epim. \
to
#I [ "HS.2" ]
#I AGR.Test.KernelGenerators for Isoclinic(2.Suz.2): missing kernels of epim.\
to
#I [ "Suz.2" ]
#I AGR.Test.KernelGenerators for Isoclinic(4.M22.2): missing kernels of epim.\
to
#I [ "2.M22.2", "M22.2" ]
#I AGR.Test.KernelGenerators for Isoclinic(6.M22.2): missing kernels of epim.\
to
#I [ "3.M22.2", "M22.2" ]
-> no repres.
#I AGR.Test.KernelGenerators for Isoclinic(6.Suz.2): missing kernels of epim.\
to
#I [ "3.Suz.2", "Suz.2" ]
................
#I AGR.Test.KernelGenerators for 3^(1+12):2.Suz.2: missing kernels of epim. t\
o
#I [ "2.Suz.2" ]
#I AGR.Test.KernelGenerators for 3^(1+12):6.Suz.2: missing kernels of epim. t\
o
#I [ "3^(1+12).2.Suz.2", "6.Suz.2" ]
-> Vorsicht:
Ich habe zwar gezeigt, dass die Konjugierten des 3. Erzeugers
mindestens eine 3^13 erzeugen, aber ist es nicht vielleicht mehr?
Und ich habe nicht gezeigt, dass die Untergruppe wirklich normal ist!
(in beiden Fällen, M3max7G0-ker6Suzd2W1 und Mmax7G0-ker2Suzd2W1)
f:= FreeMonoid( 2 );
mgens:= GeneratorsOfMonoid( f );
iter:= Iterator( f );
for word in iter do
m:= MappedWord( word, mgens, gens.generators );
ord:= Order( m );
if ord mod 7 = 0 then
kergen:= m^(ord/7);
if not kergen in kergens then
n:= NormalClosure( g, SubgroupNC( g, [ kergen ] ) );
if 7^5 mod Size( n ) = 0 then
Add( kergens, kergen );
Add( kerwords, [ word, ord/7 ] );
if Length( kerwords ) >= 1 then
Error("!");
fi;
fi;
fi;
fi;
od;
</Section>
ab hier o.k.!
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->
<Section Label="sect:excluded_data">
<Heading>Excluded data files</Heading>
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->
<Subsection Label="subsect:3L37d2_wrong_repres">
<Heading>A matrix representation of <M>3.L_3(7).2</M></Heading>
The files <C>3L37d2G1-f7r6B0.m1</C> and <C>3L37d2G1-f7r6B0.m2</C>
that are available in the web &ATLAS;
contain generators for the group <M>G = 3.L_3(7).2</M>,
but these generators are not standard.
First we show this fact and then we compute standard generators.
Standard generators of <M>G</M> are defined as follows.
<P/>
<Q>Std. gens. of <M>L_3(7).2</M> are <M>c, d</M>, where <M>c</M> in <C>2B</C>,
<M>d</M> in <C>4B</C> (two outer classes),
<M>|cd| = 19</M>, <M>|cdcdd| = 8</M>.
Std. gens. of <M>3.L_3(7).2</M> are preimages <M>C, D</M>
where <M>|CD| = 19</M>.</Q>
<P/>
We create the matrices in &GAP; and check the conditions.
This shows that the given matrices are not <E>standard</E> generators
of <M>G</M>.
In order to convince ourselves that they generate <M>G</M>,
we proceed as follows.
First we compute a faithful permutation representation of the group <M>H</M>,
say, that is generated by the given matrices.
Then we show that the derived subgroup <M>D</M> of <M>H</M> is a perfect group
with a central subgroup <M>Z</M> of order three such that the factor group
<M>D / Z</M> is a simple group that is isomorphic with <M>L_3(7)</M>,
thus <M>D</M> is the triple cover of <M>L_3(7)</M>.
It remains to show that <M>H / Z</M> is not a direct product of <M>D / Z</M>
and a group of order two; for that, it is enough to show that the centralizer
of an element of order <M>19</M> in <M>H</M> has odd order.
<!-- Note that if <M>x</M> is an element of order <M>19</M> in <M>H</M> and <M>H / Z</M> is a direct product of <M>D / Z</M> and a group of order two that is generated by <M>y Z</M> then <M>x^y</M> lies in <M>x Z</M>; since <M>x</M> is the only element in <M>x Z</M> that has order <M>19</M>, we have found an element of even order that commutes with <M>x</M>.
-->
Now let us find standard generators for <M>G</M>.
According to <Cite Key="CCN85" Where="p. 51"/>,
there is exactly one conjugacy class of elements of the orders <M>2</M>
and <M>4</M> in <M>G</M> outside <M>D</M>,
and the given generators have the right orders and lie outside <M>D</M>.
Thus we may keep the first matrix and replace the second one
by a suitable <M>G</M>-conjugate.
<P/>
<Example>
gap> c:= gensimgs[1];;
gap> d:= gensimgs[2];;
gap> repeat
> dr:= d^Random( img );
> until Order( c * dr ) = 19 and Order( (c * dr)^2 * dr ) = 8
> and Size( img ) = Size( SubgroupNC( img, [ c, dr ] ) );
gap>
gap> stdgens:= [ gens[1], PreImagesRepresentative( acthom, dr ) ];
[ < immutable compressed matrix 6x6 over GF(7) >,
< immutable compressed matrix 6x6 over GF(7) > ]
</Example>
<P/>
The erroneous representation gets excluded from the &GAP; interface
by removing it from the data list in the file <F>gap/atlasprm.json</F>
of the &AtlasRep; package and then adding an entry to the global variable
<Ref Var="AGR.ExclusionList"/>.
<!-- and add entry to htm/data/changes.htm -->
<P/>
The standard generators computed as shown above have been added to the
data that are distributed together with the &AtlasRep; package,
the representation is now available with the name <C>3L37d2G1-f7r6aB0</C>;
note that the name <C>3L37d2G1-f7r6B0</C> must be avoided.
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->
<Subsection Label="subsect:2O73d2_wrong_repres">
<Heading>A matrix representation of <M>2.O_7(3).2^*</M></Heading>
The files <C>2O73d2G1-f3r8B0.m1</C> and <C>2O73d2G1-f3r8B0.m2</C>
that are available in the web &ATLAS;
do not contain generators for the group <M>2.O_7(3).2</M>.
Standard generators of <M>2.O_7(3).2</M> are defined as follows.
<P/>
<Q>Standard generators of <M>O_7(3).2</M> are <M>c, d</M>
where <M>c</M> is in class <C>2D</C>,
<M>d</M> has order <M>7</M>,
<M>cd</M> has order <M>26</M> and <M>cdcdd</M> has order <M>14</M>.
Standard generators of <M>2.O_7(3).2</M> are preimages <M>C, D</M>
where <M>D</M> has order <M>7</M>.</Q>
<P/>
We create the matrices in &GAP; and check the conditions.
Since the <C>2D</C> elements in <M>O_7(3).2</M> lift to elements of
order four in <M>2.O_7(3).2</M>,
and since the elements of order <M>26</M> in <M>O_7(3).2</M> lift to
elements of order <M>52</M> in <M>2.O_7(3).2</M>,
the given matrices do not fit.
They would fit, however, to the isoclinic variant <M>G = 2.O_7(3).2^*</M>,
provided that they generate this group and that the first generator
is a preimage of a <C>2D</C> element (that is, <E>not</E> a preimage of a
<C>2E</C> element).
<P/>
In order to convince ourselves that the given matrices generate <M>G</M>,
we proceed as follows.
First we compute a faithful permutation representation of the group <M>H</M>,
say, that is generated by the given matrices.
Then we show that the derived subgroup <M>D</M> of <M>H</M> is a perfect group
with a central subgroup <M>Z</M> of order two such that the factor group
<M>D / Z</M> is a simple group that is isomorphic with <M>O_7(3)</M>,
thus <M>D</M> is the double cover of <M>O_7(3)</M>.
It remains to show that <M>H / Z</M> is not a direct product of <M>D / Z</M>
and a group of order two;
for that, it is enough to show that the centre of <M>H / Z</M> is trivial.
Now we show that the first generator is in fact a preimage of a
<C>2D</C> element in <M>O_7(3).2</M>;
note that this conjugacy class is the first class outside <M>O_7(3)</M>,
and it is uniquely determined by the centralizer order of its elements.
Thus we have shown that the given matrices are standard generators
of the group <M>G</M>.
<P/>
The erroneous representation gets excluded from the &GAP; interface
by removing it from the data list in the file <F>gap/atlasprm.json</F>
of the &AtlasRep; package and then adding an entry to the global variable
<Ref Var="AGR.ExclusionList"/>.
<!-- and add entry to htm/data/changes.htm -->
<P/>
The given matrices have been added to the data that are distributed
together with the &AtlasRep; package,
the representation is now available with the name <C>2O73d2iG1-f3r8B0</C>.
(In order to make this work, also the &ATLAS; name <C>"2O73d2i"</C> for the
group with &GAP; name <C>"Isoclinic(2.O7(3).2)"</C> had to be notified
via a call to <C>AGR.GNAN</C>.
Of course we can create a representation of <M>2.O_7(3).2</M> from this
representation,
by multiplying the first generator with a fourth root of unity,
for example with <C>Z(9)^2</C>.
(see <Cite Key="CCN85" Where="p. xxiii"/>).
Note that this representation is defined over the field with <M>9</M>
elements, and that <M>2.O_7(3).2</M> does not have a faithful matrix
representation of degree <M>8</M> over the field with <M>3</M> elements.
The data that are distributed together with the &AtlasRep; package
contain also this representation, with the name <C>2O73d2G1-f9r8B0</C>.
Some of the straight line programs that are available in the web &ATLAS; for
computing generators of maximal subgroups of the group <M>G = Fi_{22}.2</M>
are not correct.
In fact, all of these programs compute generators for maximal subgroups
but for some of them, the maximal subgroup is in a class different from
the one that is claimed.
<P/>
Thus the programs in question have been excluded from the &GAP; interface
by removing them from the data list in the file <F>gap/atlasprm.json</F>
of the &AtlasRep; package and then adding entries to the global variable
<Ref Var="AGR.ExclusionList"/>.
<P/>
Then the same programs have been added to the data that are distributed
together with the &AtlasRep; package, but with different names;
the mapping of names is as follows.
(A possible reason for the different numbering could be that the classes
of maximal subgroups can be listed either according to non-increasing index
or according to the ordering in <Cite Key="CCN85" Where="p. 163"/>;
note that in the latter ordering, the relatively small <Q>novelties</Q>
<M>G_2(3):2</M> and <M>3^5:(2 \times U_4(2).2)</M> appear in the positions
<M>3</M> and <M>4</M>, respectively, whereas the positions of these groups
according to increasing index must be <M>12</M> and <M>10</M>,
respectively.
Reordering the classes from the latter ordering to the former one would
result in the mapping that appears in the above table;
unfortunately, the straight line programs had not been ordered according to
the latter ordering.).
</Subsection>
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->
<Subsection Label="subsect:L38d2_classreps">
<Heading>Class representatives of <M>L_3(8).2</M></Heading>
1. the script is WRONG:
Take the available 6-dim. repres. over GF(8),
its Brauer character value at 63AB does not fit to the char. table!
2. thus CHOOSE the available repres. as the FIRST one in the table,
find out in which classes the inner elements lie
3. next, determine the outer classes:
- 18A-C by their squares, which are 7th powers of the order 63 elements
- 14G-I by their squares which are connected to the 9th powers of the
order 63 elements
- 8A-B by a representation
4. thus get a unique script; add it!
-> not unique program L38d2G1-cycW1 --can this be improved?
outputs := [ "7GH", "14AB", "63AB", "73AB", "8A-B", "14G-I", "18A-C" ]
-> on 8A-B: 2r2
on 14G-I: y7
on 18A-C: y9
-> mod 3: 8AB disting. by dim. 72, 14G-I by 657
-> mod 7: 8AB disting. by dim. 72, 14G-I by 511
-> mod 73: 8AB disting. by dim. 71, 14G-I by 657, 18A-C by 511
-> available: 9: G ≤ GL(72,7) -> does not help!
23: G ≤ GL(71,73) -> two irreducibles, decidable!
25: G ≤ GL(511a,73)
26: G ≤ GL(511b,73)
gap> prg:= AtlasProgram( "L3(8).2", "cyclic" );
rec( groupname := "L3(8).2", identifier := [ "L3(8).2", "L38d2G1-cycW1", 1 ],
outputs := [ "7GH", "14AB", "63AB", "73AB", "8A-B", "14G-I", "18A-C" ],
program := <straight line program>, standardization := 1, version := "1" )
gap> gens:= OneAtlasGeneratingSetInfo( "L3(8).2", Dimension, 71, Characteristic, 73 );
rec( dim := 71, groupname := "L3(8).2", id := "",
identifier := [ "L3(8).2", [ "L38d2G1-f73r71B0.m1", "L38d2G1-f73r71B0.m2" ],
1, 73 ], repname := "L38d2G1-f73r71B0", repnr := 23, ring := GF(73),
size := 32965632, standardization := 1, type := "matff" )
gap> gens:= AtlasGenerators( gens );
rec( dim := 71,
generators := [ < immutable compressed matrix 71x71 over GF(73) >,
< immutable compressed matrix 71x71 over GF(73) > ],
groupname := "L3(8).2", id := "",
identifier := [ "L3(8).2", [ "L38d2G1-f73r71B0.m1", "L38d2G1-f73r71B0.m2" ],
1, 73 ], repname := "L38d2G1-f73r71B0", repnr := 23, ring := GF(73),
size := 32965632, standardization := 1, type := "matff" )
gap> res:= ResultOfStraightLineProgram( prg.program, gens.generators );;
gap> Length( res );
7
gap> 2b:= res[7]^9;
< immutable compressed matrix 71x71 over GF(73) >
gap> Order( last );
2
gap> BrauerCharacterValue( 2b );
-1
gap> # thus we have 71a!
gap> 8ab:= res[5];
< immutable compressed matrix 71x71 over GF(73) >
gap> Order( last );
8
gap> BrauerCharacterValue( 8ab );
-1-2*E(8)+2*E(8)^3
gap> Quadratic( last );
rec( ATLAS := "-1-2r2", a := -1, b := -2, d := 1, display := "-1-2*Sqrt(2)",
root := 2 )
gap> # thus we have class 8B!
concerning 18A-C:
squares are in 9B, 9C, 9A
and 9A is the 7th power of 63c, 63d, 63h
and 9B is the 7th power of 63a, 63e, 63i
and 9C is the 7th power of 63b, 63f, 63g
-> so we could solve this without a repres.! (and the answer defines some repres.)
and there are representations of degree 146 or 1168 or 657 which couple 7a-c to 7d-f
23: G ≤ GL(71,73)
24: G ≤ GL(441,73)
25: G ≤ GL(511a,73)
26: G ≤ GL(511b,73)
-> but we do not have it!
-> in char. 3, also candidates:
degrees 146, 657
-> use the nat. repres. in char. 2!
</Subsection>
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->
<Section Label="sect:L34_maxes">
<Heading>Maximal Subgroups of <M>L_3(4)</M></Heading>
Two straight line programs that are available in the web &ATLAS; for
computing generators of maximal subgroups of the group <M>G = L_3(4)</M>
are not correct.
<P/>
The contents of the file <C>L34G1-max4W1</C> is as follows.
<P/>
<Listing>
mu 1 2 3
mu 2 1 4
iv 3 5
mu 4 4 2
mu 2 5 4
mu 4 3 2
</Listing>
<P/>
However,
if we apply this program to standard generators of <M>G</M> then
the outputs generate the whole group.
<P/>
<Example>
gap> slp:= ScanStraightLineProgram( "\
> mu 1 2 3\n\
> mu 2 1 4\n\
> iv 3 5\n\
> mu 4 4 2\n\
> mu 2 5 4\n\
> mu 4 3 2", "string" );
rec( program := <straight line program> )
gap> g:= AtlasGroup( "L3(4)" );
Group([ (1,2)(4,6)(5,7)(8,12)(9,14)(10,15)(11,17)(13,19),
(2,3,5,4)(6,8,13,9)(7,10,16,11)(12,18)(14,20,21,15)(17,19) ])
gap> res:= ResultOfStraightLineProgram( slp.program,
> GeneratorsOfGroup( g ) );;
gap> Size( SubgroupNC( g, res ) );
20160
</Example>
<P/>
Similarly, the file <C>L34G1-max5W1</C> has the following contents.
<P/>
<Listing>
mu 1 2 3
mu 2 1 4
iv 3 5
mu 4 5 2
mu 2 3 4
mu 4 3 2
</Listing>
<P/>
The subgroup generated by the outputs of this program has order <M>10</M>
and is hence too small.
<P/>
<Example>
gap> slp:= ScanStraightLineProgram( "\
> mu 1 2 3\n\
> mu 2 1 4\n\
> iv 3 5\n\
> mu 4 5 2\n\
> mu 2 3 4\n\
> mu 4 3 2", "string" );
rec( program := <straight line program> )
gap> res:= ResultOfStraightLineProgram( slp.program,
> GeneratorsOfGroup( g ) );;
gap> Size( SubgroupNC( g, res ) );
10
</Example>
<P/>
Now we want to replace the wrong programs by correct ones.
According to <Cite Key="CCN85" Where="p. 23"/>,
the subgroups in the 3rd, 4th, and 5th class of maximal subgroups of <M>G</M>
are all isomorphic with the alternating group <M>A_6</M>.
Thus our task is to find two subgroups of type <M>A_6</M> in <M>G</M>
that are not conjugate to each other and also not conjugate to the
representative of the 3rd class of maximal subgroups.
<P/>
Our approach is to keep the first generator of <M>G</M> (an involution),
and to iterate over short words in a free monoid until the corresponding
word in the standard generators of <M>G</M> together with the involution
generate a suitable subgroup.
(Note that all subgroups of order <M>360</M> in <M>G</M> are maximal in
<M>G</M> and have the type <M>A_6</M>.)
<P/>
<Example>
gap> g:= AtlasGroup( "L3(4)" );;
gap> s3:= AtlasSubgroup( "L3(4)", 3 );;
gap> Size( s3 ); IsSimple( s3 );
360
true
gap> gens:= ShallowCopy( GeneratorsOfGroup( g ) );;
gap> f:= FreeMonoid( 2 );;
gap> fgens:= GeneratorsOfMonoid( f );;
[ m1, m2 ]
gap> iter:= Iterator( f );;
gap> repeat
> w4:= NextIterator( iter );
> s4:= Group( gens[1], MappedWord( w4, fgens, gens ) );
> until Size( s4 ) = 360 and not IsConjugate( g, s3, s4 );
gap> w4;
m2*m1*m2^3*m1*m2*m1*m2
gap> repeat
> w5:= NextIterator( iter );
> s5:= Group( gens[1], MappedWord( w5, fgens, gens ) );
> until Size( s5 ) = 360
> and not IsConjugate( g, s3, s5 )
> and not IsConjugate( g, s4, s5 );
gap> w5;
m2*m1*m2*m1*m2^3*m1*m2
</Example>
<P/>
The erroneous programs get excluded from the &GAP; interface
by removing them from the data list in the file <F>gap/atlasprm.json</F>
of the &AtlasRep; package and then adding entries to the global variable
<Ref Var="AGR.ExclusionList"/>.
<P/>
The above words have been turned into straight line programs and then added
to the data that are distributed together with the &AtlasRep; package,
the programs are now available with the names <C>L34G1-max4W2</C>;
and <C>L34G1-max5W2</C>, respectively;
note that the names <C>L34G1-max4W1</C> and <C>L34G1-max5W1</C>
must be avoided.
It turns out that the generators of the subgroups are in fact
standard generators of <M>A_6</M>.
<P/>
<Example>
gap> prg:= AtlasProgram( "A6", 1, "check" );
rec( groupname := "A6", identifier := [ "A6", "A6G1-check1", 1, 1 ],
program := <straight line decision>, standardization := 1, version := "1" )
gap> ForAll( subs, s -> ResultOfStraightLineDecision( prg.program,
> GeneratorsOfGroup( s ) ) );
true
</Example>
<P/>
Thus we can provide also the (empty) straight line programs
<C>L34G1max3W1-A6G1W1</C>, <C>L34G1max4W2-A6G1W1</C>, and
<C>L34G1max5W2-A6G1W1</C>,
which express that the &GAP; interface provides <E>standard</E> generators
for the maximal subgroups in question.
¤ 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.0.6Bemerkung:
(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 ist noch experimentell.