Definition

Given an equation , we continuously iterate on to predict the new value of based on its old value.

Transforming Equations

Equations need to be in the right form for fixed point iteration to work. There are 2 options:

  • Isolate
  • Add to both sides Basically, any needs to be transformed to .

Example 1:

This is transformed by isolating :

Example 2:

This is transformed by adding to both sides:


Fixed Point Iteration Example

Let’s say we have:

Isolating and putting it into fixed point iteration form:

Then, we have:

Iteration
10 (initial)1100
210.3679172
30.36790.692247
…100.57110.56491.11

Converges when (slope at ).


Convergence Properties

Convergence occurs when the absolute value of the slope is less than the slope of . Basically the idea here is that if the curve changes to fast relative to the isolated function, the two curves diverge since the iterations are no longer moving toward the line.

Convergence cases:

Divergence cases:

  • Converges when
  • Diverges when