Block Matrix Zero Determinant Implication?

750 Views Asked by At

Recently I've been working with a number of square (order of 2n) matrices whose determinants are zero. That is,

$$\det\begin{bmatrix}A&B\\C &D \end{bmatrix} = 0$$ where each of A,B,C, and D are also matrices.

I couldn't help but notice that in all of my cases, det(A) = det(D) = 0 as well. This is fairly surprising to me, and I'm curious: what is the limit of validity of this special case? Alternatively, under what conditions is this true?

If it matters, I'm working with passive electrical transmission networks, which typically never have zeroes on the main diagonal.

Thanks!

2

There are 2 best solutions below

1
On

The determinant of your matrix (or any such matrix in block diagonal form) is equal to the product of the determinants of the diagonal blocks, i.e. $\operatorname{det}(A)\operatorname{det}(D)$. If the determinant of the block diagonal matrix is $0$, this means $\operatorname{det}(A)\operatorname{det}(D)=0$ so that either $\operatorname{det}(A)=0$ or $\operatorname{det}(D)=0$, but not necessarily both.

2
On

If $A$ and $D$ are of the same size, and $\det A = \det B = \det C = \det D = 0$ then of course $\det \begin{bmatrix}A&B\\C &D \end{bmatrix} = 0$.

But the converse does not hold: It is easy to produce square matrices of determinant zero none of whose blocks have determinant zero. An easy example is $$A= \begin{bmatrix}4I&2I\\2I &I \end{bmatrix} $$ where $A$ is $2n \times 2n$ and $I$ is an $n \times n$ unit matrix.

For instance, look at $$A= \begin{bmatrix}4&0&2&0\\0&4&0&2\\2&0&1&0\\0&2&0&1 \end{bmatrix} $$