June 15th, 2010, 12:49 pm
Pretty vague, but here is something.Let M = alpha*C+(1-alpha)*D(rho).If all your rho's are 0, then M = Id, the identity, so Inv M = Id, where Inv means inverse.In general, you could writeM = Id - A, where A = Id - M.Then, Inv M = Id + Sum(n=1,infinity} A^n if the norm of A is small enough. This just means the spectral radius of A is less than 1 -- see my p.s. for how to get that.================================================================ p.s. In Mathematica, or some CAS, you could developA = Sum(m=1,M) lambda(m) E(m), the spectral decomposition of A, assumed M x M, wherelambda are the eigenvalues and E(m) the projections. This would tell you if max |lambda(m)| < 1, needed for my power series to converge.In addition, it means A^n = Sum(m=1,M) [lambda(m)]^n E(m), so another formula isInv M = Id + Sum(n=1,infinity} Sum(m=1,M) [lambda(m)]^n E(m) , which gives Inv M = Sum(m=1,M) E(m)/(1-lambda(m))by doing the sums in the reverse order. Of course, the easiest (numerical result) formula in Mathematica is simply Inverse[M], but it's possible the spectral decomposition may be useful, too.
Last edited by
Alan on June 14th, 2010, 10:00 pm, edited 1 time in total.