Proof. Conjugacy classes of
:
-
(a)
-
.
We write
.
Let
, and
. Since
is abelian,
So the conjugacy class of
is
, where
is the conjugacy class of
in
, given in Section 3. This gives
conjugation classes in
.
The center of
is
and the class equation is
-
(b)
-
.
If
and
, then
Therefore the conjugacy class of
is the cartesian product of the conjugacy class of
by the conjugacy class of
.
This gives
conjugacy classes.
The center is trivial, and the class equation is
-
(c)
-
.
We know the
conjugation classes of
by Exercise 2. As in part (a), the conjugacy class of
is
, where
is the conjugacy class of
in
. This gives
conjugacy classes (we write
):
of sizes
(class equation:
)
□
With Sagemath :
sage: G = SymmetricGroup(3)
sage: H = CyclicPermutationGroup(2)
sage: P = cartesian_product([H,G])
sage: for h in H:
....: for g in [G([(1,2)]), G([(1,2,3)])]:
....: p = P((h,g))
....: print(p,’=>’, p.conjugacy_class().list())
....:
(((), (1,2)), ’=>’, [((), (1,2)), ((), (1,3)), ((), (2,3))])
(((), (1,2,3)), ’=>’, [((), (1,2,3)), ((), (1,3,2))])
(((1,2), (1,2)), ’=>’, [((1,2), (1,2)), ((1,2), (1,3)), ((1,2), (2,3))])
(((1,2), (1,2,3)), ’=>’, [((1,2), (1,2,3)), ((1,2), (1,3,2))])
(Here
and
.)