2

Is it somehow possible to reformulate the following exuation into something easier to calculate:

$$(A^{-1}+ B^{-1})^{-1}$$

A and B are both square real matrices: $A, B \in \mathbb{R}^{n \times n}$, and are positive definite and therefore invertible.

1 Answers1

18

Note that $$ A^{-1}(A + B)B^{-1} = A^{-1}AB^{-1} + A^{-1}BB^{-1} = B^{-1} + A^{-1}. $$ That is, we have $$ A^{-1} + B^{-1} = A^{-1}(A + B)B^{-1} \implies (A^{-1} + B^{-1})^{-1} = B(A + B)^{-1}A. $$ If you prefer, this can also equal to $A(A + B)^{-1}B$.

Note that because $A,B$ are positive definite, $A + B$ is also positive definite and therefore invertible.

Kai
  • 1,151
Ben Grossmann
  • 225,327
  • 5
    Furthermore, we can't expect to get any other expressions, because the special case for $1\times1$ matrices has to be $AB(A+B)^{-1}$, so the general case must use these three factors. +1. – J.G. Jul 15 '20 at 11:57
  • 1
    The first line should read $A^{-1}(A+B)B^{-1} = A^{-1}AB^{-1} + A^{-1}BB^{-1} = B^{-1} + A^{-1}$ – Kai Jul 15 '20 at 21:24