Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

tl/dr

Does anyone know a function or routine which allows to solve linear systems using a tikhonov regularization? More generally, a function or routine to correctly solve linear systems, whether well or ill conditioned?

Details

I have big problems to find a correct inverse matrix using R standard functions solve and ginv. I do not understand why solve or ginv cannot correctly invert some matrices. For example, inverting the following matrix $X$ $(4 \times 4)$:

[r1] 112    114.02675   -99.0725    48.21424
[r2] 114.02675  116.09108   -100.91021  49.01754
[r3] -99.0725   -100.91021  89.97304    -39.267
[r4] 48.21424   49.01754    -39.267         26.11804

gives this curious result $X^{-1}$ :

[r1]  7581993.46   -7459378.79  -46534.6234 -66885.6052
[r2] -7459378.79   7338753.44   45787.7223  65800.3842
[r3] -46534.62     45787.72 290.6085    407.4297
[r4]  66885.61     65800.38 407.4297    592.1243

MS Excel provides this one which is correct :

[r1] 290607.5736   -285895.9835 -1773.086548    -2570.2266
[r2] -285895.9835  281267.2032  1749.988341 2524.997062
[r3] -1773.086548  1749.988341  15.81951395 12.59978592
[r4] -2570.2266    2524.997062  12.59978592 24.81554691

I know that this is the correct solution because $XX^{-1}$ gives the Identity matrix (not with the inverse matrix calculated with solve or ginv).

  1. Does anyone have an explanation?

  2. How can I calculate correct inverse matrices in R?

Thanks for your help

share|improve this question
Could you please tell us the reciprocal condition number of your matrix? In R, for a matrix A, this is given by rcond(A). – Zen Jun 14 '12 at 18:50
@Zen, I've computed it as 4.531075e-09 – Macro Jun 14 '12 at 18:52
@Lio, when I enter this matrix (into a variable x) and calculate solve(x) %*% x I got something pretty darn close to the identity (errors are $<10^{-8})$. Why is that different from what you're seeing? – Macro Jun 14 '12 at 18:53
3  
Perform an SVD of $X$: the largest three eigenvalues are 337, 7.5, and .01; the last is 0.0000017: even for double-precision floating arithmetic, $X$ has to be considered essentially singular and therefore does not have an inverse. Attempts to invert it can be unstable (to put it mildly). Excel apparently uses a good stable inversion routine, but even its output is correct only to eight to nine decimal places rather than the 16 available in double precision: effectively it has already lost seven to eight decimal places of precision. – whuber Jun 14 '12 at 19:00
1  
See if evaluating $(A + \epsilon I)^{-1}$, for small $\epsilon$, instead of $A^{-1}$, gives a sensible answer to your problem. – Zen Jun 14 '12 at 19:48
show 9 more comments

migrated from stats.stackexchange.com Aug 14 '12 at 20:48

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.