I'm dealing with the inversion of a pretty large block-matrix, whereby I am only interested in a particular block of the inverse. I would like to avoid the inversion of the whole matrix and I wonder whether there exist a convenient inversion rule for my case (as with, e.g., block diagonal matrices or Toeplitz matrices).
The matrix has the form $M = \begin{pmatrix} A_1 & -I_n & 0 & ... & ... & 0 \\ -I_n & A_2 & -I_n & 0 & ... & 0 \\ 0 & -I_n & A_3 & -I_n & ... & 0 \\ & &... &... & ...& \\ & & &... & ...& ... \\ & & & &-I_n & A_T\end{pmatrix} $,
where $A_i$ has dimension $n \times n~ \forall i$. The block of $M^{-1}$ that I am interested in is the last $n \times n$ block (corresponding to $A_T$ in $M$). I would be grateful for any suggestions! Thanks in advance!
Inverting the matrix is probably unnecessary. In most cases, factorization is preferred. Consider reading John Cook's post on this topic.