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).
Does anyone have an explanation?
How can I calculate correct inverse matrices in
R?
Thanks for your help
A, this is given byrcond(A). – Zen Jun 14 '12 at 18:504.531075e-09– Macro Jun 14 '12 at 18:52x) and calculatesolve(x) %*% xI 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