Article 6VF36 Golden convergence

Golden convergence

by
John
from John D. Cook on (#6VF36)

The golden ratio satisfies the following equation.

gc1.svg

The proof most commonly given is to let x equal the right-hand side of the equation, then observe that x^2 = 1 + x, the quadratic equation for the golden ratio. The quadratic has two roots: and -1/. Since x > 1, x = .

This proof tacitly assumes that the expression above is meaningfully defined, and then manipulates it algebraically. But is it meaningfully defined? What exactly does the infinitely nested sequence of radicals mean?

You could interpret the nested radicals to be the limit of the iteration

gc2.svg

and show that the limit exists.

What should the starting value of our iteration be? It seems natural to choose x = 1, but other values will do. More on that shortly. We could compute by implementing the iteration in Python as follows.

 x_old, x_new = 0, 1 while (abs(x_old - x_new) > 1e-15): x_new, x_old = (1 + x_new)**0.5, x_new print(x_new)

The program terminates, so the iteration must converge, right? Probably so, but that's not a proof. To be more rigorous, define

gc3.svg

and so

gc4.svg

This shows 0 < f'(x) < for any positive x and so the function f(x) is a contraction mapping. This means the iterations converge. We could start with any x > -3/4 and the derivative would still be less than 1, so the iterations would converge.

We can visualize the process of convergence starting with x = 0 using the following cobweb plot.

golden_convergence.png

Related postsThe post Golden convergence first appeared on John D. Cook.
External Content
Source RSS or Atom Feed
Feed Location http://feeds.feedburner.com/TheEndeavour?format=xml
Feed Title John D. Cook
Feed Link https://www.johndcook.com/blog
Reply 0 comments