Homepage Solution manuals David S. Dummit Abstract Algebra Exercise 4.1.5 (Action of S_3 on some specified sets)

Exercise 4.1.5 (Action of S_3 on some specified sets)

For each of parts (a) and (b) repeat the preceding exercise but with S 3 acting on the specified set:

(a)
the set of 27 triples { ( i , j , k ) 1 i , j , k 3 }
(b)
the set 𝒫 ( { 1 , 2 , 3 } ) { } of all 7 nonempty subsets of { 1 , 2 , 3 } .

Answers

Proof. We obtain similarly the following results.

(a)
For Ω = [ [ 1 , 3 ] ] 3 , we choose the numbering f ( k ) = ( a + 1 , b + 1 , c + 1 )

where a , b , c are the digits of k in base 3 .

We use the same method as in Exercise 4,i.e., S 3 acts on Ω = [ [ 1 , 27 ] ] by

σ k = f 1 ( σ f ( k ) ) , σ S 3 , k [ [ 1 , 27 ] ] .

To avoid repetitive computations, we give a notebook Sagemath program to compute to corresponding permutation σ ~ for every σ S 3 :

     def f( k):
         j = k - 1
         l = []
         for _ in range(3):
             l.append(j % 3 + 1);
             j = j // 3
         l.reverse()
         return tuple(l)
     
     def f_inv(t):
         a, b, c = t[0] - 1, t[1] - 1, t[2] - 1
         return 1 + c + 3 * b + 3^2 * a
     
     G = SymmetricGroup(3); G
          
         Symmetric group of order 3! as a permutation group
     
     def tilde(sigma):
         t_sigma = lambda k : f_inv((sigma(f(k)[0]), sigma(f(k)[1]), sigma(f(k)[2])))
         tau = Permutation([t_sigma(i) for i in range(1,3^3 + 1)])
         return tau.to_permutation_group_element()
     
     for sigma in G:
         print sigma, ’\t=>\t’, tilde(sigma)
     
     ()      =>  ()
     (1,2)   =>  (1,14)(2,13)(3,15)(4,11)(5,10)(6,12)(7,17)(8,16)
                       (9,18)(19,23)(20,22)(21,24)(25,26)
     (1,2,3) =>  (1,14,27)(2,15,25)(3,13,26)(4,17,21)(5,18,19)
                       (6,16,20)(7,11,24)(8,12,22)(9,10,23)
     (1,3,2) =>  (1,27,14)(2,25,15)(3,26,13)(4,21,17)(5,19,18)
                       (6,20,16)(7,24,11)(8,22,12)(9,23,10)
     (2,3)   =>  (2,3)(4,7)(5,9)(6,8)(10,19)(11,21)(12,20)(13,25)
                       (14,27)(15,26)(16,22)(17,24)(18,23)
     (1,3)   =>  (1,27)(2,26)(3,25)(4,24)(5,23)(6,22)(7,21)(8,20)
                       (9,19)(10,18)(11,17)(12,16)(13,15)
     

This gives the following correspondence, for the chosen numbering:

σ σ ~
() ()
(1 2) (1 14)(2 13)(3 15)(4 11)(5 10)(6 12)(7 17)(8 16)(9 18)(19 23)(20 22)(21 24)(25 26)
(1 2 3) (1 14 27)(2 15 25)(3 13 26)(4 17 21)(5 18 19)(6 16 20)(7 11 24)(8 12 22)(9 10 23)
(1 3 2) (1 27 14)(2 25 15)(3 26 13)(4 21 17)(5 19 18)(6 20 16)(7 24 11)(8 22 12)(9 23 10)
(2 3) (2 3)(4 7)(5 9)(6 8)(10 19)(11 21)(12 20)(13 25)(14 27)(15 26)(16 22)(17 24)(18 23)
(1 3) (1 27)(2 26)(3 25)(4 24)(5 23)(6 22)(7 21)(8 20)(9 19)(10 18)(11 17)(12 16)(13 15)

There are three orbits for the action of S 3 on [ [ 1 , 27 ] ] 3 . The stabilizers are conjugates of

G 1 = { ( ) , ( 2 3 ) } , G 2 = G 6 = { ( ) } .

(b)
In this part, S 3 acts on A = 𝒫 ( { 1 , 2 , 3 } ) { } by σ ( X ) = { σ ( x ) x X } , ( X A , σ S 3 ) .

We choose the following numbering for A :

k 1 2 3 4 5 6 7
f ( k ) { 1 } { 2 } { 3 } { 1 , 2 } { 1 , 3 } { 2 , 3 } { 1 , 2 , 3 }

Then σ acts on [ [ 1 , 7 ] ] by

σ k = f 1 ( σ f ( k ) ) .

So every permutation σ S 3 induces a permutation σ ~ S 7 , defined by

σ ~ ( k ) = σ k = f 1 ( σ f ( k ) ) , ( k [ [ 1 , 7 ] ] ) .

For instance, if σ = ( 1 2 ) , then

σ ~ ( 1 ) = σ 1 = f 1 ( σ { 1 } ) = f 1 ( { 2 } ) = 2 , σ ~ ( 2 ) = σ 2 = f 1 ( σ { 2 } ) = f 1 ( { 1 } ) = 1 , σ ~ ( 3 ) = σ 3 = f 1 ( σ { 3 } ) = f 1 { 3 } = 3 , σ ~ ( 4 ) = σ 4 = f 1 ( σ { 1 , 2 } ) = f 1 ( { 2 , 1 } ) ) = 4 , σ ~ ( 5 ) = σ 5 = f 1 ( σ { 1 , 3 } ) = f 1 ( { 2 , 3 } ) = 6 , σ ~ ( 6 ) = σ 6 = f 1 ( σ { 2 , 3 } ) = f 1 ( { 1 , 3 } ) = 5 , σ ~ ( 7 ) = σ 7 = f 1 ( σ { 1 , 2 , 3 } ) = f 1 ( { 2 , 1 , 3 } ) = 7 ,

So

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

Similarly, we obtain

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

There are 3 orbits for the action of S 3 on [ [ 1 , 7 ] ] . The stabilizers are conjugates of

G 1 = { ( ) , ( 2 3 ) } , G 4 = { ( ) , ( 1 2 ) } , G 7 = S 3 .

User profile picture
2026-01-21 10:50
Comments