|
|
|
|
|
ALGEBRARIC SIMULTANEOUS EQUATIONS -> Newton's Method for Nonlinear Systems
|
Nonlinear systems of equations
Newton's
Method for Nonlinear Systems Solving nonlinear systems iteratively is an
active area of research, and there are a number of good sources to consult.
Some of the most common methods are:
- Steepest Descent
- Conjugate Gradient
- Broyden and variable metric methods
- Fixed Point Methods
- Method of Weighted Residuals
This list is not comprehensive, of
course, but perhaps the most common method is ``Newton Raphson's Method'' which
we will do next. It is also a good method to understand since many of its pros
and cons are the basis for the development of other methods. Let
be an -dimensional vector of functions that depend on
. The problem we want to solve is the root-finding problem
That is,
Just as we did in the scalar case, we expand about , locally
and retain to first order in :
Here, the Jacobian Matrix is
Hence, we can solve formally for the perturbation:
it is now straightforward to see that the situation is not different from
the scalar case. We form an iterative problem: iteratively solve for
, for
, starting with some initial guess . This can be done by solving for the update , using
-->
which is a linear-algebraic problem, with an update
Convergence is now measured in terms of vector norms and the conditions
for success or failure are more complex, but more geometrical (which is neat!).
The new issue is: How to solve the linear algebraic problem. We know how to
solve these types of problems with direct methods .
But as we already know, direct methods are not always the most efficient
technique, and in some instances, they are computationally prohibitive. So we
study next iterative techniques for the solution of linear systems.
Newton Raphson Method (N-R Method)
|
|
|