Sorry, this content is no longer available

Ask Your Question
3

Is there a way to relabel the domain of a permutation group?

asked 8 years ago

jaebond gravatar image

Suppose I have a permutation group on the domain {1,2,3,4,5}, but instead I wanted this permutation group to be on the domain {a,b,c,d,e}. Is there a way to achieve this? Hopefully something like the relabel method for graphs...

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 7 years ago

tmonteil gravatar image

updated 7 years ago

I could not find such a method, b ut you can use the generators of your permutations group as follows:

sage: G = PermutationGroup([[(1,2,3),(4,5)],[(3,4)]])
sage: G
Permutation Group with generators [(3,4), (1,2,3)(4,5)]

sage: d = {1:'a',2:'b',3:'c',4:'d',5:'e'}

sage: H = PermutationGroup([[d[i] for i in g.tuple()] for g in G.gens()], domain=d.values())
sage: H
Permutation Group with generators [('c','d'), ('a','b','c')('d','e')]
sage: H.domain()
{'a', 'b', 'c', 'd', 'e'}
sage: H.random_element()
('a','d','b','c')
sage: H.random_element()
('a','c')('b','d','e')
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: 8 years ago

Seen: 381 times

Last updated: Jan 06 '18