I need a way to compute the inverse of the sum of three matrices:
$(A + BB^T + \beta I)^{-1} $ where $I$ is identity and $\beta$ is a constant.
I am not very familiar with linear algebra, but a quick google search didn't help.
I need a way to compute the inverse of the sum of three matrices:
$(A + BB^T + \beta I)^{-1} $ where $I$ is identity and $\beta$ is a constant.
I am not very familiar with linear algebra, but a quick google search didn't help.
\begin{align} (A+C)^{-1}&= A^{-1}-(I+A^{-1}C)^{-1}A^{-1}CA^{-1} \end{align}
as long as $A$ is invertible. Not sure if that helps. [1]: http://math.stackexchange.com/questions/17776/inverse-of-the-sum-of-matrices
– Rocket Man Jul 10 '15 at 02:39Let's assume the inverse exist. It should (i think).
Idk if that helps... I might beable to just make python do this for me without using a closed form. But, i dont think so.
– Xavier Hubbard Anderson Jul 10 '15 at 04:22