Solving a System by Iteration
- There is another way to attack a system of nonlinear equations. 
 
- Consider this pair of equations:
equations;
 , | 
  | 
 
rearrangement;
 , | 
  | 
 
 
- We know how to solve a single nonlinear equation by fixed-point iterations
 
- We rearrange it to solve for the variable in a way that successive computations may reach a solution. 
 
Table 3.6:
An example for solving a system by iteration
| y-value | 
x-value | 
| 2 | 
0.69315 | 
| 2.88539 | 
1.05966 | 
| 2.72294 | 
1.00171 | 
| 2.71829 | 
1.00000 | 
| 2.71828 | 
1.00000 | 
 
 
- To start, we guess at a value for 
, say, 
. See Table 3.6.
 
- Final values are precisely the correct results.
 
 Example: Another example for the pair of equations whose plot is Fig. 3.13. 
equations;
 , | 
  | 
rearrangement;
 , | 
  | 
and begin with 
, the successive values for y and x are: (See Table 3.7)
Table 3.7:
Another example for solving a system by iteration
| y-value | 
x-value | 
| -1.7291 | 
1.0051 | 
| -1.72975 | 
1.00398 | 
| -1.72961 | 
1.00421 | 
| -1.72964 | 
1.00416 | 
| -1.72963 | 
1.00417 | 
 
 
 We are converging to the solution in an oscillatory manner.
Cem Ozdogan
2011-12-27