Please note that the functions below are only implemented for finite groups.
‣ RepresentativesAutomorphismClasses( G ) | ( function ) |
Returns: a list of the automorphisms of G up to composition with inner automorphisms.
‣ RepresentativesEndomorphismClasses( G ) | ( function ) |
Returns: a list of the endomorphisms of G up to composition with inner automorphisms.
This does the same as calling AllHomomorphismClasses(G,G), but should be faster for abelian and non-2-generated groups.
‣ RepresentativesHomomorphismClasses( H, G ) | ( function ) |
Returns: a list of the homomorphisms from H to G, up to composition with inner automorphisms of G.
Similar to the previous function, this function does the same as calling AllHomomorphismClasses(H,G), but should be faster for abelian and non-2-generated groups.
gap> G := PcGroupCode( 1018013, 28 );; gap> Auts := RepresentativesAutomorphismClasses( G );; gap> Size( Auts ); 6 gap> Ends := RepresentativesEndomorphismClasses( G );; gap> Size( Ends ); 10 gap> H := PcGroupCode( 36293, 28 );; gap> Homs := RepresentativesHomomorphismClasses( H, G );; gap> Size( Homs ); 4
‣ FixedPointGroup( endo ) | ( function ) |
Returns: the subgroup of Source(endo) consisting of the elements fixed under the endomorphism endo.
‣ CoincidenceGroup( hom1, hom2[, ...] ) | ( function ) |
Returns: the subgroup of Source(hom1) consisting of the elements h for which h^hom1 = h^hom2 = ...
For infinite non-abelian groups, this function relies on a mixture of the algorithms described in [Rom16, Thm. 2], [BKL+20, Sec. 5.4] and [Rom21, Sec. 7].
gap> phi := GroupHomomorphismByImages( G, G, [ G.1, G.3 ], > [ G.1 * G.2, G.3 ^ 3 ] );; gap> Set( FixedPointGroup( phi ) ); [ <identity> of ..., f2 ] gap> psi := GroupHomomorphismByImages( H, G, [ H.1, H.2, H.3 ], > [ One( G ), G.2, One( G ) ] );; gap> khi := GroupHomomorphismByImages( H, G, [ H.1, H.2, H.3 ], > [ G.2, G.2, One( G ) ] );; gap> CoincidenceGroup( psi, khi ); Group([ f2, f3 ])
‣ InducedHomomorphism( epi1, epi2, hom ) | ( function ) |
Returns: the homomorphism induced by hom between the images of epi1 and epi2.
Let hom be a group homomorphism from a group H to a group G, let epi1 be an epimorphism from H to a group Q and let epi2 be an epimorphism from G to a group P such that the kernel of epi1 is mapped into the kernel of epi2 by hom. This command returns the homomorphism from Q to P that maps h^epi1 to (h^hom)^epi2, for any element h of H. This function generalises InducedAutomorphism (ref 40.7-7) to homomorphisms.
‣ RestrictedHomomorphism( hom, N, M ) | ( function ) |
Returns: the homomorphism hom, but restricted as a map from N to M.
Let hom be a group homomorphism from a group H to a group G, and let N be subgroup of H such that its image under hom is a subgroup of M. This command returns the homomorphism from N to M that maps n to n^hom for any element n of N. No checks are made to verify that hom maps N into M. This function is similar to RestrictedMapping (ref 32.2-13), but its range is explicitly set to M.
gap> N := DerivedSubgroup( G );; gap> p := NaturalHomomorphismByNormalSubgroup( G, N ); [ f1, f2, f3 ] -> [ f1, f2, <identity> of ... ] gap> ind := InducedHomomorphism( p, p, phi ); [ f1 ] -> [ f1*f2 ] gap> res := RestrictedHomomorphism( phi, N, N ); [ f3 ] -> [ f3^3 ]
generated by GAPDoc2HTML