Loading [MathJax]/jax/output/HTML-CSS/jax.js

Tuesday, 5 March 2013

Outer Automorphism of S_6

Lemma If αAut(Sn) maps transpositions to transpositions iff it's an inner automorphism.
proof: () inner automorphisms are done by conjugation which preserves cycle type. () todo

Lemma If n6 then Out(Sn)=1.
proof: An outer-automorphism must swap transpositions with some other order-2 conjugacy class. First we count cycles of type 2k1n2k. You have (nn2k) choices of fixed elements for each, then with the 2k remaining elements we can permute these in 2k! ways before factoring out the order each transposition is written in and the number of ways we order the transpositions 2kk!, therefore there are fnk=n!(2k)!(n2k)!(2k)!2kk! cycles of the given type. In particular fn1=(n2).
For n>6,k>1 fnk>(n2k)(n2) unless n=2k or 2k+1 - but in those cases prove these cases cannot occur - so there can be no outer automorphisms. For n<6 do this too.

Theorem S6 has an outer-automorphism.
proof: There are 6 S5 subgroups as point stabilizers, but from the following diagram we find an S5 that is not a point stabilizer


Permutations of the 5 colors correspond to permutations of the 6 points (which we label 1,2,3,4,5,6 clockwise starting at the top left) (redyellow)=(12)(36)(45) (bluegreen)(redpurpleyellow)=(123456).

So we have discovered an exotic S5 inside S6, I do not know why but there are 6 conjugates of it. We will call the action of S6 on these 6 conjugates ς.

gap> s5 := Group((1,2)(3,6)(4,5),(1,3,6,5,4));
Group([ (1,2)(3,6)(4,5), (1,3,6,5,4) ])
gap> ex := ConjugateSubgroups(SymmetricGroup(6),s5);
[ Group([ (1,2)(3,6)(4,5), (1,3,6,5,4) ]), 
  Group([ (1,2)(3,5)(4,6), (1,3,5,6,4) ]), 
  Group([ (1,2)(3,6)(4,5), (1,3,6,4,5) ]), 
  Group([ (1,2)(3,4)(5,6), (1,3,4,6,5) ]), 
  Group([ (1,2)(3,5)(4,6), (1,3,5,4,6) ]), 
  Group([ (1,2)(3,4)(5,6), (1,3,4,5,6) ]) ]
gap> Position(ex, ex[1]^(1,2));                     
2
gap> Position(ex, ex[2]^(1,2));
1
gap> Position(ex, ex[3]^(1,2));
4
gap> Position(ex, ex[4]^(1,2));
3
gap> Position(ex, ex[5]^(1,2));
6
gap> Position(ex, ex[6]^(1,2));
5

Note, that (12)ς=(12)(34)(56) means we have an outer automorphism! well, if we have an automorphism:

gap> Position(ex, ex[1]^(1,2,3,4,5,6));
1
gap> Position(ex, ex[2]^(1,2,3,4,5,6));
3
gap> Position(ex, ex[3]^(1,2,3,4,5,6));
2
gap> Position(ex, ex[4]^(1,2,3,4,5,6));
5
gap> Position(ex, ex[5]^(1,2,3,4,5,6));
6
gap> Position(ex, ex[6]^(1,2,3,4,5,6));
4
gap> StructureDescription(Group((1,2)(3,4)(5,6),(2,3)(4,5,6)));  
"S6"

and we do.

No comments:

Post a Comment