Take any two positive numbers and call the larger one a1 and smaller b1 . Calculate the arithmetic mean of the two numbers and call this a2 , where:
a2 =( a1 + b1 )/2.

Calculate the geometric mean of a1 and b1 and call this b2 so that:
b2 =( a1 b1 ).

Suppose you start with 3 and 12, then the arithmmmetic mean is 7.5 and the geometric mean is 6.

Repeat the calculations to generate a sequence of arithmetic means a1 , a2 , a3 , ... and a sequence of geometric means b1 , b2 , b3 , ... where
an+1 =( an + bn )/2,


bn+1 =( an bn ).

In the examle given
a2 =6.75,


b2 =(45)=6.708   to 3 decimal places .

Calculate the first 5 terms of each sequence and mark them on a number line. Calculate a few more terms and make a note of what happens to the two sequences.

Now repeat the same calculations starting with different choices of positive values for a1 and b1 . You should notice the same behaviour of the two sequences whatever starting values you choose. Describe and explain this behaviour.

You may like to write a short program for a calculator or computer to calculate the sequences and if so you should send in your program with your solution.