Fixed Point Iteration Examples for x = g(x)
Here are some expressions and initial values to try
- cos(x), with initial value 0.5
- exp(-x), with initial value 0.5
- sqrt(1 + x), with initial guess 1.0
- 0.5*sqrt(10-x*x*x), with initial guess 1.5
- sqrt(10/(4+x)), with initial guess 1.5
- x - (x*x*x + 4*x*x - 10) / (3*x*x + 8*x), with initial guess 1.5
Back to fixed point program