Skip to content

provide automorphism groups that do not consist of automorphisms #4237

Open
@ThomasBreuer

Description

@ThomasBreuer

@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 domain A, but then what is its codomain?
  • Is it perhaps desirable to prescribe a type for A, similar to the situation with quo? If yes then we could use the syntax automorphism_group(PermGroup, G) for the new implementation, and one could also get the current automorphism groups by choosing the type AutomorphismGroup. The only problem with the old and the new implementation is then that the return values of automorphism_group are different. Or should we perhaps omit the return value mp, and provide a function that can be applied to the group A 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.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions