Can You Completely Permute The Elements Of A Matrix By Applying Permutation Matrices?
Answer :
It is not generally possible to do so.
For a concrete example, we know that there can exist no permutation matrices such that P\pmatrix{1&2\\2&1}Q = \pmatrix{2&1\\2&1} If such a and existed, then both matrices would necessarily have the same rank.
Let me add one more argument:
For :
Suppose the entries in the matrix are all distinct. Then there are distinct permutations of .
There are row-permutations of (generated by premultiplication by various permutation matrices), and col-permutations of (generated by post-multiplication by permutation matrices). If we consider all expressions of the form where and each range independently over all permutation matrices, we get at most possible results. But for , we have because for , and factorial is an increasing function on the positive integers. So the number of possible results of applying row- and col-permutations to is smaller than the number of possible permutations of the elements of . Hence there's some permutation of that does not appear in our list of all matrices.
BTW, just to close this out: for matrices, the answer is "yes, all permutations can in fact be realized by row and column permutations." I suspect you knew that. :)
Given two elements and , the properties " and are on different rows" and " and are on different columns" are preserved by any permutation. Proof:
A column permutation won't affect what row anything is on. A row permutation has to send an entire row to the same row, so if they start on the same row, they end on the same row. Permutations are invertible, so if they can't take two elements on the same row to different rows, they can't take elements on different rows to the same row.
An analogous argument holds for being on the same or different columns.
Thus, a row and column permutation is completely characterized by what it does to a diagonal; to find out where it sends an arbitrary element, just take the row that its row was sent to, and the column its column was sent to.
Comments
Post a Comment