MAT360 Section Summary: 2.2

Fixed-Point Iteration

Summary

Suppose that you want to solve the equation

displaymath173

The value of x that satisfies this equation is called a fixed point for the function tex2html_wrap_inline189 , because it is a point such that g(x)=x - the image is the same as the argument.

One way to go about finding the fixed point would be to rewrite the equation as

displaymath174

and to use bisection to find a root of f (in fact, the unique root, as one can see from the graph of f). Here it is in lisp:

Fixed-point iteration is based on a couple of results from calculus: the IVT, and the MVT, as follows:

Theorem 2.2:

The proofs are by

So we know that there's a fixed point on an interval [a,b], and may even know that it's unique. What now?

Now we assume that, perhaps, if we start with a value tex2html_wrap_inline219 that's close to the real fixed point p, that by simply computing tex2html_wrap_inline223 (which is tex2html_wrap_inline225 ) we'll actually get closer to p.

Let's look at the ``cobweb diagram'' of this situation.

Here it is in lisp:

Under what circumstances will that happen? In what circumstances would the same ``cobwebbing'' procedure fail? Here it doesn't work too well: convergence is slow. Why?

Here it just plain fails....

Well, in some circumstances, it's guaranteed to work:

Theorem 2.3: Fixed-Point Theorem Let tex2html_wrap_inline197 be such that tex2html_wrap_inline199 , for all x in [a,b]. Suppose, in addition, that g' exists on (a,b), and that a constant 0<k<1 exists with

displaymath176

for all tex2html_wrap_inline243 . Then for any number tex2html_wrap_inline245 , the sequence

displaymath177

tex2html_wrap_inline247 , converges to the unique fixed point p in [a,b].

Proof: MVT applied to tex2html_wrap_inline253 .

Corollary 2.4: If g satisfies the hypotheses of Theorem 2.3, then bounds for the error involved in using tex2html_wrap_inline257 to approximate p are given by

displaymath178

and

displaymath179

for all tex2html_wrap_inline247 .

Proof: by use of various inequalities.

There may be lots of ways to create a fixed-point function, and some of them are better than others.

Example: consider exercises 1 and 2.



Tue Sep 20 21:42:09 EDT 2005