Vorbedingungsoperatoren
Vorbedingungsoperatoren, often referred to as preconditioners, are auxiliary operators used in numerical linear algebra to improve the convergence rate of iterative methods for solving systems of linear equations. When a system Ax = b is ill-conditioned, meaning the condition number of A is large, standard iterative solvers like the conjugate gradient method can converge very slowly. A preconditioner M is an operator that is applied to the system in such a way that the preconditioned system M⁻¹Ax = M⁻¹b or AM⁻¹x = b has a much smaller condition number than the original system. The goal is to find a preconditioner M such that M⁻¹A (or AM⁻¹) is close to the identity matrix, or at least has eigenvalues clustered around 1.
The effectiveness of a preconditioner depends on its ability to approximate the inverse of A (or a
Iterative methods, when combined with a suitable preconditioner, can solve large-scale linear systems much more efficiently