First time here? Check out the FAQ!

Ask Your Question
0

How to use elements of cartesian product of two groups?

asked 12 years ago

Fastfoot gravatar image

I want to have a group G = Sym(4) x Sym(4). I try this to define G: " G = CartesianProduct([SymmetricGroup(4)] , [SymmetricGroup(4)]) " Thank you for help.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 12 years ago

I would try this:

sage: H = SymmetricGroup(4)
sage: G = H.direct_product(H)[0]

Then G will be represented as permutations of 1, 2, ..., 8. H.direct_product(H) is a tuple, the first entry of which is the actual direct product; the other entries give inclusions of the two factors into the product and projections, likewise.

Preview: (hide)
link

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: 12 years ago

Seen: 824 times

Last updated: Sep 08 '12