Understanding the Odd Permutation Product Mystery

  • Thread starter Thread starter johnnyboy2005
  • Start date Start date
  • Tags Tags
    even Permutations
Click For Summary
SUMMARY

The product of two odd permutations results in an even permutation due to the nature of transpositions involved in permutations. Each permutation can be expressed as a series of two-element swaps, with odd permutations requiring an odd number of swaps. When combining two odd permutations, the total number of swaps is the sum of the individual swaps, which is even. This conclusion is supported by the properties of permutation groups and their representation as matrices, where the determinant indicates the parity of the permutation.

PREREQUISITES
  • Understanding of "even" and "odd" permutations
  • Knowledge of transpositions and their role in permutations
  • Familiarity with permutation groups and their matrix representations
  • Basic concepts of determinants in linear algebra
NEXT STEPS
  • Study the properties of permutation groups in detail
  • Learn about the relationship between determinants and permutation parity
  • Explore the concept of transpositions and their applications in combinatorics
  • Investigate the proof of the homomorphism from S_n to the multiplicative group {1, -1}
USEFUL FOR

Mathematicians, computer scientists, and students studying group theory, linear algebra, or combinatorial mathematics will benefit from this discussion.

johnnyboy2005
Messages
29
Reaction score
0
i was wondering if anyone can help me understand why the product of two odd permutations is odd? i came across this on a website but it didn't help me understand why. thanks for the help
 
Physics news on Phys.org
Do you understand what "even" and "odd" permutations are? Every permutation can be reduced to a sequence of "two-element swaps": for example, the permutation that changes 1234 into 3124 can be written as
(13)(12): first swap 1 and 3: 1234-> 3214, then swap 1 and 2: 3214->3124.
Of course, there are many different ways to do that:
(23)(13) will work or even (14)(34)(24)(14): 1234->4231->3241->3421->3124 but anyone permutation will consist of either an even number of swaps or an odd number no matter how that is done. An even permutation is one that requires and even number of "swaps", an odd permutation is one that requires an odd number of permutations.
One way of taking the product of two permutations is to just combine their "swaps"
1234->3214 can be written as (13) so the permutation
formed by 1234->3214 followed by 1234->3214 can be written
(13)(12)(13). The number of swaps in the product is just the sum of the number of swaps in each: in particular, the sum of 2 odd numbers is even, so the product of two odd permutations is an even permutation.
 
I guess we can visualize this with a graph where each possible permutation is represented with a node and there is an edge between two nodes A and B if by swapping two digits in A's permutation (transposition) we get B. Suppose the nodes A and B aren't connected, then we are interested in a path from A to B (which gives a sequence of transpositions that transform A into B). If the path has odd length then it is an odd permutation, otherwise it is even. It is a fact that a permutation is either odd or even, meaning that if there is a path of even length from A to B, then all paths from A to B are of even length. (A way to see what is going on is to try to create a permutation graph with nodes A, B and C. You cannot connect A, B and C so that they from a triangle, because this would mean that from node A you can get to B with a path of length 1 A->B and a path of length 2 A-> C -> B, which implies that there is a transposition that is equivalent to two transpositions, which cannot be)
If you have an odd permutation from A -> B and an odd permutation from B -> C, then you have a path from A to B of odd length and a path from B to C of odd length. Hence there is a path from A to C of odd+odd = even length, so all paths from A to C are even and any permutation from A to C is an even permutation.
 
Halls is perfectly correct with his definition. At the risk of unnecessarily introducing another (unnecessary) idea (I stil can't tell what Job's getting at) there is another way of thinking about even and oddness. (Incidentally, in case you've not realized, the product of two odd elements is even.)

The permutation group can be realized as a set of nxn matrices. Pick a vector space of n dimensions with basis

e_1,...,e_n

each permutation acts by permuting basis elements. This defines a linear map or matrix.

The determinant of this matrix is the sign of the element, 1 for even elements -1 for odd elements. (You can put any of these permutation matrices into the identity matrix by swapping rows, the number of row swaps is odd or even depending on if the element is odd or even).

And we all know that det(AB)=det(A)det(B) so if A and B are odd (ie determinant -1) then AB is even
 
great, thanks so much for your replies. everything was pretty clear. Just have a question for Halls,:

you wrote
1234 into 3124 can be written as (13)(12): this i understand...


first swap 1 and 3: 1234-> 3214, then swap 1 and 2: 3214->3124.
can u please explain how swapping 1 and 2 changes 3214 into 3124?


Of course, there are many different ways to do that: (23)(13) will work or even (14)(34)(24)(14): 1234->4231->3241->3421->

thanks again, this is a great web site...lots of help and quick replies
 
first swap 1 and 3: 1234-> 3214, then swap 1 and 2: 3214->3124.
can u please explain how swapping 1 and 2 changes 3214 into 3124?
Be careful: I don't mean swapping what is in the first and second places: I specifically meant swapping the symbols 1 and 2. The 3 in the first place and the 4 in the last place don't change. 1 moves from 2nd to 3rd place while 2 moves from 3rd to 2nd place.

3214
3124

"1" and "2" have swapped positions.
 
matt grime said:
At the risk of unnecessarily introducing another (unnecessary) idea (I stil can't tell what Job's getting at)...
In a model where each permutation of n digits is represented by a node and where there is an edge between two nodes A and B iff there is a single transposition of the permutation of A that transforms it to B. Then you can talk about the lengths of permutations as the length of the paths from an initial permutation A to a final permutation B.
In such a graph if the path to B (from A) is odd, then B is an odd permutation of A, otherwise it is even. We know that if B is an odd permutation of A then it can't be even as well, meaning that if there is a path of odd length from A to B, then all paths from A to B are of odd length.
So if B is an odd permutation of A and C is an odd permutation of B, then there are paths of odd length from A to B and from B to C. Hence we can get from A to C by traversing the two odd paths A->B->C which gives a path of even length. So the product of two odd permutations is even.
To me this seems like an easy way to visualize what's going on (i've seen it used in proofs regarding the properties of hypercubic networks).
 
fantastic! thanks a lot guys, i have figured it out.
:biggrin:
 
So it is a graph G, its vertex set is S_n and there is an edge from s to t if st^{-1} is a transposition ('transposition that transforms it' doesn't make much sense unless you define 'transformations' by transpositions). Why didn't you say so... The sign of a permutation is then the parity of any path from the node of the identity to it.

As with all of these we need to prove that our definition is well defined (Ie it is always an even/odd number of transpositions). My 'proof' that odd composed odd is even sidesteps this entirely but at no point do I prove rigorously that the determinant is the the same as the sign.. That is something I've never seen done. Does anyone have a nice proof of this?
 
  • #10
This is how I was introduced to it. By a lemma:
There exists a unique map \varepsilon: S_n \to \{\pm 1\} with the following properties:
(1) If \sigma is a transposition (2 element swap), then \varepsilon(\sigma)=-1
(2) For arbitrary elements \sigma, \tau \in S_n we have \varepsilon(\sigma \tau)=\epsilon(\sigma)\epsilon(\tau).
(Note from self: \varepsilon is thus a homomorphism from S_n to the multiplicative group \{1,-1\}).
Proof: Since every permutation is a product of transpositions it's clear there can only exist one such function. But because a permutation can be written as such a product in many different ways, it's not so clear it should exist at all.
We define \varepsilon by considering the function F:\mathbb{R}^n\to \mathbb{R} as follows:
F(x_1,x_2,...,x_n)=\prod_{1\leq i < j \leq n}(x_i-x_j)
Notice that F is not the zero function. For \sigma \in S_n we define the function \sigma F : \mathbb{R}^n \to \mathbb{R} given by:
(\sigma F)(x_1,x_2,...,x_n)=\prod_{1\leq i < j \leq n}(x_{\sigma(i)}-x_{\sigma(j)})
This function is the same as F with a possible switch in sign of the images. So we define \epsilon(\sigma) as \sigma F=\varepsilon(\sigma) F
If \sigma is a transposition (i j), then we can construct \sigma F from F, by switching x_i-x_j with x_j-x_i. That's because every other factor with x_i or x_j can be paired with some element x_k, k\not= i,j. We get four pairs for each k:
(x_i-x_k)(x_j-x_k), \quad (x_i-x_k)(x_k-x_j), \quad (x_k-x_i)(x_j-x_k), \quad (x_ki-x_i)(x_k-x_j)
All these factors are invariant under the transposition (i j). Therefore \varepsilon(\sigma)=-1 for a transposition \sigma
From the relation (\sigma \tau)F=\sigma(\tau F) it's easy to see that \varepsilon(\sigma \tau)F=\varepsilon(\sigma)\varepsilon(\tau)F.
-------
The proof looks complicated, but once you get the idea it's not that bad. If we call the permutations which are mapped to 1 even and the ones that are mapped to -1 odd you got the required result.
 
  • #11
No, that's good and simple. I'd never bothered to look for a proof, I just remember being told that it was hard.

You have effectively shown an explicit homomorphism from S_n into C_2 that doesn't require the notion that sign is well defined a priori. However, you haven't actually checked that this is indeed a homomorphism (or an action of S_n, or representation depending on your view). You've merely said 'from the relation that (st)F=s(tF)' without verifying that is true.I imagine this is merely messy and not actually hard though.
 

Similar threads

  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 3 ·
Replies
3
Views
1K
  • · Replies 5 ·
Replies
5
Views
3K
Replies
8
Views
5K
  • · Replies 13 ·
Replies
13
Views
1K
  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 11 ·
Replies
11
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K