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.
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.