Suppose $G$ and $H$ are two finite groups such that $\frac{G}{Z(G)}\cong\frac{H}{Z(H)}$. The Command $K:=IsomorphismGroups(\frac{G}{Z(G)},\frac{H}{Z(H)})$, in GAP, gives all the isomorphism from $\frac{G}{Z(G)}$ onto $\frac{H}{Z(H)}$. I have two questions:-
If $\chi\in K$, then how to apply the map $\chi$ on any element $x\in \frac{G}{Z(G)}$ in GAP? I have tried $\chi(x)$ and $x^\chi$, both are not working. I have not seen anything like this as well in the GAP manual.
Suppose $\chi(gZ(G))=y$. Then $y=hZ(H)$ for some $h\in H$. How to extract the element $h$ in $y$ in GAP?
Thank you for any help.
To start off, let me correct you on
IsomorphismGroups. It does not give you all isomorphisms, but rather it gives you one isomorphism (if it exists, otherwise it returnsfail).Of course, if you have one isomorphism, you can calculate the automorphism group of either the source or range group, and compose with the previously mentioned isomorphism.
As for your questions:
You could also use the other commands mentioned in the same section of the GAP manual:
PreImagesRepresentative(32.5-4).