Can you completely permute the elements of a matrix by applying permutation matrices?

It is not generally possible to do so.

For a concrete example, we know that there can exist no permutation matrices $P,Q$ such that $$ P\pmatrix{1&2\\2&1}Q = \pmatrix{2&1\\2&1} $$ If such a $P$ and $Q$ existed, then both matrices would necessarily have the same rank.


Let me add one more argument:

For $n \ge 2$:

Suppose the entries in the $n \times n$ matrix $A$ are all distinct. Then there are $(n^2)!$ distinct permutations of $A$.

There are $n!$ row-permutations of $A$ (generated by premultiplication by various permutation matrices), and $n!$ col-permutations of $A$ (generated by post-multiplication by permutation matrices). If we consider all expressions of the form $$ RAC $$ where $R$ and $C$ each range independently over all $n!$ permutation matrices, we get at most $(n!)^2$ possible results. But for $n > 1$, we have \begin{align} (n!)^2 &= [ n \cdot (n-1) \cdots 2 \cdot 1 ] [ n \cdot (n-1) \cdots 2 \cdot 1 ] \\ &< [ 2n \cdot (2n-1) \cdots (n+2) \cdot (n+1) ] [ n \cdot (n-1) \cdots 2 \cdot 1 ] \\ &= (2n)! \\ &\le (n^2)! \end{align} because $2n \le n^2$ for $n \ge 2$, and factorial is an increasing function on the positive integers. So the number of possible results of applying row- and col-permutations to $A$ is smaller than the number of possible permutations of the elements of $A$. Hence there's some permutation of $A$ that does not appear in our list of all $RAC$ matrices.

BTW, just to close this out: for $1 \times 1$ 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 $a_1$ and $a_2$, the properties "$a_1$ and $a_2$ are on different rows" and "$a_1$ and $a_2$ 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.