Skip to content

Commit 1386e53

Browse files
committed
Subsequent manual changes.
Another manual example that changed
1 parent ee8e289 commit 1386e53

6 files changed

Lines changed: 15 additions & 15 deletions

File tree

doc/tut/group.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -833,9 +833,9 @@ usual way we now look for the subgroups above <C>u105</C>.
833833
gap> blocks := Blocks( a8, orb );; Length( blocks );
834834
15
835835
gap> blocks[1];
836-
[ (1,2)(3,4)(5,6)(7,8), (1,3)(2,4)(5,7)(6,8), (1,4)(2,3)(5,8)(6,7),
837-
(1,5)(2,6)(3,7)(4,8), (1,6)(2,5)(3,8)(4,7), (1,7)(2,8)(3,5)(4,6),
838-
(1,8)(2,7)(3,6)(4,5) ]
836+
[ (1,2)(3,4)(5,6)(7,8), (1,3)(2,4)(5,8)(6,7), (1,4)(2,3)(5,7)(6,8),
837+
(1,5)(2,6)(3,8)(4,7), (1,6)(2,5)(3,7)(4,8), (1,7)(2,8)(3,6)(4,5),
838+
(1,8)(2,7)(3,5)(4,6) ]
839839
]]></Example>
840840
<P/>
841841
To find the subgroup of index 15 we again use closure. Now we must be a
@@ -862,7 +862,7 @@ lie in one orbit under the group,
862862
<Example><![CDATA[
863863
gap> rep := RepresentativeAction( a8, (1,2)(3,4)(5,6)(7,8),
864864
> (1,3)(2,4)(5,8)(6,7) );
865-
(2,3)(6,8)
865+
(1,2,4,3)(6,8)
866866
gap> u15 := ClosureGroup( u105, rep );; Index( a8, u15 );
867867
15
868868
]]></Example>

lib/ctbl.gd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3944,10 +3944,10 @@ DeclareAttributeSuppCT( "SourceOfIsoclinicTable", IsNearlyCharacterTable,
39443944
## gap> tg:= CharacterTable( g );;
39453945
## gap> IsRecord(
39463946
## > TransformingPermutationsCharacterTables( index2[1], tg ) );
3947-
## false
3947+
## true
39483948
## gap> IsRecord(
39493949
## > TransformingPermutationsCharacterTables( index2[2], tg ) );
3950-
## true
3950+
## false
39513951
## ]]></Example>
39523952
## <P/>
39533953
## Alternatively, we could construct the character table of the central

lib/ctblfuns.gd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1345,8 +1345,8 @@ DeclareOperation( "Norm", [ IsOrdinaryTable, IsHomogeneousList ] );
13451345
## <P/>
13461346
## <Example><![CDATA[
13471347
## gap> List( Irr( S4 ), CentreOfCharacter );
1348-
## [ Group([ (), (1,2), (1,2)(3,4), (1,2,3), (1,2,3,4) ]), Group(()),
1349-
## Group([ (1,2)(3,4), (1,4)(2,3) ]), Group(()), Group([ (), (1,2), (1,
1348+
## [ Group([ (), (1,2), (1,2)(3,4), (1,2,3), (1,2,3,4) ]), Group(()),
1349+
## Group([ (1,2)(3,4), (1,3)(2,4) ]), Group(()), Group([ (), (1,2), (1,
13501350
## 2)(3,4), (1,2,3), (1,2,3,4) ]) ]
13511351
## ]]></Example>
13521352
## </Description>
@@ -1501,7 +1501,7 @@ DeclareOperation( "InertiaSubgroup",
15011501
## <P/>
15021502
## <Example><![CDATA[
15031503
## gap> List( Irr( S4 ), KernelOfCharacter );
1504-
## [ Alt( [ 1 .. 4 ] ), Group(()), Group([ (1,2)(3,4), (1,4)(2,3) ]),
1504+
## [ Alt( [ 1 .. 4 ] ), Group(()), Group([ (1,2)(3,4), (1,3)(2,4) ]),
15051505
## Group(()), Group([ (), (1,2), (1,2)(3,4), (1,2,3), (1,2,3,4) ]) ]
15061506
## ]]></Example>
15071507
## </Description>

lib/grp.gd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1877,8 +1877,8 @@ DeclareAttribute( "MinimalNormalSubgroups", IsGroup );
18771877
## returns a list of all normal subgroups of <A>G</A>.
18781878
## <Example><![CDATA[
18791879
## gap> g:=SymmetricGroup(4);;NormalSubgroups(g);
1880-
## [ Sym( [ 1 .. 4 ] ), Alt( [ 1 .. 4 ] ), Group([ (1,4)(2,3), (1,3)
1881-
## (2,4) ]), Group(()) ]
1880+
## [ Sym( [ 1 .. 4 ] ), Alt( [ 1 .. 4 ] ), Group([ (1,4)(2,3), (1,2)
1881+
## (3,4) ]), Group(()) ]
18821882
## ]]></Example>
18831883
## <P/>
18841884
## The algorithm for the computation of normal subgroups is described in

lib/morpheus.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ DeclareGlobalFunction("IsomorphismGroups");
508508
## gap> h:=Group((1,2,3),(1,2));
509509
## Group([ (1,2,3), (1,2) ])
510510
## gap> quo:=GQuotients(g,h);
511-
## [ [ (1,2,3,4), (1,3,4) ] -> [ (2,3), (1,2,3) ] ]
511+
## [ [ (1,3,2,4), (1,2,3) ] -> [ (2,3), (1,2,3) ] ]
512512
## ]]></Example>
513513
## </Description>
514514
## </ManSection>

lib/teaching.g

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,9 @@ DeclareGlobalFunction("CosetDecomposition");
194194
## <A>H</A>-conjugacy.
195195
## <Example><![CDATA[
196196
## gap> AllHomomorphismClasses(SymmetricGroup(4),SymmetricGroup(3));
197-
## [ [ (1,2,3), (2,4) ] -> [ (), () ],
198-
## [ (1,2,3), (2,4) ] -> [ (), (1,2) ],
199-
## [ (1,2,3), (2,4) ] -> [ (1,2,3), (1,2) ] ]
197+
## [ [ (1,2,3,4), (1,2) ] -> [ (), () ],
198+
## [ (1,2,3,4), (1,2) ] -> [ (2,3), (1,2) ],
199+
## [ (1,2,3,4), (1,2) ] -> [ (1,2), (1,2) ] ]
200200
## ]]></Example>
201201
## </Description>
202202
## </ManSection>

0 commit comments

Comments
 (0)