Description
@fieker had mentioned in the discussion of #4191 that he would like to get an implementation of "abstract" automorphism groups in the sense that their elements are not "concrete" automorphisms of the given object; instead one should ask for the corresponding map of an element if one wants to compute images and preimages under this map.
For that, we could for example define that for a group G
, automorphism_group(G; abstract = false)
returns A, mp
where A
is some group isomorphic with the full automorphism group of G
, and mp
is a map that takes an element of A
and returns the group isomorphism on G
that corresponds to this element.
For finite groups with underlying GAP group, this can be implemented via GAP's NiceMonomorphism
mechanism that delegates computations with the automorphism maps on the GAP side to another (isomorphic) group, typically (always?) a permutation group. We can choose A
as this permutation group, and implement mp
via the data that are already used by GAP.
- What kind of object should
mp
be? A natural type would be a map with domainA
, but then what is its codomain? - Is it perhaps desirable to prescribe a type for
A
, similar to the situation withquo
? If yes then we could use the syntaxautomorphism_group(PermGroup, G)
for the new implementation, and one could also get the current automorphism groups by choosing the typeAutomorphismGroup
. The only problem with the old and the new implementation is then that the return values ofautomorphism_group
are different. Or should we perhaps omit the return valuemp
, and provide a function that can be applied to the groupA
in order to create the map in question?
Once the questions about the syntax have been decided, I will provide a pull request for the implementation.