Homepage Solution manuals David S. Dummit Abstract Algebra Exercise 4.2.2 (Left regular representation of $S_3$)

Exercise 4.2.2 (Left regular representation of $S_3$)

List the elements of S 3 as 1 , ( 1 2 ) , ( 2 3 ) ( 1 3 ) , ( 1 2 3 ) , ( 1 3 2 ) and label these with the integers 1 , 2 , 3 , 4 , 5 , 6 respectively. Exhibit the image of each element of S 3 under the left regular representation of S 3 into S 6 .

Answers

Proof. To label the elements of S 3 , we choose the bijection f given by

k 1 2 3 4 5 6
f ( k ) () ( 1 2 ) ( 2 3 ) ( 1 3 ) ( 1 2 3 ) ( 1 3 2 )

For each γ S 3 , σ γ is defined by

σ γ ( i ) = j γ f ( i ) = f ( j ) ( 0 i 6 , 0 j 6 ) ,

or equivalently, φ γ f = f σ γ , where φ : γ φ γ is the homomorphism afforded by the action of S 3 on itself.

Then

( 1 2 ) ( ) = ( 1 2 )  and so  σ ( 1 2 ) ( 1 ) = 2 , ( 1 2 ) ( 1 2 ) = ( )  and so  σ ( 1 2 ) ( 2 ) = 1 , ( 1 2 ) ( 2 3 ) = ( 1 2 3 )  and so  σ ( 1 2 ) ( 3 ) = 5 , ( 1 2 ) ( 1 3 ) = ( 1 3 2 )  and so  σ ( 1 2 ) ( 4 ) = 6 , ( 1 2 ) ( 1 2 3 ) = ( 2 3 )  and so  σ ( 1 2 ) ( 5 ) = 3 , ( 1 2 ) ( 1 3 2 ) = ( 1 3 )  and so  σ ( 1 2 ) ( 6 ) = 4 ,

therefore

σ ( 1 2 ) = ( 1 2 3 4 5 6 2 1 5 6 3 4 ) = ( 1 2 ) ( 3 5 ) ( 4 6 ) .

Similarly

( 1 2 3 ) ( ) = ( 1 2 3 )  and so  σ ( 1 2 3 ) ( 2 ) = 5 , ( 1 2 3 ) ( 1 2 ) = ( 1 3 )  and so  σ ( 1 2 3 ) ( 2 ) = 4 , ( 1 2 3 ) ( 2 3 ) = ( 1 2 )  and so  σ ( 1 2 3 ) ( 3 ) = 2 , ( 1 2 3 ) ( 1 3 ) = ( 2 3 )  and so  σ ( 1 2 3 ) ( 4 ) = 3 , ( 1 2 3 ) ( 1 2 3 ) = ( 1 3 2 )  and so  σ ( 1 2 3 ) ( 5 ) = 6 , ( 1 2 3 ) ( 1 3 2 ) = ( )  and so  σ ( 1 2 3 ) ( 6 ) = 1 ,

therefore

σ ( 1 2 3 ) = ( 1 2 3 4 5 6 5 4 2 3 6 1 ) = ( 1 5 6 ) ( 2 4 3 ) .

Since S 3 = ( 1 2 ) , ( 1 2 3 ) , this gives all the maps σ γ for γ S 3 . For instance

σ ( 2 3 ) = σ ( 1 2 ) ( 1 2 3 ) = σ ( 1 2 ) σ ( 1 2 3 ) = ( 1 2 ) ( 3 5 ) ( 4 6 ) ( 1 5 6 ) ( 2 4 3 ) = ( 1 3 ) ( 2 6 ) ( 4 5 )

More generally

σ () = ( ) , σ ( 1 2 ) = ( 1 2 ) ( 3 5 ) ( 4 6 ) , σ ( 2 3 ) = ( 1 3 ) ( 2 6 ) ( 4 5 ) , σ ( 1 3 ) = ( 1 4 ) ( 2 5 ) ( 3 6 ) , σ ( 1 2 3 ) = ( 1 5 6 ) ( 2 4 3 ) , σ ( 1 3 2 ) = ( 1 6 5 ) ( 2 3 4 ) .

Verification with Sagemath:

sage: a , b = [(1,5,6),(2,4,3)], [(1,2),(3,5),(4,6)]
sage: G = PermutationGroup([a,b])
sage: G.list()

[(),
 (1,2)(3,5)(4,6),
 (1,5,6)(2,4,3),
 (1,6,5)(2,3,4),
 (1,3)(2,6)(4,5),
 (1,4)(2,5)(3,6)]
 sage: G.stabilizer(1).list()
[()]

User profile picture
2026-01-22 11:57
Comments