Let $A,B$ be symmetric positive definite matrices. Let $A^{-1} = LL^T$ (Cholesky decomposition, $L$ is lower-triangular). I think the following identities are true, but I haven't found them online: $$ (A+B)^{-1} = L(I+L^TBL)^{-1}L^T \\ |A+B| = |A| \, |I+L^T B L| $$ Are they correct? And if so, how do you show they're true? I suppose they can be derived from the Woodbury formula and the matrix determinant lemma, but I tried and I couldn't prove it...
Asked
Active
Viewed 4,534 times
6
-
3Both identities follow from $A+B = L^{-T} L^{-1}+B = L^{-T} ( I + L^T B L ) L^{-1}$. – copper.hat May 21 '14 at 18:23
-
Thanks. Your comment was the most useful. I would've accepted it as an answer! – May 21 '14 at 18:36
-
Glad to be of help :-). – copper.hat May 21 '14 at 21:48