Skip to content

Commit

Permalink
Subsequent example changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hulpke committed Dec 27, 2022
1 parent 3230054 commit 8b935b0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/ctblfuns.gd
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@ DeclareAttribute( "TrivialCharacter", IsGroup );
## gap> NaturalCharacter( Group( [ [ 0, -1 ], [ 1, -1 ] ] ) );
## Character( CharacterTable( Group([ [ [ 0, -1 ], [ 1, -1 ] ] ]) ),
## [ 2, -1, -1 ] )
## gap> d8:= DihedralGroup( 8 );; hom:= IsomorphismPermGroup( d8 );;
## gap> d8:= DihedralGroup( 8 );; hom:= RegularActionHomomorphism( d8 );;
## gap> NaturalCharacter( hom );
## Character( CharacterTable( <pc group of size 8 with 3 generators> ),
## [ 8, 0, 0, 0, 0 ] )
Expand Down
1 change: 1 addition & 0 deletions lib/factgrp.gd
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ DeclareSynonym( "ImproveOperationDegreeByBlocks",
## called internally might try a degree reduction.)
## <P/>
## <Example><![CDATA[
## gap> iso:=RegularActionHomomorphism(SymmetricGroup(4));;
## gap> image:= Image( iso );; NrMovedPoints( image );
## 24
## gap> small:= SmallerDegreePermutationRepresentation( image );;
Expand Down
5 changes: 2 additions & 3 deletions lib/grp.gd
Original file line number Diff line number Diff line change
Expand Up @@ -4279,10 +4279,9 @@ DeclareAttribute( "IsomorphismSpecialPcGroup", IsGroup );
## gap> g:=SmallGroup(24,12);
## <pc group of size 24 with 4 generators>
## gap> iso:=IsomorphismPermGroup(g);
## <action isomorphism>
## [ f1, f2, f3, f4 ] -> [ (2,3), (2,3,4), (1,2)(3,4), (1,3)(2,4) ]
## gap> Image(iso,g.3*g.4);
## (1,12)(2,16)(3,19)(4,5)(6,22)(7,8)(9,23)(10,11)(13,24)(14,15)(17,
## 18)(20,21)
## (1,4)(2,3)
## ]]></Example>
## <P/>
## In many cases the permutation representation constructed by
Expand Down

0 comments on commit 8b935b0

Please sign in to comment.