Inverse matrix in blocks form [closed]

1

I have an array of 1 shape (X and U are square):

| X Y |
| Z U |

What is the inverse of the matrix (which I do not know) (A and D are square):

| A B |
| C D |

I'm trying to get the inverse array of "A" from array 1, I tried to use "Matrix inversion in block form", but I only get:

  
  • A-1 * B = Y * U^-1
  •   
  • C * A^-1 = Z * U^-1
  •   

Is it possible to find only A^-1 without having to invert array 1?

matinv

    
asked by anonymous 08.09.2017 / 17:50

0 answers