Processing math: 100%

First time here? Check out the FAQ!

Ask Your Question
0

Computing permutations

asked 11 years ago

anonymous user

Anonymous

Is there a way to solve the following question is Sage? I have symmetric group S8 and its elements a=(x1x2)(x3x4),b=(x5x6),c=(x7x8)(x9x10)(x11x12)(x13x14) Here of course we might have xi=xj if ij. Is some given (y1y2)a,b,c?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 11 years ago

ppurka gravatar image

You can use the PermutationGroup to create a permutation group from specific elements (cycle notation). And then you can check if a particular element is in the group:

sage: G = PermutationGroup([[(1,2,3),(4,5)],[(3,4)]])
sage: G
Permutation Group with generators [(3,4), (1,2,3)(4,5)]
sage: (3,4) in G
True
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

Stats

Asked: 11 years ago

Seen: 325 times

Last updated: Dec 04 '13