next up previous
Next: Application to Newton-Raphson method Up: Fixed point theorem and Previous: Fixed point theorem and

Application to solution of linear system of equations

We will apply the fixed point theorem to show the convergence of Jacobi iterations for the numerical solution of the linear algebraic system

\begin{displaymath}
Ax = b
\end{displaymath}

under the condition that the matrix $A$ is diagonally dominant. Assuming that the diagonal elements are non-zero, define the diagonal matrix
\begin{displaymath}
D = \textrm{diag}(A_{11}, A_{22}, ...., A_{NN})
\end{displaymath} (8)

and rewriting we get
\begin{displaymath}
x = D^{-1} [ b - (A-D)x]
\end{displaymath} (9)

which is now in the form of a fixed point problem with

\begin{displaymath}
F(x) = D^{-1} [ b - (A-D)x]
\end{displaymath}

For measuring the distance between two vectors let us choose the maximum norm

\begin{displaymath}
d(x,y) = \max_{j} \vert x_j - y_j \vert
\end{displaymath}

We must show that $F$ is a contraction mapping in this norm. Now

\begin{displaymath}
F(x) - F(y) = - D^{-1}(A-D)(x-y)
\end{displaymath}

so that the j'th component is given by

\begin{displaymath}[F(x) - F(y)]_j = \sum_{k \ne j} \frac{ A_{jk} }{ A_{jj}} (x_k - y_k)
\end{displaymath}

From this we get

\begin{displaymath}
\vert [F(x) - F(y)]_j \vert \le \max_k \vert x_k - y_k \vert \sum_{k \ne j} \left\vert
\frac{ A_{jk} }{ A_{jj}} \right\vert
\end{displaymath}

and

\begin{displaymath}
d( F(x), F(y) ) \le d(x,y)\max_j \sum_{k \ne j} \left\vert \frac{ A_{jk} }{ A_{jj}}
\right\vert
\end{displaymath}

Hence the mapping is contractive if
\begin{displaymath}
\sum_{k \ne j} \vert A_{jk} \vert < \vert A_{jj} \vert,    1 \le j \le N
\end{displaymath} (10)

which is just the condition of diagonal dominance of matrix $A$. Hence if the matrix is diagonally dominant then the fixed point theorem assures us that the Jacobi iterations will converge.


next up previous
Next: Application to Newton-Raphson method Up: Fixed point theorem and Previous: Fixed point theorem and
Praveen. C, last updated on 18-February-2005