Biconjugate gradient stabilized method

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

Lua error in package.lua at line 80: module 'strict' not found.

In numerical linear algebra, the biconjugate gradient stabilized method, often abbreviated as BiCGSTAB, is an iterative method developed by H. A. van der Vorst for the numerical solution of nonsymmetric linear systems. It is a variant of the biconjugate gradient method (BiCG) and has faster and smoother convergence than the original BiCG as well as other variants such as the conjugate gradient squared method (CGS). It is a Krylov subspace method.

Algorithmic steps

Unpreconditioned BiCGSTAB

To solve a linear system Ax = b, BiCGSTAB starts with an initial guess x0 and proceeds as follows:

  1. r0 = bAx0
  2. Choose an arbitrary vector 0 such that (0, r0) ≠ 0, e.g., 0 = r0
  3. ρ0 = α = ω0 = 1
  4. v0 = p0 = 0
  5. For i = 1, 2, 3, …
    1. ρi = (0, ri−1)
    2. β = (ρi/ρi−1)(α/ωi−1)
    3. pi = ri−1 + β(pi−1ωi−1vi−1)
    4. vi = Api
    5. α = ρi/(0, vi)
    6. s = ri−1αvi
    7. if || s || sufficiently small, then set xi = xi−1 + αpi and quit
    8. t = As
    9. ωi = (t, s)/(t, t)
    10. xi = xi−1 + αpi + ωis
    11. If xi is accurate enough, then quit
    12. ri = sωit

Preconditioned BiCGSTAB

Preconditioners are usually used to accelerate convergence of iterative methods. To solve a linear system Ax = b with a preconditioner K = K1K2A, preconditioned BiCGSTAB starts with an initial guess x0 and proceeds as follows:

  1. r0 = bAx0
  2. Choose an arbitrary vector 0 such that (0, r0) ≠ 0, e.g., 0 = r0
  3. ρ0 = α = ω0 = 1
  4. v0 = p0 = 0
  5. For i = 1, 2, 3, …
    1. ρi = (0, ri−1)
    2. β = (ρi/ρi−1)(α/ωi−1)
    3. pi = ri−1 + β(pi−1ωi−1vi−1)
    4. y = K−1pi
    5. vi = Ay
    6. α = ρi/(0, vi)
    7. s = ri−1αvi
    8. if || s || sufficiently small, then set xi = xi−1 + αpi and quit
    9. z = K−1s
    10. t = Az
    11. ωi = (K −1
      1
       
      t, K −1
      1
       
      s)/(K −1
      1
       
      t, K −1
      1
       
      t)
    12. xi = xi−1 + αy + ωiz
    13. If xi is accurate enough then quit
    14. ri = sωit

This formulation is equivalent to applying unpreconditioned BiCGSTAB to the explicitly preconditioned system

Ãx̃ =

with à = K −1
1
 
AK −1
2
 
, = K2x and = K −1
1
 
b
. In other words, both left- and right-preconditioning are possible with this formulation.

Derivation

BiCG in polynomial form

In BiCG, the search directions pi and i and the residuals ri and i are updated using the following recurrence relations:

pi = ri−1 + βipi−1,
i = i−1 + βii−1,
ri = ri−1αiApi,
i = i−1αiATi.

The constants αi and βi are chosen to be

αi = ρi/(i, Api),
βi = ρi/ρi−1

where ρi = (i−1, ri−1) so that the residuals and the search directions satisfy biorthogonality and biconjugacy, respectively, i.e., for ij,

(i, rj) = 0,
(i, Apj) = 0.

It is straightforward to show that

ri = Pi(A)r0,
i = Pi(AT)0,
pi+1 = Ti(A)r0,
i+1 = Ti(AT)0

where Pi(A) and Ti(A) are ith-degree polynomials in A. These polynomials satisfy the following recurrence relations:

Pi(A) = Pi−1(A) − αiATi−1(A),
Ti(A) = Pi(A) − βi+1Ti−1(A).

Derivation of BiCGSTAB from BiCG

It is unnecessary to explicitly keep track of the residuals and search directions of BiCG. In other words, the BiCG iterations can be performed implicitly. In BiCGSTAB, one wishes to have recurrence relations for

i = Qi(A)Pi(A)r0

where Qi(A) = (Iω1A)(Iω2A)⋯(IωiA) with suitable constants ωj instead of ri = Pi(A) in the hope that Qi(A) will enable faster and smoother convergence in i than ri.

It follows from the recurrence relations for Pi(A) and Ti(A) and the definition of Qi(A) that

Qi(A)Pi(A)r0 = (IωiA)(Qi−1(A)Pi−1(A)r0αiAQi−1(A)Ti−1(A)r0),

which entails the necessity of a recurrence relation for Qi(A)Ti(A)r0. This can also be derived from the BiCG relations:

Qi(A)Ti(A)r0 = Qi(A)Pi(A)r0 + βi+1(IωiA)Qi−1(A)Pi−1(A)r0.

Similarly to defining i, BiCGSTAB defines

i+1 = Qi(A)Ti(A)r0.

Written in vector form, the recurrence relations for i and i are

i = i−1 + βi(Iωi−1A)i−1,
i = (IωiA)(i−1αiAi).

To derive a recurrence relation for xi, define

si = i−1αiAi.

The recurrence relation for i can then be written as

i = i−1αiAiωiAsi,

which corresponds to

xi = xi−1 + αii + ωisi.

Determination of BiCGSTAB constants

Now it remains to determine the BiCG constants αi and βi and choose a suitable ωi.

In BiCG, βi = ρi/ρi−1 with

ρi = (i−1, ri−1) = (Pi−1(AT)0, Pi−1(A)r0).

Since BiCGSTAB does not explicitly keep track of i or ri, ρi is not immediately computable from this formula. However, it can be related to the scalar

ρ̃i = (Qi−1(AT)0, Pi−1(A)r0) = (0, Qi−1(A)Pi−1(A)r0) = (0, ri−1).

Due to biorthogonality, ri−1 = Pi−1(A)r0 is orthogonal to Ui−2(AT)0 where Ui−2(AT) is any polynomial of degree i − 2 in AT. Hence, only the highest-order terms of Pi−1(AT) and Qi−1(AT) matter in the dot products (Pi−1(AT)0, Pi−1(A)r0) and (Qi−1(AT)0, Pi−1(A)r0). The leading coefficients of Pi−1(AT) and Qi−1(AT) are (−1)i−1α1α2αi−1 and (−1)i−1ω1ω2ωi−1, respectively. It follows that

ρi = (α1/ω1)(α2/ω2)⋯(αi−1/ωi−1)ρ̃i,

and thus

βi = ρi/ρi−1 = (ρ̃i/ρ̃i−1)(αi−1/ωi−1).

A simple formula for αi can be similarly derived. In BiCG,

αi = ρi/(i, Api) = (Pi−1(AT)0, Pi−1(A)r0)/(Ti−1(AT)0, ATi−1(A)r0).

Similarly to the case above, only the highest-order terms of Pi−1(AT) and Ti−1(AT) matter in the dot products thanks to biorthogonality and biconjugacy. It happens that Pi−1(AT) and Ti−1(AT) have the same leading coefficient. Thus, they can be replaced simultaneously with Qi−1(AT) in the formula, which leads to

αi = (Qi−1(AT)0, Pi−1(A)r0)/(Qi−1(AT)0, ATi−1(A)r0) = ρ̃i/(0, AQi−1(A)Ti−1(A)r0) = ρ̃i/(0, Ap̃i).

Finally, BiCGSTAB selects ωi to minimize i = (IωiA)si in 2-norm as a function of ωi. This is achieved when

((IωiA)si, Asi) = 0,

giving the optimal value

ωi = (Asi, si)/(Asi, Asi).

Generalization

BiCGSTAB can be viewed as a combination of BiCG and GMRES where each BiCG step is followed by a GMRES(1) (i.e., GMRES restarted at each step) step to repair the irregular convergence behavior of CGS, as an improvement of which BiCGSTAB was developed. However, due to the use of degree-one minimum residual polynomials, such repair may not be effective if the matrix A has large complex eigenpairs. In such cases, BiCGSTAB is likely to stagnate as confirmed by numerical experiments.

One may expect that higher-degree minimum residual polynomials may better handle this situation. This gives rise to algorithms including BiCGSTAB2[1] and the more general BiCGSTAB(l)[2]. In BiCGSTAB(l), a GMRES(l) step follows every l BiCG steps. BiCGSTAB2 is equivalent to BiCGSTAB(l) with l = 2.

See also

References

  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • ^ Lua error in package.lua at line 80: module 'strict' not found.
  • ^ Lua error in package.lua at line 80: module 'strict' not found.