Uzawa iteration
In numerical mathematics, the Uzawa iteration is an algorithm for solving saddle point problems. It is named after Hirofumi Uzawa and was originally introduced in the context of concave programming.{{cite book |first=H. |last=Uzawa |chapter=Iterative methods for concave programming |editor1-first=K. J. |editor1-last=Arrow |editor2-first=L. |editor2-last=Hurwicz |editor3-first=H. |editor3-last=Uzawa |title=Studies in linear and nonlinear programming |url=https://archive.org/details/studiesinlinearn0000arro |url-access=registration |publisher=Stanford University Press |year=1958 }}
Basic idea
We consider a saddle point problem of the form
:
= \begin{pmatrix} b_1\\ b_2 \end{pmatrix},
where is a symmetric positive-definite matrix.
Multiplying the first row by and subtracting from the second row yields the upper-triangular system
:
= \begin{pmatrix} b_1\\ b_2 - B^* A^{-1} b_1 \end{pmatrix},
where denotes the Schur complement.
Since is symmetric positive-definite, we can apply standard iterative methods like the gradient descent
method or the conjugate gradient method to solve
:
in order to compute .
The vector can be reconstructed by solving
:
It is possible to update alongside during the iteration for the Schur complement system and thus obtain an efficient algorithm.
Implementation
We start the conjugate gradient iteration by computing the residual
:
of the Schur complement system, where
:
denotes the upper half of the solution vector matching the initial guess for its lower half. We complete the initialization by choosing the first search direction
:
In each step, we compute
:
and keep the intermediate result
:
for later.
The scaling factor is given by
:
and leads to the updates
:
Using the intermediate result saved earlier, we can also update the upper part of the solution vector
:
Now we only have to construct the new search direction by the Gram–Schmidt process, i.e.,
:
The iteration terminates if the residual has become sufficiently small or if the norm of is significantly smaller than indicating that the Krylov subspace has been almost exhausted.
Modifications and extensions
If solving the linear system exactly is not feasible, inexact solvers can be applied.{{cite journal |first=H. C. |last=Elman |first2=G. H. |last2=Golub |author-link2=Gene H. Golub |title=Inexact and preconditioned Uzawa algorithms for saddle point problems |journal=SIAM J. Numer. Anal. |volume=31 |issue=6 |pages=1645–1661 |year=1994 |doi=10.1137/0731085 |citeseerx=10.1.1.307.8178 }}{{cite journal |first=J. H. |last=Bramble |author-link=James H. Bramble |first2=J. E. |last2=Pasciak |first3=A. T. |last3=Vassilev |title=Analysis of the inexact Uzawa algorithm for saddle point problems |journal=SIAM J. Numer. Anal. |volume=34 |issue=3 |pages=1072–1982 |year=1997 |doi=10.1137/S0036142994273343 |citeseerx=10.1.1.52.9559 }}{{cite journal |first=W. |last=Zulehner |title=Analysis of iterative methods for saddle point problems. A unified approach |journal=Math. Comp. |volume=71 |issue= 238|pages=479–505 |year=1998 |doi=10.1090/S0025-5718-01-01324-2 |doi-access=free }}
If the Schur complement system is ill-conditioned, preconditioners can be employed to improve the speed of convergence of the underlying gradient method.{{cite book |first=C. |last=Gräser |first2=R. |last2=Kornhuber |chapter=On Preconditioned Uzawa-type Iterations for a Saddle Point Problem with Inequality Constraints |title=Domain Decomposition Methods in Science and Engineering XVI |series=Lec. Not. Comp. Sci. Eng. |volume=55 |pages=91–102 |year=2007 |doi=10.1007/978-3-540-34469-8_8 |isbn=978-3-540-34468-1 |citeseerx=10.1.1.72.9238 }}
Inequality constraints can be incorporated, e.g., in order to handle obstacle problems.
References
{{Reflist}}
Further reading
- {{cite book |last=Chen |first=Zhangxin |chapter=Linear System Solution Techniques |title=Finite Element Methods and Their Applications |location=Berlin |publisher=Springer |year=2006 |isbn=978-3-540-28078-1 |chapter-url={{Google books |plainurl=yes |id=GvvMfd1chfkC |page=145 }} |pages=145–154 }}