I came across the following Question
Assume an $n\times n$ matrix that has exactly one $1$ and one $-1$ in each row and column and others are $0$. Prove that there is a way that we can change the places of rows and columns in which it gives the negative of the matrix.
MY TRY- Call such matrix A. All we need to do is to find some permutation matrices $P_{1}$ and $P_{2}$ such that $$P_{1}AP_{2} = -A$$ $A$ can be written as a difference of two permutation matrices i.e. $$A = P-Q$$ where P and Q are some permutation matrices
Example of one such matrix of order $3\times3$ $$ \begin{pmatrix} 1 & 0 & -1 \\ -1 & 1 & 0 \\ 0 & -1 & 1 \end{pmatrix} = \begin{pmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{pmatrix}-\begin{pmatrix} 0 & 0 & 1 \\ 1 & 0 & 0 \\ 0 & 1 & 0 \end{pmatrix}.$$
We could first turn every such matrix $A$ by multiplying
by appropriate permutation matrices to the form $I-R$ :-$$P^{T}A = P^{T}(P-Q) = I-R$$ Clearly the permutation matrix R shouldn't have $1$ at the same position as in $I$. R lies in the class of traceless permutation matrices. Now If we are able to find matrices permutation $P_{1}$ and $P_{2}$ such that $$P_{1}(I-R)P_{2} = (R-I) = -(I-R)$$ we'll have
$$P_{1}P^{T}AP_{2} = -P^{T}A \implies PP_{1}P^{T}AP_{2} = -A $$
and we would be done.
But how could I proceed now to find $P_{1}$ and $P_{2}$?
Would we need some extra equation from the fact that $R$ is a traceless permutation matrix?
It was great to see other approaches to solve the problem by Michael Hoppe and user1551.
But I am curious to see how would it be if we go this way?