next up previous contents
Next: Implementation Up: Newton method for solving Previous: Newton method for solving   Contents

Mathematical background

Let ${\cal F}$ be a system of $n$ equations in the $n$ unknowns ${\bf
x}$ and ${\bf x_0}$ be an estimate of the solution of the system. Let $J$ be the Jacobian matrix of the system of equation. Then the iterative scheme defined by:

\begin{displaymath}
{\bf x_{k+1}}= {\bf x_k}+ J^{-1}({\bf x_k}){\cal F}({\bf x_k})
\end{displaymath} (2.6)

starting with ${\bf x_0}$ may converge toward a solution of the system.

A simplified Newton method consist in using a constant matrix in the classical Newton method, for example the inverse Jacobian matrix at some point like ${\bf x_0}$. The iterative scheme become:

\begin{displaymath}
{\bf x_{k+1}}= {\bf x_k}+ J^{-1}({\bf x_0}){\cal F}({\bf x_k})
\end{displaymath} (2.7)

Although the simplified method may need a larger number of iteration before converging than the classical scheme each iteration has a lower computation time as there is no computation of the inverse of the Jacobian matrix. This method may also encounter convergence problem as it has a convergence ball smaller than the classical Newton method.

Newton method has advantages and drawbacks that need to be known in order to use it in the best way:


next up previous contents
Next: Implementation Up: Newton method for solving Previous: Newton method for solving   Contents
Jean-Pierre Merlet 2012-12-20