GroupTheory
AreConjugate
test conjugacy of elements of a permutation group
Conjugator
compute the conjugator of elements of a permutation group
Calling Sequence
Parameters
Description
Examples
Compatibility
AreConjugate( a, b, G )
Conjugator( a, b, G )
G
-
a permutation group
a
permutation
b
Two elements a and b of a group G are conjugate in G if there is an element g in G such that g-1·a·g=b . Any such element g is called a conjugator. A conjugator is not generally uniquely determined by a and b.
The AreConjugate( a, b, G ) command returns true if the permutations a and b are conjugate in the permutation group G, and returns false otherwise.
The Conjugator( a, b, G ) command returns an element g in G such that g^(-1) . a . g = b, provided that a and b are conjugate in G. If a and b are not conjugate in G, the value FAIL is returned.
The group G must be an instance of a permutation group, and the permutations a and b must be members of G.
with⁡GroupTheory:
G≔PermutationGroup⁡Perm⁡2,4,6,Perm⁡1,5,2,4,Perm⁡1,4,2,5,3,6
G≔2,4,6,1,52,4,1,42,53,6
a≔Perm⁡1,2,3,4,5,6
a≔1,23,45,6
b≔Perm⁡1,2,3,6,4,5
b≔1,23,64,5
AreConjugate⁡a,b,G
false
AreConjugate⁡a,b,Symm⁡6
true
c≔Perm⁡1,4,2,5,3,6
c≔1,42,53,6
AreConjugate⁡a,c,G
d≔Conjugator⁡a,c,G
d≔2,4,6
d−1·a·d=c
1,42,53,6=1,42,53,6
The GroupTheory[AreConjugate] and GroupTheory[Conjugator] commands were introduced in Maple 17.
For more information on Maple 17 changes, see Updates in Maple 17.
See Also
GroupTheory[ConjugacyClass]
Download Help Document