Homepage › Solution manuals › David S. Dummit › Abstract Algebra › Exercise 2.5.6 (Centralizers of every element in $D_8$, $Q_8$, $S_3$, $D_{16}$)
Exercise 2.5.6 (Centralizers of every element in $D_8$, $Q_8$, $S_3$, $D_{16}$)
Use the given lattices to help to find the centralizers of every element in the following groups:
Answers
Proof. Centralizers of every element in .
- (a)
-
.
For instance, The centralizer contains and , so contains Since , we obtain
Then the diagram (4) shows that
More generally, we obtain the following array
- (b)
-
Similarly
- (c)
-
.
- (d)
-
With Sagemath:
sage: D8 = DihedralGroup(4); D8.order() 8 sage: [r,s] = D8.gens(); r, s ((1,2,3,4), (1,4)(2,3)) sage: D8.centralizer(s).list() [(), (1,3)(2,4), (1,4)(2,3), (1,2)(3,4)] sage: D8.subgroup([s,r^2]).list() [(), (1,3)(2,4), (1,4)(2,3), (1,2)(3,4)]