Solving a System by Iteration



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

$ \bullet$ Example: Another example for the pair of equations whose plot is Fig. 3.13.

equations;
$ x^2 + y^2 = 4$,
$ e^x + y = 1$

rearrangement;
$ y=-\sqrt{(4-x^2)}$,
$ x=ln(1-y)$

and begin with $ x=1.0$, 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

$ \bullet$ We are converging to the solution in an oscillatory manner.

Cem Ozdogan 2011-12-27