How Does a Fixed Point Theorem Explain Convergence in Iterative Methods?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 2K views
mech-eng
Messages
826
Reaction score
13
hm.png

Here I do not perceive the a sequence generated by fixed-point iteration. First would you like to explain this. How can it be that if lim n->∞ pn=P, then lim n-> ∞ Pn+1 ?

Source: Numerical Methods Using Matlab by Kurtis D. Fink and John Matthews.
 
Last edited:
Mathematics news on Phys.org
Your appendix does not say exactly that. But:
  1. pn+1 = g(pn) (definition)
  2. Assume limn→∞pn=P. Then, of course, limn→∞pn+1=P
  3. g(P) =g(limn→∞pn)
  4. g is continuous (supposition). Therefore g(limn→∞pn) = limn→∞g(pn)
  5. By definition (see 1.) limn→∞g(pn) = limn→∞pn+1 =P (from 2.)
  6. 3. and 5. ⇒ g(P) = P.
 
  • Like
Likes   Reactions: mech-eng
It seems that I have a little forgotten calculus. Would you like to give more information for step 2 and step 4 in your post. With what topic of calculus are they about and how do we know them. I will search for their proof to best understand.

Thank you.
 
mech-eng said:
Would you like to give more information for step 2 and step 4 in your post
Step 2: limn→∞pn=P means "given ε>0, there exists an N such that for all n>N, |pn - P|<ε". And if n>N, obviously (n+1)>N.
Step 4: Again an ε-proof: Since g is continuous, there exists a δ>0 such that |g(P)-g(x)|<ε for all x such that |P-x|<δ. Also, due to step 2, there is an N such that for all n>N, |pn - P|<min(ε, δ). Therefore |g(P)-g(pn)|<ε for n>N, which means that limn→∞g(pn) = g(P) = g( limn→∞pn).