Samuelb88
- 160
- 0
Homework Statement
What is the permutation matrix associated to the permutation of n indices defined by p(i) = n - i + 1? What is the cycle decomposition of p? What is it's sign?
Homework Equations
Prop. A permutation matrix P has a single 1 in each row and in each column, the rest of its entries being 0.
The Attempt at a Solution
I. So I'm a bit confused on how to find the matrix associated with p. Here's my attempt:
Given p(i) = n - i + 1 defines a permutation of n indices, then by our proposition, we know the associated matrix with p, say A, is an n \times n matrix with a single 1 in each row and each column, the rest of its entries being 0. Therefore it is of the form:
A = \sum_i e_{p(i),i} = \sum_i e_{n-i+1,i}
where e_{i,j} denotes an n \times n matrix with a single 1 in the ith row and jth column. From this we find that:
A = e_{n,1} + e_{n-1,2} + \cdots + e_{2,n-1} + e_{1,n}
I guess I am a bit confused on whether I can deduce that A is an n \times n matrix from the fact that p defines a permutation of n indices. If so, does that mean I can sum i from 1 to n in the formula above to find A?
II. To find the cycle of decomposition of p, provided that my answer from I. is correct, would I just write:
(n,1)(n-1,2) \cdots ?
III. I'm not sure on how to determine the sign of A seeing as it depends on the oddness or evenness of n.