stoppkriterium
Stoppkriterium, or stopping criterion, is a condition used to terminate an iterative algorithm when a solution is deemed sufficiently accurate or when further computation is not justified. It is common in numerical optimization, root finding, linear algebra and machine learning. The criterion helps balance accuracy against computational cost and numerical stability.
Common forms include: residual-based criteria such as the norm of the residual ||f(x_k)|| being less than a
Practical use often combines criteria, stopping when any one is satisfied or when multiple are satisfied. The
Notes: a stopping criterion is not a guarantee of global optimality; it signals convergence to a solution