First time here? Check out the FAQ!
answered 2016-09-12 04:07:51 +0100
To compute the group action you want:
G=SymmetricGroup(3) A={1,2} for g in G: for a in A: print str(g)+' acts on '+str(a)+' to give '+str(g(a))