Iterative refinement

Iterative refinement is an iterative method proposed by James H. Wilkinson to improve the accuracy of numerical solutions to systems of linear equations.

When solving a linear system Ax = b, due to the presence of rounding errors, the computed solution x̂ may sometimes deviate from the exact solution x*. Starting with x1 = x̂, iterative refinement computes a sequence {x1,x2,x3,…} which converges to x* when certain assumptions are met.

Description

For m = 1,2,, the th iteration of iterative refinement consists of three steps:

  1. Compute the residual
    rm = b Axm
  2. Solve the system
    Adm = rm
  3. Add the correction
    xm+1 = xm + dm

Error analysis

As a rule of thumb, iterative refinement for Gaussian elimination produces a solution correct to working precision if double the working precision is used in the computation of r, e.g. by using quad or double extended precision IEEE 754 floating point, and if A is not too ill-conditioned (and the iteration and the rate of convergence are determined by the condition number of A).[1]

More formally, assuming that each solve step is reasonably accurate, i.e., in mathematical terms, for every m, we have

A(I + Fm)dm = rm

where Fm < 1, the relative error in the th iterate of iterative refinement satisfies

where

if A is “not too badly conditioned”, which in this context means

0 < σκ(A)ε1 1

and implies that μ1 and μ2 are of order unity.

The distinction of ε1 and ε2 is intended to allow mixed-precision evaluation of rm where intermediate results are computed with unit round-off ε2 before the final result is rounded (or truncated) with unit round-off ε1. All other computations are assumed to be carried out with unit round-off ε1.

Notes

  1. Higham, Nicholas (2002). Accuracy and Stability of Numerical Algorithms (2 ed). SIAM. p. 232.

References


This article is issued from Wikipedia - version of the 5/12/2015. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.