Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered 2 years ago

Max Alekseyev gravatar image

This can be done using interface to GAP:

G=SymmetricGroup(3); a=G((1,2)); b=G((2,3))
x = G( gap(f'RepresentativeAction({gap(G)},{b},{a})') )
print( x*a == b*x )
click to hide/show revision 2
No.2 Revision

This can be done using interface to GAP:

G=SymmetricGroup(3); a=G((1,2)); b=G((2,3))
x = G( gap(f'RepresentativeAction({gap(G)},{b},{a})') )
gap.RepresentativeAction(G,b,a)
print( x*a == b*x )
click to hide/show revision 3
No.3 Revision

This can be done using interface to GAP:

G=SymmetricGroup(3); a=G((1,2)); b=G((2,3))
x = gap.RepresentativeAction(G,b,a)
G( gap.RepresentativeAction(G,b,a) )
print( x*a == b*x )