0

Suppose I have the matrix,

$$\begin{bmatrix} a &b \\ c & d \end{bmatrix}$$

Now, consider another matrix made up of same elements.

$$\begin{bmatrix} d &c \\ b & a \end{bmatrix}$$

This one above is also built up of same elements and has same determinant. Here we can map between the matrix by a row swap followed by a column swap (order doesn't matter).

Is that generally true tho? Can non singular matrix built up of same elements which have same determinant be turned into each other by row / column swaps?


The motivation comes from some me trying to solve this question: Counting non singular matrices

1 Answers1

3

To give an answer that meets all the requirements, even the requirement suggested in the comments that both matrices be symmetric, $$ \pmatrix{4&3&2\cr3&9&0\cr2&0&0\cr}\ {\rm\ and\ }\ \pmatrix{9&2&3\cr2&4&0\cr3&0&0\cr} $$ are both symmetric, have the same entries, and the same nonzero determinant, but you can't get from one to the other by a sequence of row swaps and column swaps.

Gerry Myerson
  • 185,413
  • good, but I was thinking. Is it true when instead of numbers we have variables? Take two symmetric matrices of variables. If they have the same (polynomial) determinant, is it true that they are a row-column swapped version of each other? – Exodd May 06 '24 at 08:38