Ask Your Question
1

How to construct direct product of cyclic groups

asked 2022-09-01 11:15:56 +0200

abhijitg gravatar image

updated 2022-09-01 11:40:56 +0200

FrédéricC gravatar image

If I use

D = direct_product_permgroups([G1,G2])

where

G1 = CyclicPermutationGroup(3)
G2 = CyclicPermutationGroup(4)

then I get D presented as a subgroup of SymmetricGroup(7). Is there a way to obtain the product of G1 and G2 as a subgroup of SymmetricGroup(12)?

More generally, is there a way to obtain direct product of CyclicPermutationGroup(n1) and CyclicPermutationGroup(n2) as a subgroup of SymmetricGroup(n1 n2) rather than SymmetricGroup(n1+n2)?

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
0

answered 2022-09-01 12:04:41 +0200

abhijitg gravatar image

updated 2022-09-01 12:04:57 +0200

By trial and error I found the answer:

K = D.as_finitely_presented_group()

H = K.as_permutation_group()

This gives the desired presentation of D.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2022-09-01 11:15:56 +0200

Seen: 522 times

Last updated: Sep 01 '22