0

$$\det(A) = \det(A^\top)$$

Wiki confirms this. How can I see this this is true? I tested out a few examples and it seems to hold, however unsure the exact reasoning.

For instance:

$$\begin{vmatrix} a & b \\ c & d \\ \end{vmatrix} = ad - bc$$

Vectors $(a,b)$ and $(c,d)$ define the parallelogram, but how would the transpose define a similar shape with same area?

J. W. Tanner
  • 60,406
Nick
  • 1,071

1 Answers1

1

Use the Leibniz definition of determinants, that $$\det(A) = \sum\limits_{\sigma\in S_n}\text{sgn}(\sigma)\prod\limits_{i=1}^na_{\sigma(i),i}$$

Recognize that the transpose of a permutation matrix is simply the inverse of the permutation matrix and so has the same sign.

Your sum then consists of exactly the same terms before and after the transposition with the same signs as originally had, just perhaps appearing in a slightly different order.

JMoravitz
  • 79,518