Solving ill posed linear equations

596 Views Asked by At

Given a set of linear equations $AX=B$, say $A$ is an ill posed matrix (has a few singular values equal or very close to zero), which numerical algorithm (conjugate gradient, least squares or steepest decent etc ) should be used to obtain the best solution? More specifically, is there a concrete comparison between these methods?

1

There are 1 best solutions below

0
On

What do you mean by "best solution"?

If your problem is ill-posed, then you need regularization. In this case, conjugate gradient provides a form of regularization. Also, you may wish to consider using Truncated Singular Value Decomposition, consisting into filtering out, during the matrix inversion, the less relevant singular values which are responsible for the ill-posedness. You may also wish to consider Tikhonov regularization (leading, under the SVD approach, to a particular shaping of the singular values).

As reference on inverse problems (especially linear inverse problems) and related (regularized) solution strategies, a good book is M.Bertero, P.Boccacci, Introduction to Inverse Problems in Imaging, IOP Publishing, Bristol.