Inverse of a square block matrix

745 Views Asked by At

I am trying to understand how to compute the inverse of a square block matrix defined as follows

$$\begin{bmatrix}2{\bf I}&-{\bf X}\\{\bf X}'&{\bf 0}\end{bmatrix}$$

where ${\bf I}$ is a $T\times T$ identity matrix, ${\bf X}$ is a $T\times K$ matrix of scalars and ${\bf 0}$ is a $K\times K$ null matrix.

I actually have no idea about that, so any hint is welcome.

2

There are 2 best solutions below

2
On BEST ANSWER

In general, we have $$\left[\begin{array}{cc}{\bf V} & {\bf W} \\ {\bf X} & {\bf Y}\end{array}\right]^{-1} = \left[\begin{array}{cc}{\bf V}^{-1} + {\bf V}^{-1}{\bf W}\left({\bf Y}-{\bf X}{\bf V}^{-1}{\bf W}\right)^{-1}{\bf X}{\bf V}^{-1}& -{\bf V}^{-1}{\bf W}\left({\bf Y}-{\bf X}{\bf V}^{-1}{\bf W}\right)^{-1} \\ -\left({\bf Y}-{\bf X}{\bf V}^{-1}{\bf W}\right)^{-1}{\bf X}{\bf V}^{-1} & \left({\bf Y}-{\bf X}{\bf V}^{-1}{\bf W}\right)^{-1}\end{array}\right].$$ This can be derived through Woodbury matrix identity or in general Schur complement. Now you can plug in your matrices to get the appropriate inverse.

3
On

Let

$${\bf M}=\begin{bmatrix}2{\bf I}&-{\bf X}\\{\bf X}'&{\bf 0}\end{bmatrix}$$

The formula given by @Luckyluck63 works if and only if ${\bf X}'{\bf X}$ is invertible, and this is the necessary and sufficient condition under which ${\bf M}$ is invertible.

This condition can be re-written in the following way:

The format $T \times K$ of ${\bf X}$ must be with $T \geq K$ (i.e., square or "portrait" shape) AND ${\bf X}$ must be full rank (i.e., rank$({\bf X})=K$).

In all other cases, even if ${\bf X}$ is full rank, ${\bf M}$ is not invertible, for the following reason: as $T < K$, ${\bf X}$ has a "landscape" format; thus its columns are necessarily linked, or said otherwise, there exists a certain non trivial linear combination of its columns equal to zero. Thus, the last $K$ columns of ${\bf M}$ are linked by the same linear combination. Therefore $det({\bf M})=0$, establishing that ${\bf M}$ is not invertible.