Determinant of block matrices with non-square diagonal and square anti-diagonal blocks

499 Views Asked by At

Is there a way to find the determinant of $X$ in terms of its sub-matrices $A,B,C_0$ and $R_0$?

$$X = \begin{bmatrix} AC_0 & -I_n\\ 0_{(n-1)} & R_0B \end{bmatrix} \in \mathbb{R}^{(2n-1) \times (2n-1)} $$ where $A,B \in \mathbb{R}^{n \times n}$, $C_0 = \begin {bmatrix}0_{1\times (n-1)}\\ I_{(n-1)}\end{bmatrix}$ and $R_0 = \begin {bmatrix}0_{(n-1)\times 1}& I_{(n-1)}\end{bmatrix}$.

The sources I found use Laplace determinant expansion for block matrices for upper traingular matrices like the one above but the diagonal matrices are square and the determinant is the product of the diagonal block determinant.

MATLAB suggests $\det(X) = -\det(R_0BAC_0)$ which is intuitive, but I am not able to find a way to actually prove it.

The more generlized question will be to find the determinant of

$$\begin{vmatrix} A_{m \times n} & B_{m \times m}\\ 0_{n \times n} & C_{n \times m} \end{vmatrix}$$ in terms of $A, B $ and $C$.

Any help will be much appreciated.

Cheers.

1

There are 1 best solutions below

2
On

The simplest way is to use the (Leibniz) definition of determinant, where we need to consider all products of entries that have exactly one in each row and one in each column. Note that any such product that includes an entry in the lower-left part will be zero. But it has exactly $n$ entries in the upper part and exactly $n$ entries in the right part, and hence has exactly $1$ entry in the upper-right part. Hence every product that contributes to $\def\matrix#1{\left[\begin{array}{c}#1\end{array}\right]}$$\det(\matrix{A&-I_n\\0&C})$ (where $A$ is an $n \times (n-1)$ matrix and $C$ is an $(n-1) \times n$ matrix) is the product of a pair of products that contribute to $\det(A)$ and $\det(C)$ respectively multiplied by an entry in $-I_n$. Of course, the only non-zero entries in $-I_n$ are all $-1$ on the diagonal. Note that if the $-1$ is the $k$-th in $-I_n$, then the product comes from $A_k$ and $C_k$ where $A_k$ is $A$ without the $k$-th row and $C_k$ is $C$ without the $k$-th column. Note that the sign of the overall permutation relative to the product of the signs of the corresponding permutations for $A_k,C_k$ is the same regardless of $k$, and when $k=1$ we can easily compute it to be $(-1)^{n-1}$. Therefore we get:

$\det(\matrix{A&-I_n\\0&C}) = \sum_{k=1}^n (-1)^n \det(A_k)\det(C_k) = (-1)^n \det(CA)$ [by Cauchy-Binet].

I don't know what we can say for general $B$ in place of $-I_n$.