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

Exercise 4.2.4 (Left regular representation of $Q_8$)

Use the left representation of Q 8 to produce two elements of S 8 which generate a subgroup of S 8 isomorphic to the quaternion group Q 8 .

Answers

(The table of Q 8 is given in Exercise 1.5.8.)

Proof. We label the elements of Q 8 with the bijection f :

k 1 2 3 4 5 6 7 8
f ( k ) 1 1 i i j j k k

Since Q 8 = i , j , we compute σ i and σ j :

i 1 = i σ i ( 1 ) = 3 , i 1 = i σ i ( 2 ) = 4 , i i = 1 σ i ( 3 ) = 2 , i i = 1 σ i ( 4 ) = 1 , i j = k σ i ( 5 ) = 7 , i j = k σ i ( 6 ) = 8 , i k = j σ i ( 7 ) = 6 , i k = j σ i ( 8 ) = 5 ,

so

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

Moreover,

j 1 = j σ j ( 1 ) = 5 , j 1 = j σ j ( 2 ) = 6 , j i = k σ j ( 3 ) = 8 , j i = k σ j ( 4 ) = 7 , j j = 1 σ j ( 5 ) = 2 , j j = 1 σ j ( 6 ) = 1 , j k = i σ j ( 7 ) = 3 , j k = i σ j ( 8 ) = 4 ,

so

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

So

Q 8 ( 1 3 2 4 ) ( 5 7 6 8 ) , ( 1 5 2 6 ) ( 3 8 4 7 )

Verification with Gap:

gap> i := (1,3,2,4)(5,7,6,8);
(1,3,2,4)(5,7,6,8)
gap> j := (1,5,2,6)(3,8,4,7);
(1,5,2,6)(3,8,4,7)
gap> G := Group(i,j);
Group([ (1,3,2,4)(5,7,6,8), (1,5,2,6)(3,8,4,7) ])
gap> Order(G);
8
gap> List(G);
[ (), (1,2)(3,4)(5,6)(7,8), (1,4,2,3)(5,8,6,7), (1,3,2,4)(5,7,6,8), (1,6,2,5)(3,7,4,8),
  (1,5,2,6)(3,8,4,7), (1,8,2,7)(3,6,4,5), (1,7,2,8)(3,5,4,6) ]
gap> StructureDescription(G);
"Q8"

User profile picture
2026-01-23 11:17
Comments