I think this is elementary, but how do we just multiply two elements in the symmetric group. For example, I have a list of elements as
G=SymmetricGroup(5)
A=[(1,2), (1,3,2), (1,4), (1,4)(2,3),(2,4),(2,4,3),(3,4),(2,3,4)]
b=[G(1,5)*G(a) for a in A]
b
When I implement in the above code on the compiler, I get the error 'tuple' object is not callable
. Anyway to overcome this error and multiply two elements in the group, or, in any other group? Thanks beforehand.