| 1 | initial version |
As a workaround, instead of multiplying with *, one can
explicitly use right multiplication with __rmul__`:
sage: S3 = SymmetricGroup(3)
sage: a = S3((1, 2))
sage: b = S3((2, 3))
sage: a * b
(1,3,2)
sage: a.__rmul__(b)
(1,2,3)
| 2 | No.2 Revision |
As a workaround, instead of multiplying with *, one can
explicitly use right multiplication with __rmul__`:__rmul__:
sage: S3 = SymmetricGroup(3)
sage: a = S3((1, 2))
sage: b = S3((2, 3))
sage: a * b
(1,3,2)
sage: a.__rmul__(b)
(1,2,3)
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.