I'm using GAP for the first time.
I used AllAutomorphism command to see all automorphisms of SymmetricGroup of order $3$.
gap> AllAutomorphisms(SymmetricGroup(3));
[ ^(), ^(2,3), ^(1,3), ^(1,3,2), ^(1,2,3), ^(1,2) ]
I want to understand what the output means? I would also like to see how generators(or group elements) map during each automorphism map.
The notation
^permdenotes an inner automorphism -- conjugation by the indicated permutation. The result tells you that $S_3$ has no outer automorphisms. If you want to see the action on generators, you could useAsGroupGeneralMappingByImagesto convert the representation:If you want to see what happens to group elements, you can apply the automorphisms with `Image'. For example