I want to make sure the following equality is true:
$(1,2,3)\circ (3,4,5)= (1, 2, 4, 5, 3)$
I don't know how to check if that's true.
Thank You
I want to make sure the following equality is true:
$(1,2,3)\circ (3,4,5)= (1, 2, 4, 5, 3)$
I don't know how to check if that's true.
Thank You
You are close, but off bit a little bit. We see that in the product $(123)(345)$, we can check what the product is by considering each possible input, then following it through the function composition,
Therefore, we have that $(123)(345) = (123)\circ(345) = (12345)$.
Edit: @Arthur reminded me that some use algebraic notation instead of function notation regarding multiplication of permutations. In the above computation, I assumed that $(123)(345)(x) = (123)[(345)(x)]$. Using the algebraic convention, we have that
So $(123)(345) = (345)\circ(123)=(12453)$.