An Introduction to the Continued Fraction

Continued fractions are just another way of writing fractions. They have some interesting connections with a jigsaw-puzzle problem of splitting a rectangle up into squares and also with one of the oldest algorithms known to Greek mathematicians of 300 BC - Euclid's Algorithm - for computing the greatest divisor common to two numbers (gcd).

An online Continued Fraction Converter and Calculator is available in a separate window by clicking on this icon: Calculator wherever it appears.

Contents of this Page

The / icon means there is a Things to do investigation at the end of the section.

A jigsaw puzzle: splitting rectangles into squares

45x16 rect Let's take an example to introduce you to a continued fraction. We'll convert the ordinary fraction 45/16 into a continued fraction.
We will make extensive use of a picture analogy (from Clark Kimberling of Evansville University, USA, but also mentioned by N N Vorob'ev in 1951 - see references below). For our example fraction of 45/16 we will use a rectangle of 45 units by 16 to show visually what is happening with the mathematics.

Looking at the rectangle the other way, its sides are in the ratio 16/45. We shall use this change of view when expressing 45/16 as a continued fraction. 45/16 suggests that we convert it to a whole number quotient (since 45 is bigger than 16) plus a proper fraction (what is left over after we've taken away multiples of 16 from 45).
45/16 is 2 lots of 16, with 13 left over, or, in terms of ordinary fractions: 45x16 rect

45
--
16
=
16 + 16 + 13
--
16
= 2 +
13
--
16
In terms of the picture, we have just cut off squares from the rectangle until we have another rectangular bit remaining. There are 2 squares (of side 16) and a 13 by 16 rectangle left over. The final rectangle is taller than it is wide, so no more 16x16 squares can be taken from it.

Now, suppose we do the same with the 13-by-16 rectangle, viewing it the other way round, so it is 16 by 13 (so we are expressing 16/13 as a whole number part plus a fraction left over). In terms of the mathematical notation we have:

45
--
16
=
16 + 16 + 13
--
16
= 2 +
13
--
16
= 2 +
1
--
16/13
Repeating what we did above but on 16/13 now, we see that there is just 1 square of side 13 to cut off, with a 3-by-13 rectangle left over. Writing the same thing mathematically expresses 13/3 as a whole-number-plus-fraction like this: 45x16
45
--
16
= 2 +
13
--
16
= 2 +
1
--
16/13
= 2 +
1
--
1 +
3
--
13
Notice how we have continued to use fractions and how the maths ties up with the picture.
You will have guessed what to do now: we do the same thing on the left-over 3-by-13 rectangle, but looking at it as a 13-by-3 rectangle. 45x16 There will be 4 squares (of side 3) and a rectangle 1-by-3 left over:
45
--
16
= 2 +
1
--
1 +
3
--
13
= 2 +
1
--
1 +
1
--
13/3
= 2 +
1
--
1 +
1
--
4 +
1
--
3
But now we have ended up with an exact number of squares in a rectangle, with nothing left over so we cannot split it down any more. 45x16
45
--
16
= 2 +
1
--
1 +
1
--
4 +
1
--
3

This expression relates directly to the geometry of the rectangle-as-squares jigsaw as follows: Since the numbers always reduce, that is, the size of the remaining rectangle left over will always have one side smaller than the starting rectangle, then the process will always stop with a final n-by-1 rectangle.

The General form of a Continued Fraction

We can do the same to any fraction, P/Q (P and Q are whole, positive numbers) expressing it in the form of a continued fraction as follows:
P  =  

Q

a +
1

b +
1

c +
1

d + ...
 
  =  a+1/(b+1/(c+1/(d+...)))  =  

a + 1  1  1

b+

c+

d+...

where a, b, c, d, e, etc are all whole numbers. If P/Q is less than 1, then the first number, a, will be 0.
The second form takes lots of vertical space on the page. The third form is the same mathematically, but all those brackets are confusing to read! The final form is used in some books as a convenient shorthand as it is both easy to read and takes little space on the page.
There is an even simpler notation (the list notation) that we introduce in the next section.

Note that usually all the numbers in the continued fraction will be positive although alternative forms are possible where negative whole numbers are allowed, but not on this page.

The fractional form that we have derived is called the continued fraction.

There is no need to draw the rectangles-as-squares pictures each time, unless you want to, because we can merely look at the numbers. If the fraction is less than 1, we use its reciprocal and then we can split it into a whole-number part plus another fraction which will be less than 1 and repeat. We stop when the fraction has a numerator or a denominator of 1.
Take for instance, 7/30. It is already less than 1 so we start off by writing it as

7/30 	= 0 + 1/(30/7)
and then we apply the method of the last paragraph:
7/30	= 0 + 1/(4 + 2/7)
        = 0 + 1/(4 + 1/(7/2))
        = 0 + 1/(4 + 1/(3 + 1/2))  
        = 0 + 1/(4 + 1/(3 + 1/(1 + 1/1)))
Either of the last two lines is a valid continued fraction form for 7/30 and we can, of course, just omit the "0 +" part.

The List Notation for Continued Fractions

We can write down any continued fraction such as
  P/Q = a + 1/(b + 1/(c + 1/(d + ...)))
just as a list of the numbers a, b, c, ... Since the first number, a, is special (it is the whole number part of the value) it is separated from the rest by a semicolon (;) and the rest are written as a list with comma separators (,) like this:
 P/Q = [a; b, c, d, ...]

The FIRST number in the list

For the continued fraction examples above, we can now write them as:
45/16   = [2;1,4,3] 
7/30 = [0;4,3,2] = [0;4,3,1,1]    (*)
If the first number in the list is 0, then the fraction it represents is less than one.
For instance, one half is:
1/2     = [0;2] which we can also write as [0;1,1]

An easy method of inverting a fraction

To take the reciprocal of an ordinary fraction, we just turn it upside-down.
For example, the reciprocal of   16 is  45 or
-- --

45

16
1
--

 16  
--

45

There is also a simple way to find the reciprocal of a continued fraction.
16/45, the reciprocal of 45/16,in its list form is just 0 + 1/(45/16), i.e. we insert a 0 at the front of the continued fraction in list form:
45/16 = [2;1,4,3] and 16/45 = [0;2,1,4,3]
If the list form of the fraction already begins with a zero, as in 1/2 = [0;2], then its reciprocal is found by removing the 0 from the front of the list:
2 = [2]

The LAST number in the list

Did you notice in the equation marked (*) above that there were two forms for the fraction 7/30 namely [0;4,3,2] and [0;4,3,1,1]?
This is true for all continued fractions. We can always write the last number, n, as (n-1) + 1/1 provided n is bigger than one. So we have the general rule:
Every finite continued fraction ending with n>1 has two forms:

/ Things to do /

You might find the Calculator Continued Fraction Calculator useful in this section.
  1. Express the following as continued fractions:
    1. 41/13
    2. 125/37
    3. 5/12
  2. x The three rectangles in the picture are split into squares.
    Assuming that the smallest sized square has sides of length 1, what is the ratio of the two sides of each of the three rectangles? What is the length of each of the rectangle's sides if the smallest squares have sides of length 2?
  3. In the continued fraction for 45/16 = [2; 1, 4, 3], let's see what happens when we change the final 3 to another number.
    What fractions correspond to the following continued fractions (in list form)? Can you spot the pattern?
    1. [2; 1, 4, 4]
    2. [2; 1, 4, 5]
    3. [2; 1, 4, 6]
    4. [2; 1, 4, 7]
    5. [2; 1, 4, n]
    How is your pattern related to the proper fraction for [2; 1, 4] ?
  4. Convert these pairs of continued fractions into a single proper fraction:
    1. [0; 1,2,3] and [0; 1,2,2,1]
    2. [1; 1,2] and [1; 1,1,1]
    3. [3; 2] and [3; 1,1]
    What is the general principle here?
  5. This investigation looks at the square numbers:
    1, 22=4, 32=9, 42=16, 52=25, 62=36, 49, 64, 81, 100, 121, 144, ...
    and forms fractions from neighbouring pairs.
    With thanks to Anthony Shaw who first told me of these patterns.
    First let's look at this sequence of fractions formed from neighbouring square numbers in the list above. Change each of these fractions into a continued fraction.
    1. 25/16
    2. 49/36
    3. 81/64
    4. 121/100
    5. ...
    Can you spot the pattern?
    Hint: express the two numbers in the proper fraction using the square numbers (2n)2 and (2n+1)2
    Does 9/4 fit into this pattern too?
  6. Here is another sequence of fractions similar to the previous investigation and again formed from successive square numbers. Convert each of these fractions to a continued fraction.
    1. 36/25
    2. 64/49
    3. 81/100
    4. 121/144
    5. ...
    What is the pattern this time?
    Again express it in mathematical terms using (2n)2 and (2n+1)2.

  7. spiral Here is the Fibonacci Spiral from the Fibonacci Numbers in Nature page:
    If the smallest squares have sides of length 1, what continued fraction does it correspond to?
    What proper fraction is this?
  8. Convert the successive Fibonacci number ratios into continued fractions. You should notice a striking similarity in your answers.
    1. 1/1
    2. 2/1
    3. 3/2
    4. 5/3
    5. 8/5
    If the ratio of consecutive Fibonacci numbers gets closer and closer to Phi, what do you think the continued fraction might be for Phi=1·618034... which is what the above fractions are tending towards?
  9. The last question made fractions from neighbouring Fibonacci numbers. Suppose we take next-but-one pairs for our fractions, e.g.
        1, 1, 2, 3,  5,  8, 13,  etc.
        2  3  5  8  13  21  34
    Convert each of these to continued fractions, expressing them in the list form. What pattern do you notice?

Converting a Continued Fraction to a single Fraction

The simplest way is just to "fold" the continued fraction from the right-hand end:
[2,1,3,4]  =  
2 +
1
--
1 + 
1
--
3 + 
1
--
4
  =  
2 +
1
--
1 + 
1
--
13/4
  =  
2 +
1
--
1 + 
4
--
13
  =  
2 +
1
--
17/13
  =  2 + 13/17  =  47/17
A short-cut is to notice that
[ ... , a,b] = [ ... , a + 1/b ]
and we can keep using this rule to reduce the CF all the way down to a single fraction:
[2, 1, 3, 4] = [2, 1, 3 + 1/4] = [2, 1, 13/4] = [2, (1 + 4/13)] = [2, 17/13] = [2 + 13/17] = [47/17] = 47/17

A surprising result about the REVERSE of the CF list

Here is a table of the CFs for all the sevenths fractions between 1/7 and 7/7. Each fraction is given to several decimal places, in its CF list form and, using the previous section, with its alternative CF list ending:
1/7 = 0.14285714285714285 = 0, 7 = 0, 6, 1
2/7 = 0.2857142857142857 = 0, 3, 2= 0, 3, 1, 1
3/7 = 0.42857142857142855 = 0, 2, 3= 0, 2, 2, 1
4/7 = 0.5714285714285714 = 0, 1, 1, 3= 0, 1, 1, 2, 1
5/7 = 0.7142857142857143 = 0, 1, 2, 2= 0, 1, 2, 1, 1
6/7 = 0.8571428571428571 = 0, 1, 6= 0, 1, 5, 1
You may have noticed the following patterns in the table:
  • The decimal fractions are made up of the same set of repeating digits: ...142857... in a cycle:
  • Each decimal fraction begins at a different place in the cycle:  
  1  
74
52
  8
It is the last property that we will investigate in this section.
Are all the above properties coincidences? Let's try another fraction:
1/8 = 0.125 = 0, 8 = 0, 7, 1
2/8 = 0.25 = 0, 4 = 0, 3, 1
3/8 = 0.375 = 0, 2, 1, 2 = 0, 2, 1, 1, 1
4/8 = 0.5 = 0, 2 = 0, 1, 1
5/8 = 0.625 = 0, 1, 1, 1, 2 = 0, 1, 1, 1, 1, 1
6/8 = 0.75 = 0, 1, 3 = 0, 1, 2, 1
7/8 = 0.875 = 0, 1, 7 = 0, 1, 6, 1
This time the decimal fractions do not share the same repeating cycle, but the final property, that all the CF lists after the initial zero do appear in the table in reverse order too!

So our "surprising result" is that

When we reverse the CF list of a fraction (after the initial number), the new fraction will have the same denominator
More precisely,
if [a0, a1, ... an–1, an] is A/B and
[a0, a1, ... an–1] is C/D then
[an, an–1, ... a0] = A/C
For example: [1,1,1,2] = 8/5 and [1,1,1] = 3/2 so [2,1,1,1] = 8/3

This result is proved in an amazing way by Harvey Mudd College's Professor of Mathematics: Art Benjamin - see Counting on Continued Fractions on Art's list of papers, preprints and books where there is a link to a PDF version to view.

Book: A T Benjamin, J J Quinn, W Watkins, Proofs That Really Count published by The Mathematical Association of America (Aug 2003), 208 pages.
This is a wonderful book on using counting methods in proofs by induction to prove many results in combinatorics and number theory which includes many Fibonacci number formulae. The authors make the proofs both easy to understand and fun too!

Here are some investigations for you to do:

/ Things to do /

You might find the Calculator Continued Fraction Calculator useful in this section.
  1. Make a list of the CF lists for all the fractions with a denominator of 5, 6, (7 and 8 are above), 9, 10, and so on as far as you want to go. The calculator link above is useful as it keeps the results in a window so you can cut-and-paste them. Use them to answer the following questions.
  2. Suppose we know the CF list for a/n. Can you find a rule which tells you which fraction b/n has the CF which is the reverse of a/n's (after the initial zero)?
    If you do find a rule (or a rule that always gives some of the fractions if not all), please do let me know using the email address at the bottom of this page.
  3. Find some pairs of words where each is the other when reversed: e.g.
    evil reversed is live and live reversed is evil
    straw and warts
  4. In the /7 and /8 fractions in the examples above, some fractions are the same when reversed:
    E.g.
    6/7 = 0, 1, 5, 1 and 1,5,1 reversed is also 1,5,1
    5/8 = 0, 1, 1, 1, 1, 1
    Such lists are called palindromes or palindromic.
    Find the 6 other palindrome CF lists in the two tables above.
  5. Use your lists from the first investigation to find some more palindromic CF lists.
    Is there a pattern? Can find a rule to tell when n/m (m>n) has a CF list that is a palindrome? (Again, if you do find a rule, please email me with your answer if you like.)
  6. Find some words which are palindromes, such as
    eye, civic, radar, level, madam
    What's the longest you can find?
  7. Another good word game is to find a phrase that is a palindrome. Here we ignore the spaces between letters.
    E.g. When Eve, the first woman, was presented to Adam, the first man, he might have said (in English!)
    Madam, I'm Adam
    (to which she would have replied,
    Eve
    of course!) and both of these are palindromic phrases.
    Another famous palindromic phrase is about the Panama Canal connecting the Atlantic and Pacific oceans across the narrow neck of land joining Central to Southern America:
    A man, a plan, a canal: Panama!
    Invent some of your own. If you can make any about Fibonacci or any topic on the pages at this site, do email me and I'll place them here with your name so everyone can see them!

Continued Fractions and Euclid's GCD Algorithm

Euclid's GCD algorithm

One of the often studied algorithms in computing science is Euclid's Algorithm for finding the greatest common divisor (gcd) of two numbers. The greatest common divisor (often just abbreviated to gcd) is also called the highest common factor (or just hcf). It is intimately related to continued fractions, but this is hardly ever mentioned in computing science text books. Here we try to show you the link and introduce a visual way of seeing the algorithm at work as well as giving an alternative look into continued fractions.

So let's look again at the calculations we did above for 45/16.

45=2 x16+13: 45 is a multiple of 16 with 13 left over
16=1 x13+ 3: 16 is a multiple of 13 with  3 left over
13=4 x 3+ 1: 13 is a multiple of  3 with  1 left over
3=3 x 1+ 0:  3 is a multiple of  1 exactly.
L=Nx S+ R 
The bold figures ( N ) are our continued fraction numbers. The L column is the Longest side of each rectangle that we encountered with S the Shortest side and R being the Remainder.
The method shown here is These are the three conditions necessary for an algorithm - a method that a computer can carry out automatically and which eventually stops.

Euclid (a Greek mathematicians and philosopher of about 300 BC) describes this algorithm in Propositions 1 and 2 of Book 7 of The Elements, although it was probably known to the Babylonian and Egyptian mathematicians of 3000-4000 BC also.
If we try it with other numbers, the final non-zero remainder is the greatest number that is an exact divisor of both our original numbers (the greatest common divisor) - here it is 1.

Given any two numbers, they each have 1 as a divisor so there will always be a greatest common divisor of any two (positive) numbers and it will be at least 1.

Using Lists of Divisors to find the GCD

Here are the divisors of 45 and of 16:

  45 has divisors  1, 3, 5, 9, 15 and 45
  16 has divisors  1, 2, 4, 8 and 16
So the largest number in both of these lists is just 1.

Let's take a fraction such as 168/720. It is not in its lowest terms because we can find an equivalent fraction which uses simpler numbers. Since both 168 and 720 are even, then 168/720 is the same (size) as 84/360. This fraction too can be reduced, and perhaps the new one will be reducible too. So can we find the largest number to divide into both numerator 168 and denominator 720 and get to the simplest form immediately?
However, first, let's try to find the largest number to divide into both 168 and 720 directly:
Find the lists of the divisors of 168 and of 720 and pick the largest number in both lists:

168 has divisors 1, 2, 3, 4, 6, 7, 8, 12, 14, 21, 24, 28, 42, 56, 84 and 168
720 has divisors 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 16, 18, 20, 24, 30, 36, 
                 40, 45, 48, 60, 72, 80, 90, 120, 144, 180, 240, 360 and 720
Phew! - that took some work!
Now we just need to find the largest number in both lists. A bit of careful searching soon reveals that it is 24. So 24 is the greatest common divisor (gcd) of 168 and 720. You will often see statements such as this written as follows:
gcd( 168, 720 ) = 24

The importance of the gcd of a and b is that it tells us how to put the fraction a/b into its simplest form by giving the number to divide the top and the bottom by. The resulting fraction will be the simplest form possible. So

168
--
720
=
168 ÷ 24
--
720 ÷ 24
=
7
--
30
and similarly
720
--
168
=
30
--
7
= 4 +
2
--
7

Euclid's algorithm is here applied to 720 and 168: Just keep dividing and noting remainders so that the larger number 720 is 4 lots of the smaller number 168 with 48 left over. Now repeat on the smaller number (168) and the remainder (48) and so on:


   720 = 4x168 + 48
   168 = 3x 48 + 24
    48 = 2x 24 + 0
so the last multiple before we reach the zero is 24, just as we found above but with rather less effort this time!

168x720 Here is a rectangle 720 by 168 split up into squares, as above. Note how the quotients 4, 3 and 2 are shown in the picture and also that the gcd is 24 (the side of the smallest squares):
And here is 720/168 expressed as a continued fraction:

720
--
168
= 4 +
48
--
168
= 4 +
1
--
168/48
= 4 +
1
--
3 +
24
--
48
= 4 +
1
--
3 +
1
--
2

/ Things to do /

You might find the Calculator Continued Fraction Calculator useful in this section.
  1. For each of the fractions in the previous Things To Do section, use Euclid's algorithm to check your answers.
  2. There is another simple way to find gcd's which takes more work than Euclid's method but is quicker than enumerating all the divisors. It involves expressing the two numbers as powers of prime factors, for instance: 720 = 24 x 32 x 51 and 168 = 23 x 31 x 71
    First re-write these so that the same prime numbers appear in both lists, using a-prime-to-the-power-of-0 if necessary.
    For instance, there are no 7's in the primes product for 720, so, since 70=1, we introduce an extra factor of x70. In the same way we can introduce x50 into the product for 168.
    Now both lists contains exactly the same primes: 2, 3, 5 and 7: 720 = 24 x 32 x 51 x 70 and 168 = 23 x 31 x 50 x 71
    Since there must be 2's in the gcd of 720 and 168, how many twos do we need for the greatest factor which divides both?
    What about the number of 3's? and 5's? and 7's?
    So the greatest common divisor has the form:
    2a x 3b x 5c x 7d
    What numbers stand in place of the letters?
    What is the general principle for computing the gcd, given two numbers expressed as powers of the same primes?
    What is the greatest common divisor of 24 and 18 (call it G)? What is the gcd of 24, 18 and 30? How is it related to the gcd of G and 30? [This is Proposition 3 of Euclid's The Elements, Book 7.]

Continued Fractions for decimal fractions?

If we look at irrational numbers (numbers which cannot be written exactly as a fraction) we will find no pattern in their decimal fractions. For instance, here is √2 to 200 decimal places:
41421 35623 73095 04880 16887 24209 69807 85696 71875 37694
80731 76679 73799 07324 78462 10703 88503 87534 32764 15727
35013 84623 09122 97024 92483 60558 50737 21264 41214 97099
93583 14132 22665 92750 55927 55799 95050 11527 82060 57147
...
Indeed, it is not too difficult to show that, if any decimal fraction ever repeats, then it must be a proper fraction, that is a rational number - see the references section at the foot of this page.
The converse is also true, i.e. that every rational number has a decimal fraction that either stops or eventually repeats the same cycle of digits over and over again for ever.

There is a pleasant surprise here since every square-root has a repeating pattern in its continued fraction.

But what about continued fractions for numbers which we only have in the form of a decimal? There are two methods of converting them into continued fractions: using the decimal itself or finding a proper fraction for the decimal number. Both methods are explained here.

Converting a decimal directly into a CF

If we look again at the jigsaw-squares method at the top of this page or further down at Euclid's algorithm then both use the whole number of times one number goes into another. Really all we are using in that case is the whole number part of the value. With decimal numbers, we already have that part - it is just the part before the decimal point!

For example, 2·875 has a whole part of 2 so write that down to begin its continued fraction:
2·875 = [2; ...]
As in the jigsaw method, now remove that part and take the reciprocal of the remainder which, for us, means taking the reciprocal of the part after the decimal point:
1/ ·875 = 1·14285714....
Again, write down the whole part (1) as the next component of the continued fraction and invert the part after the decimal point:
1/ ·14285714.. = 7.00000014...
This time the whole number part is 7 and the remainder is very close to 0 Now we have a choice: we could stop here and end the continued fraction:
2·875 = [2;1,7]
or we could continue with the very small part. Checking, shows that when we expand [2;1,7] we have 23/8 which is 2.875 exactly.

So the only problem with this method is deciding when to stop. Each time we take the reciprocal of the fractional part we usually get another long list of decimal places. Eventually these are meaningless because the original decimal number was given only to a finite number of decimal places. For this reason, the next method is better as it stops automatically when we get to the limit of the accuracy of the starting decimal. [We meet this problem later in the section Using the decimal value from your calculator for the Cf of a square-root.]

/ Things to do /

  1. Convert 64/29 into a continued fraction using the Jigsaw method or Euclid's algorithm.
  2. Convert 64/29 into a decimal fraction and approximate it by rounding it off to 3 dps.
    Now convert that decimal fraction to a CF using the method of the last section.
    Was it easy to see when to stop if the real value of our decimal was 64/29?

Converting a Decimal to a Fraction

If we have a number in the form of decimal fraction, such as 2·875 then we can always represent it as a proper fraction by using a denominator which is a big enough power of 10: For instance, Since all the example decimals are all now fractions, we can now use Euclid's algorithm from earlier on this page to express them as continued fractions.
There is no need to reduce the proper fractions to their lowest forms - Euclid's algorithm will still give the correct CF.

This time, when we convert 2·875 to an equivalent fraction we get 2875/1000 and Euclid's algorithm gives:

2875 = 2 ×1000 + 875
1000 = 1 × 875 + 125
875 = 7 × 125
so 2875/1000 = [2; 1, 7] exactly.
If 2·875 was an exact value then its CF is exactly [2; 1, 7]; if it was only an approximation then [2; 1, 7] is as accurate as we can get as a CF. So, provided we have a finite number of decimal places, we can get a CF equivalent to that decimal value. But suppose we know a number exactly as a decimal and that decimal value does not end? An example is 0.3333.... which we might spot is exactly 1/3.
The next section shows how we can handle one specific (and common) variety of repeating non-terminating decimal fraction - those of square-roots.

Continued fractions for square-roots

But what about a continued fraction for √2? Since it's decimal fraction never ends, and it is not possible to write it as a fraction, how can we convert it to a continued fraction?
Algebra can come to our assistance here.
To express √2 as a continued fraction, we know its value is bigger than 1 so we will write it as:
       √2 = 1 + 1/x
[We use 1/x so that x will be bigger than one.] All we have to do now is find x!
So let's rearrange this equation to find the value of x:
       (√2 – 1) = 1/x
  so  x = 1/(√2 – 1)
There is a useful technique for simplifying fractions with square-roots in the denominator, to get a whole number in the denominator: Here we will multiply the top and bottom of the fraction by (√2 + 1):
x =
1
--
√2 – 1
=
1 (√2 + 1)
--
(√2 – 1) (√2 + 1)
=
√2 + 1
--
2 – 1
= √2 + 1
x = √2 + 1 = 1 + 1/x + 1 = 2 + 1/x
By substituting 2 + 1/x wherever we see x, we now have our continued fraction for x:
x= 2 + 1  = 2 +   1    = 2 +       1        = ...
       x        2 + 1          2 +   1  
                    x              2 + 1
                                       x
So now we can express √2 as a continued fraction, which goes on for ever but which has a simple pattern for its components:
√2 = 1 + 1 = 1 + 1
----
x2 + 1
--
2 + 1
--
2 + 1
--
2 + ...
In terms of our list notation, we would write:
 √2 = [1; 2, 2, 2, 2, 2, 2, ...]

All square-root continued fractions eventually repeat

It turns out that every square root has a continued fractions that ends up as a repeating pattern. Below is a table of some square root continued fractions. What patterns can you spot in the table? To find out more, look at the books in the References section at the bottom of this page.
√2 = [1; 2, 2, 2, 2, 2, 2, 2, 2, ... ] = [1] then repeat [2]
√3 = [1; 1, 2, 1, 2, 1, 2, 1, 2, ... ] = [1] then repeat [1,2]
√4 = [2]
√5 = [2; 4, 4, 4, 4, 4, 4, 4, 4, ... ] = [2] then repeat [4]
√6 = [2; 2, 4, 2, 4, 2, 4, 2, 4, ... ] = [2] then repeat [2,4]
√7 = [2; 1, 1, 1, 4, 1, 1, 1, 4, ... ] = [2] then repeat [1,1,1,4]
√8 = [2; 1, 4, 1, 4, 1, 4, 1, 4, ... ] = [2] then repeat [1,4]
√9 = [3]
√10= [3; 6, 6, 6, 6, 6, 6, 6, 6, ... ] = [3] then repeat [6]
√11= [3; 3, 6, 3, 6, 3, 6, 3, 6, ... ] = [3] then repeat [3,6]
√12= [3; 2, 6, 2, 6, 2, 6, 2, 6, ... ] = [3] then repeat [2,6]

Here is a table of the square-roots of all numbers from 2 to 100:

√n[ a; Period ]
2 1; 2
3 1; 1,2
4 2;
5 2; 4
6 2; 2,4
7 2; 1,1,1,4
8 2; 1,4
9 3;
10 3; 6
11 3; 3,6
12 3; 2,6
13 3; 1,1,1,1,6
14 3; 1,2,1,6
15 3; 1,6
16 4;
17 4; 8
18 4; 4,8
19 4; 2,1,3,1,2,8
20 4; 2,8
21 4; 1,1,2,1,1,8
22 4; 1,2,4,2,1,8
23 4; 1,3,1,8
24 4; 1,8
25 5;
26 5; 10
27 5; 5,10
28 5; 3,2,3,10
29 5; 2,1,1,2,10
30 5; 2,10
31 5; 1,1,3,5,3,1,1,10
32 5; 1,1,1,10
33 5; 1,2,1,10
34 5; 1,4,1,10
35 5; 1,10
36 6;
37 6; 12
38 6; 6,12
39 6; 4,12
40 6; 3,12
41 6; 2,2,12
42 6; 2,12
43 6; 1,1,3,1,5,1,3,1,1,12
44 6; 1,1,1,2,1,1,1,12
45 6; 1,2,2,2,1,12
46 6; 1,3,1,1,2,6,2,1,1,3,1,12
47 6; 1,5,1,12
48 6; 1,12
49 7;
50 7; 14
√n [ a; Period ]
51 7; 7,14
52 7; 4,1,2,1,4,14
53 7; 3,1,1,3,14
54 7; 2,1,6,1,2,14
55 7; 2,2,2,14
56 7; 2,14
57 7; 1,1,4,1,1,14
58 7; 1,1,1,1,1,1,14
59 7; 1,2,7,2,1,14
60 7; 1,2,1,14
61 7; 1,4,3,1,2,2,1,3,4,1,14
62 7; 1,6,1,14
63 7; 1,14
64 8;
65 8; 16
66 8; 8,16
67 8; 5,2,1,1,7,1,1,2,5,16
68 8; 4,16
69 8; 3,3,1,4,1,3,3,16
70 8; 2,1,2,1,2,16
71 8; 2,2,1,7,1,2,2,16
72 8; 2,16
73 8; 1,1,5,5,1,1,16
74 8; 1,1,1,1,16
75 8; 1,1,1,16
76 8; 1,2,1,1,5,4,5,1,1,2,1,16
77 8; 1,3,2,3,1,16
78 8; 1,4,1,16
79 8; 1,7,1,16
80 8; 1,16
81 9;
82 9; 18
83 9; 9,18
84 9; 6,18
85 9; 4,1,1,4,18
86 9; 3,1,1,1,8,1,1,1,3,18
87 9; 3,18
88 9; 2,1,1,1,2,18
89 9; 2,3,3,2,18
90 9; 2,18
91 9; 1,1,5,1,5,1,1,18
92 9; 1,1,2,4,2,1,1,18
93 9; 1,1,1,4,6,4,1,1,1,18
94 9; 1,2,3,1,1,5,1,8,1,5,1,1,3,2,1,18
95 9; 1,2,1,18
96 9; 1,3,1,18
97 9; 1,5,1,1,1,1,1,1,5,1,18
98 9; 1,8,1,18
99 9; 1,18

The lengths of the periods in the above table form a series:
0,1,2,0,1,2,4,2,0,1,2,2,5,4,2,0,1,2,6,2,6,6,4,2,0...
where the 0s appear at positions which are perfect squares (so their square-roots are integers).
This is Sloane's A003285.

Is there a pattern behind this table? Justin Miller (University of Arizona) has a list of several patterns within the table. Can you extend his table? Can you find a single overall unifying formula?

/ Things to do /

You might find the Calculator Continued Fraction Calculator useful in this section.
  1. What patterns do you notice in the table of square-roots above?
    Four easy ones first:
    1. What is special about the first number of the continued fraction?
    2. What is special about the last number in the periodic part?
    3. Can you spot the connection between these two numbers in each row of the table?
    4. What about the other numbers in the periodic part? Is there a pattern to them that they ALL have?
  2. Now let's look for patterns in the table as a whole.
    How about the continued fractions for the square-roots of
    2, 5, 10, 17 and 26.
    1. What pattern do they all have?
    2. What is the next number in this sequence of square-roots that has the same pattern?
    3. Can you prove your results?
      The proof is quite easy!
      Follow the steps above where we showed [ 1; 2,2,2,2,2... ] was √2, but replace the 2's by 2n's say since the general pattern here is [ n; 2n,2n,2n,2n,... ].
  3. How about this pattern:
    look at the square-roots of 3, 6, 11, 18 and 27.
    1. What is the pattern this time? Express the general pattern as a mathematical expression.
    2. What is the next square-root with this pattern?
    3. Again try to verify your results are always true.
  4. ..or spot the pattern in these sequences of square-roots:
    1. 3, 8, 15, 24 and 35
    2. 7, 14, 23, 34 and 47
    3. 12, 39 and 84
    4. We have now covered the patterns of all the square-roots up to 13. There is another pattern that applies to some of these smaller number's too - what pattern connects the CF lists for the square-roots of :
      6, 12, 20 and 30?
    5. So what about 13? What pattern starts with the square-roots of 13, 29 and 53?
    6. A pattern which includes √19 is difficult to spot (well I haven't been able to find one yet - can you?) but what other patterns can you find that cover most of the rest of the numbers up to 100?
      What square-roots are left over?
Was the table above produced by a computer program?
Yes! The algorithm is explained in R. B. J. T. Allenby and Ed. Redfern's excellent book Introduction to Number Theory with Computing, published by E Arnold in 1989 but now out of print. It is well worth browsing through if you can find a copy in your library. Why not produce your own program and then you can extend the table further, using the values above to check your program (and mine!) The next section looks at how you can find these for yourself, with or without a computer.

Methods of finding continued fractions for square roots

Using the decimal value from your calculator

You can produce the first few numbers of a continued fraction for a square root as follows: This will produce enough of the continued fraction for you to spot the pattern for many square-roots. But since we started with an approximation to the square-root (your calculator or computer will only produce perhaps up to 15 decimal places at most), this method will be only approximate. The more decimal places of the square root that you use in your initial integer fraction, the longer will be the list of correct numbers from Euclid's algorithm for the continued fraction, but eventually, the continued fraction's numbers will differ from the true square-root. To illustrate, the approximation for √2 above as 1414/1000 continues as
 
      80 = 6 x    12 +    8
      12 = 1 x     8 +    4
       8 = 2 x     4
So 1414/1000 = [1; 2, 2, 2, 6, 1, 2] (which is correct and exact) but the true continued fraction for √2 is [1; 2, 2, 2, 2, 2, 2, 2, 2, ...].

The problem with this method is

If we don't know the CF for the square-root, how do we know when this method stops giving the CF for the true square-root?
Is there a better method that produces the exact and complete continued fraction for a square root?
There is, using algebra, and it relies on the fact that we finding square roots.

Using algebra

The CF in the earlier example for √2 stopped quickly so that the period was just the single number: 2.
So let's look at another example as we explain and illustrate the general method.

Square-roots in denominators

The important part uses a special algebraic method that applies only to square roots. It changes a fraction with a square-root in the denominator to a fraction with a square root on top.

If we have a fraction with (√A + B) in the denominator then the secret is to multiply top and bottom by (√A – B), that is, keep the numbers the same but just change the sign between them. If we had (√A – B) in the denominator then we would use (√A + B) instead. If you are good at algebra you will recognise (x+y) and (x–y) as the two factors of x2 – y2 or you can just multiply out the brackets to check this.
For our denominator, we now have (√A + B)(√A – B) which expands to (A – B2) and, since A and B are integers, this is a whole number!

Here is a worked example:

3
--
√27 + 4
=
3(√27 – 4)
--
(√27 + 4)(√27 – 4)
=
3(√27 – 4)
--
27 – 16
=
3(√27 – 4)
--
11
So we have transformed a fraction with a square-root term in the denominator to one with a square root term in the numerator.

The algebraic algorithm

Here is a method which will find the exact CF for any (whole-number) square-root. In the following we assume n is not an exact square number because in that case finding √n is very simple!
The steps in the algorithm for √n are:
Step 1:
Find the nearest square number less than n, let's call it m2, so that m2<n and n<(m+1)2.
For example, if n=14 and we are trying to find the CF for √14, then 9 is the nearest square below 14, so m is 3 and n lies between m2=9 and (m+1)2=16.
The whole number part starts off your list of numbers for the continued fraction.

The easy way to find the largest square number below n is to use your calculator:
Find √n and just ignore the part after the decimal point! The number showing is m.

Now, √n = m + 1/x

where n and m are whole numbers.

Step 2:
Rearrange the equation of Step 1 into the form of x equals an expression involving the square root which will appear as the denominator of a fraction: x = 1 / (√n - m)
Step 3:
We now have a fraction with a square-root in the denominator. Use the method above to convert it into a fraction with whole numbers in the denominator.
In this case, multiply top and bottom by (√ n + m) and simplify.
either Step 4A:
stop if this expression is the original square root plus an integer.
or Step 4B:
start again from Step 1 but using the expression at the end of Step 3
The square root as a continued fraction is the initial whole number from Step 1 and the period is all the numbers but adding the final integer of Step 4 to the initial integer to form the period.

We will take √14 and see how we find the continued fraction [3; 1,2,1,6, 1,2,1,6, 1,2,1,6, ...] using the algorithm above:

In order to distinguish the x's at each stage repeating the steps of the method, we will use subscripts to distinguish the different x's as x changes: x1, then x2, x3 and so on:

Finding...Step 1Step 2Step 3
√14:
√14 =3 +
1
--
x1
x1 =
1
--
√14 – 3
=
1(√14 + 3)
--
(√14 – 3)(√14 + 3)
=
√14 + 3
--
14 – 9
=
√14 + 3
--
5
x1 =
√14 + 3
--
5
=1 +
1
--
x2
x2 =
5
--
√14 – 2
=
5(√14 + 2)
--
(√14 – 2)(√14 + 2)
=
5 (√14 + 2)
--
14 – 4
=
√14 + 2
--
2
x2 =
√14 + 2
--
2
=2 +
1
--
x3
x3 =
2
--
√14 – 2
=
2(√14 + 2)
--
(√14 – 2)(√14 + 2)
=
2 (√14 + 2)
--
14 – 4
=
√14 + 2
--
5
x3 =
√14 + 2
--
5
=1 +
1
--
x4
x4 =
5
--
√14 – 3
=
5(√14 + 3)
--
(√14 – 3)(√14 + 3)
=
5 (√14 + 3)
--
14 – 9
=√14 + 3
We stop the algorithm now since √14 plus an integer has appeared. Substituting in for all the values of the x's we have:
√14 =3 +
1
--
x1
=3 +
1
--
1 +
1
--
x2
=3 +
1
--
1 +
1
--
2 +
1
--
x3
=3 +
1
--
1 +
1
--
2 +
1
--
1 +
1
--
x4
=3 +
1
--
1 +
1
--
2 +
1
--
1 +
1
--
√14 +3
= [3; 1, 2, 1,√14+3]
Now we substitute the first expression for √14 into the last one, so that the final √14 +3 becomes 3+3+1/... and √14 is [3; 1,2,1, 6, 1,2,1,√14+3].
Substituting again gives the cyclic repetition of the pattern and we have our final continued fraction for √14 as [3; 1,2,1,6, 1,2,1, 6, 1,2,1,6, ...]

This method is completely general and applies to all square roots.


Solving Quadratics with Continued Fractions

Quadratic Equations and Continued Fractions

Many problems, when modelled in mathematics, involve a quadratic equation - i.e. an equation of the form
A x2 + B x + C = 0
where the A, B and C are numbers and we want to find values for x to make the equation true.

For instance, take x2 – 5 x – 1 = 0.
Can you think of an x value for which this equation holds? We can rewrite the equation in a different way as:

x2 = 5 x + 1
and now we can divide both sides by x to get:
x = 5 + 1/x
This means that wherever we have "x", we can replace it by "5 + 1/x". So we can replace the x in "5 + 1/x" for example to get:
x = 5 + 1/x = 5 + 1/(5 + 1/x)
We can clearly replace the x again and again and get an infinite (periodic) continued fraction:
x = 5 + 1/x = 5 + 1/(5 + 1/x) = ... = [5; 5, 5, 5, ...]

But what about the other solution to the quadratic?

Anand Ramanathan asks an interesting question about the meaning of a continued fraction:

Suppose that x is the continued fraction [2;2,2,2,..] that is x = 2 + 1/(2 + 1/...). We can write this as x = 2 + 1/x and, by multiplying both sides by x we have the quadratic equation

x2 = 2x + 1 or x2 – 2x – 1 = 0
which we can solve to find two solutions for x namely:
x = 1 + √2 or x = 1 – √2
The first is +2·414... and the second is –0·414... and Anand's question is
But what about the other value?
Since both values satisfy the quadratic equation then both satisfy x = 2 + 2/x so how do we choose?
Certainly, both values satisfy x = 2+1/x and so both are legitimate candidates for the value of [2;2,2,2,2...] as is shown here:
x = 1+√2 1–√2
2+1/x=
2 + 1
--
1+√2
2 + 1
--
1–√2
add fractions
2(1+√2) + 1
--
1+√2
2(1–√2) + 1
--
1–√2
Simplify
3+2√2
--
1+√2
3–2√2
--
1–√2
multiply by 1±√2
top and bottom
(3+2√2)(1-√2)
--
(1+√2)(1–√2)
(3–2√2)(1+√2)
--
(1–√2)(1+√2)
expand brackets
3–4 – √2
--
1 – 2
3–4 + √2
--
1 – 2
Simplify
–1 – √2
--
–1
–1 + √2
--
–1
= x1+√2 1–√2
This means that [2;2,2,2,2] is ambiguous - it can mean either of two values.
As always in mathematics, we therefore make an arbitrary choice - a convention - that the continued fraction [a;b,c,d,...] always represents a positive value and we prefix a continued fraction with a minus sign to represent a negative value.
With this convention we can still represent the other value: 1 – √2 = –0·414... as follows:
since 1 – √2 is negative, then √2 – 1 is positive and it has a continued fraction representation as [0;2,2,2,2...].
Thus 1–√2 is –[0;2,2,2,2,...].

/ Things to do /

  1. Repeat the above for [A;A,A,A,...] by writing it as x=A + 1/x and finding a quadratic in x to solve (using the Formula).
    Show that one root is positive (and, if A>1 then that root is also > 1) and the other root is negative but less than 1.

The Golden section and a quadratic equation

We have seen several times in the other Fibonacci Web pages at this site (see, for example, Formulae for Phi) that Phi is a solution to the quadratic equation x2 –x – 1 = 0.
Rearranging this equation gives x2 = x + 1
and so dividing both sides by x (since x is not zero) we have x = 1 + 1/x
which leads directly a continued fraction for the (positive) root, the value of x which we called Phi:
x = 1 + 1/x = 1 + 1/( 1 + 1/x) = ... = [ 1; 1, 1, ... ]
Of all continued fractions, this is the simplest.
The mathematician Lagrange (1736-1813) proved
the Continued Fraction Theorem
a quadratic equation with integer coefficients has a periodic continued fraction for each of its real roots

/ Things to do /

You might find the Calculator Continued Fraction Calculator useful in this section.
  1. Find the 2 roots and a continued fraction for a root of these quadratic equations:
    1. x2 + x = 1
    2. x2 – 2x = 1
  2. What happens if we try to find square-roots using this method, for example, the square root of 2 is a solution to x2 – 2 = 0. Why do we not get a continued fraction this time?
    How does the answer to the second part of the previous question give a continued fraction for √2?

The Silver Means

Can we find some more numbers with a pattern in their continued fractions that is like that of the golden mean, Phi? Since Phi as a continued fraction is:
Phi = [1; 1,1,1,1,1,... ]
then we can look at the numbers whose continued fractions are
[2; 2,2,2,2,2, ...]
[3; 3,3,3,3,3, ...]
[4; 4,4,4,4,4, ...]
[5; 5,5,5,5,5, ...]
...
These also have some interesting properties and are called the silver means since the most marvellous properties of all are for that rather special number we call the golden mean! Let's use T(n) for the n-th number in the list above, so that T(1) is just Phi and T(n) = [n; n,n,n,n,n, ...]
so T(n) = n+1/(n+1/(n+..)) or T(n) = n+1/T(n) since the value inside the brackets is just T(n)! So we have a definition of the Silver Means:
A silver mean is a number T(n) which has the property that it is n more than its reciprocal, i.e. T(n) = n+1/T(n).

Numerical values of the Silver Means

Using the last property can we find values for the silver means? For instance,
T(1) = 1·6180339 = 1 + 1/1·6180339 = 1 + 0·6180339
T(2) = 2·4142135 = 2 + 1/2·4142135 = 2 + 0·4142135
and so on.
Here is one simple way to find the values and all you need is your calculator!

/ Things to do /

You might find the Calculator Continued Fraction Calculator useful in this section.
  1. The values of T(n) are easy to find on your calculator using the same method that we used to discover Phi from its property that it is "1 more than its reciprocal".
    The method is, for example, to find T(2) on your calculator:
    1. Enter any positive number you like.
    2. Press the reciprocal button (to find 1 divided by the displayed number).
    3. Add 2 (or, to find T(n), add n) and write down the result.
    4. Repeat from step 2 as often as you like.
    After just a few key presses, the numbers you write down will be identical and this is the value of T(n) as accurately as your calculator will allow.
    For T(2), you will soon reach 2·414213562.
  2. For the value of T(2) here, subtract 1 and square the result. What is the answer?
    What exact value does this suggest for T(2)?
    (You will see the answer in next section!)
  3. Use the method above to find numerical values for T(3) and T(4).

Exact values of the Silver Means

The Things To Do suggested to us an exact value for T(2). We could guess values for T(3) and T(4), but they are not easy to spot! So it's mathematics to the rescue!

By multiplying both side of the equation T(n)=n+1/T(n) by T(n), we get: T(n)2 = nT(n)+1.

For example, the number [5; 5,5,5,5,5, ...] we have already met above and we found that it had the property that x2=5x+1.
We can solve this quadratic equation or you can just check that there are two values of x with this property:

 
x = (5 + √29)/2 and 
x = (5 – √29)/2
Since √29 is bigger than 5, then the second is a negative value, but since all our continued fractions are positive (they do not contain a negative number!) then the first is the value of our continued fraction:
[5; 5,5,5,5,5, ...] = (5 + √29)/2

If we review what we did above, then you will notice that we found

√2=[1; 2,2,2,2,2, ...]
so we can deduce that
[2; 2,2,2,2,2, ...] = 1 + √2

Following the same reasoning and including the golden mean also, gives the following pattern:

[1; 1,1,1,1, ...] = (1 + √5  )/2           =  1.61803398874989...
[2; 2,2,2,2, ...] = (2 + √8  )/2 = 1 + √2  =  2.41421356237309...
[3; 3,3,3,3, ...] = (3 + √13 )/2           =  3.30277563773199...
[4; 4,4,4,4, ...] = (4 + √20 )/2 = 2 + √5  =  4.23606797749978...
[5; 5,5,5,5, ...] = (5 + √29 )/2           =  5.19258240356725...
[6; 6,6,6,6, ...] = (6 + √40 )/2 = 3 + √10 =  6.16227766016837...
[7; 7,7,7,7, ...] = (7 + √53 )/2           =  7.14005494464025...
[8; 8,8,8,8, ...] = (8 + √68 )/2 = 4 + √17 =  8.12310562561766...
[9; 9,9,9,9, ...] = (9 + √85 )/2           =  9.10977222864644...
[10;10,10,10,...] = (10+ √104)/2 = 5 + √26 = 10.09901951359278...
...
The following Things To Do explores this series and produces some more amazing connections between Phi and the Fibonacci numbers!

/ Things to do /

You might find the Calculator Continued Fraction Calculator useful in this section.
  1. What is the pattern under the square root signs in the table above: that is, what is the nth term in the series 5,8,13,29,29,40,... ?
    1. What is the next line in the table above for T(11)?
    2. Express the n-th line, that is T(n) as a formula involving square-roots.
  2. T(1) is Phi = ( 1 + √5 )/2.
    1. T(4) = 2 + √5 and also involves √5. Using the Table of Properties of Phi express T(4) as a power of Phi.
    2. T(11) also involves √5. What is T(11)?
      Is it a power of Phi too?
    3. What is the pattern here? Which powers of Phi are also silver means and which silver means are they?
      [Hint: the answer involves the Lucas numbers.]
  3. What powers of Phi are missing in the answer to the previous question? What are their continued fractions?
  4. Express all the powers of Phi in the form (X+Y√5)/2. Find a formula for Phin in terms of the Lucas and Fibonacci numbers.

More Silver Mean Properties New!

The Table of Properties of Phi shows that all powers of Phi=T(1) are just a whole number plus a multiple of Phi.
Their continued fractions are also shown, with the periodic parts shown like this.
Phi1=0 + 1 Phi=(√5 + 1)/2 = [1]
Phi2=1 + 1 Phi=(√5 + 3)/2 = [2,1]
Phi3=1 + 2 Phi=(2√5 + 4)/2 = [4]
Phi4=2 + 3 Phi=(3√5 + 7)/2 = [6,1,5]
Phi5=3 + 5 Phi=(5√5 + 11)/2 = [11]
Phi6=5 + 8 Phi=(8√5 + 18)/2 = [17,1,16]
There are similar patterns for T(2) = 1 + √2: and for T(3) = (3 + √13 )/2:
T(2)1= 0 + 1 T(2)= 1 + √2 = [2] | T(3)1= 0 + 1 T(3)= (3 + √13)/2 = [3]
T(2)2= 1 + 2 T(2)= 3 + 2√2 = [5,1,4] T(3)2= 1 + 3 T(3)= (11 + 3 √13)/2 = [10,1,9]
T(2)3= 2 + 5 T(2)= 7 + 5√2= [14] T(3)3= 3 + 10 T(3)= (36 + 10 √13)/2 == [36]
T(2)4= 5 + 12 T(2)= 17 + 12√2= [33,1,32] T(3)4= 10 + 33 T(3)= (119 + 33 √13)/2 == [118,1,117]
T(2)5= 12 + 29 T(2)= 41 + 29√2= [82] T(3)5= 33 + 109 T(3)= (393 + 109 √13)/2 == [393]

/ Things to do /

You might find the Calculator Continued Fraction Calculator useful in this section.
  1. What is the pattern in the series 1,2,5,12,29,...?
    How is each number related the the previous two in the series?
    Can you find a formula for the nth term using n? [Hint: Is it similar to the Fibonacci rule?]
  2. Make a new Table like that for T(2) above but this time for T(3) = (3 + √13)/2 and its powers.
    Answer the previous question for the new series 1, 3, 10, 33, 109, ...
  3. T(1) = Phi has the property that T(1) is 1+ 1/T(1).
    Is there a similar property for T(2)?
    [Hint: calculate T(2) and 1/T(2): what do you notice about their decimal parts?]
    What is the relationship between T(3) and 1/T(3)?
    What is the general pattern here for T(n)?
  4. Above we found T(4) is also Phi3 , that is T(1)3 = T(4).
    T(2)3 is also a silver mean too -- which one? What about T(3)3?
    Find the general pattern.
  5. The same as the previous question but this time find a silver mean equal to T(1)5 and one for T(2)5 and so on for the other 5-th powers of silver means.
    Hard: What is the general pattern?
  6. Hard: There is a pattern here for all the odd powers of the silver means.
    What is it?
    Spoiler: Here is part of the answer!

Fibonacci-related Continued Fractions

Here is a table of fractions corresponding to the continued fractions [1,a] for a few values of a:
a12345...
[1,a]23/24/35/46/5...
Using the definition of continued fractions in list form, it is easy to see that
[1,a] = 1 + 1/a = (a+1)/a      (equation 1)

Let's extend the pattern to [1,1,a]:

a12345...
[1,1,a]3/25/37/49/511/6...
Algebra again helps here:
[1,1,a] = 1 + 1/(1 + 1/a) = 1 + 1/(a+1)/a = 1 + a/(a+1) =(2a+1)/a+1      (equation 2)
In fact, the fraction here has: The same thing happens with CFs of the form [1,1,1,a]:
a12345...
[1,1,1,a]5/38/511/714/917/11...
Algebra again helps here:
[1,1,1,a] = 1 + 1/(1 + 1/(1 + 1/a)) = 1 + 1/ (2a+1)/(a+1) = 1 + (a+1)/ (2a+1) = (3a+2)/(2a+1)       (equation 3)
Again we see that these fractions have: We can continue this and arrive at the general pattern:
[1, 1, 1, ..., 1, a] =
F(m+1) a + F(m)
F(m) a + F(m–1)
    for m 1s in the list
Article: The formula above is Lemma 1 of Fifth Roots of Fibonacci Fractions C P French, Fib Quarterly 44 (2006) pages 209-215

The paper above by C P French goes on to find and prove some even more interesting formulae regarding roots of Fibonacci ratios:

    n+2 1s
5sqrt 
F(n+5)
F(n)
 =  [ 1, 1, .... 1, F(2n + 5) + 2, ...] : if n is ODD
[ 1, 1, .... 1, F(2n + 5) – 4, ...] : if n is EVEN
    n 1s
The author reports that there are more patterns if we replace both 5s on the left hand side above by either 13 or else 34 or 89 or 233 ... that is by alternate Fibonacci numbers!

Best Rational Approximations to Real Numbers

A Calculator to search for best rational approximations

We can just search all fractions with an increasingly larger denominator and find which are closer to the value we are approximating than any previous fraction (with a smaller denominator).

This Calculator will take any positive value and look at all the fractions, with a denominator up to a specified maximum, and find the best fractions for it - those which are closer than any previous ones with a smaller denominator. It also computes the error of the approximation and shows the continued fraction for each approximation. Continued fractions are very useful for finding fractions that are the best approximations to any value.

C A L C U L A T O R
best fractions approximating with denominator up to
R E S U L T S

Best Fractions for Pi

The following is a list of fractions for Pi = 3.141592653589793... each of which is better than all of those before it; and for each, there is no better fraction using smaller denominators:
3,  13,  16,   19,  22,   179,   201,   223,   245,   267,   289,   311,   333,   355,   52163,   52518
1456757