1 | initial version |
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 )
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 )
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 )