Homepage › Solution manuals › David S. Dummit › Abstract Algebra › Exercise 2.2.4 (Center and centralizers in $S_3, D_8$ and $Q_8$)
Exercise 2.2.4 (Center and centralizers in $S_3, D_8$ and $Q_8$)
For each of and compute the centralizers of each element and find the center of each group. Does Lagrange’s Theorem (Exercise 19 in Section 1.7) simplify your work?
Answers
Proof. We use the Cayley’s tables of and given in Exercise 1.5.2.
-
For instance . By Lagrange’s Theorem, or . But , because . Hence .
Similarly , so or . Since , .
The center is the intersection of the centralizers of the elements of , thus
-
.
For instance, , and , so . By Lagrange’s Theorem, , so .
Hence
Note: This shows that and are subgroups of . This proves anew the results of Exercise 2.1.3.
-
.
By definition of , we know that and are in the center of , thus . Since , does not commute with . Using Lagrange’s Theorem, this gives
Hence .
With Sagemath:
sage: G = PermutationGroup([[(1,2),(3,4)], [(1,2,3,4)]]) sage: list(G) [(), (1,2)(3,4), (1,2,3,4), (1,3), (1,3)(2,4), (2,4), (1,4,3,2), (1,4)(2,3)] sage: Z = G.center(); list(Z) [(), (1,3)(2,4)] sage: s, r = G([(1,2),(3,4)]), G([(1,2,3,4)]) sage: G.centralizer(r) Subgroup of (Permutation Group with generators [(1,2)(3,4), (1,2,3,4)]) generated by [(1,2,3,4)] sage: list(G.centralizer(r)) [(), (1,2,3,4), (1,3)(2,4), (1,4,3,2)]
For , use
sage: G = PermutationGroup([[(1,2,4,7),(3,6,8,5)], [(1,3,4,8),(2,5,7,6)]])