3

I was just told that for any given matrix if it is $n\times (n-1)$ and another of $(n-1)\times n$ then also the above kind of situation that is $$\det(AB-I)+\det(BA-I)=0,$$ where $I$ is the corresponding identity matrix of the square matrix so formed.

Also in order to prove it I tried to solve it by any theorem that I know or so but was unable.

So, I checked it for any random matrix with random variable and calculated the same thing via a matrix calculator, and shockingly it was correct.

I searched it on internet and was unable to find any explanation. So, I eventually turned to stack exchange.

Any help would be appreciated!

Siong Thye Goh
  • 149,520
  • 20
  • 88
  • 149

1 Answers1

6

\begin{align} \det(AB-I_3) &= (-1)^3\det(I_3 - AB)\\ &= - \det(I_2 - BA)\\ &= - (-1)^2 \det(BA-I_2) \end{align}

The second equality holds due to Sylvester determinant identity.

In general, if $A \in \mathbb{R}^{m \times n}$ and $B \in \mathbb{R}^{n \times m}$, then we have

$$\det(AB-I_m) = (-1)^{n+m} \det(BA-I_n)= (-1)^{n+m \pmod{2}} \det(BA-I_n)$$

Siong Thye Goh
  • 149,520
  • 20
  • 88
  • 149