Home

> urticator.net
  Search

  About This Site
> Domains
  Glue
  Stories

  Computers
  Driving
  Games
  Humor
  Law
> Math
  Numbers
  Science

> Continued Fractions
  Game Theory (Section)
  Group Theory
  Probability
  Miscellaneous

  Approximation Quality
  Two Examples
  The Markov Equation
  Equivalence
  The Markov Constant
  The Pattern
  Group Elements and Matrices
  The Random Thoughts
  Symmetries
  Chains and Denominators
  The Discriminant
  Properties of Rotations
  Reflection Symmetry
  A Nice Correspondence

Continued Fractions

The subject of continued fractions is a fairly obscure one, something you might never hear about outside of number theory. I first heard about continued fractions in high school, but only by chance, and now, even though I know about them, I rarely use them. So, you might say the subject is justifiably obscure. However … I happened to use them a couple of times recently; and when I was telling a friend of mine what I'd done, I realized that it's easy to explain how to use them as a tool without getting into any of the theory. So, here, let me tell you how to use continued fractions.

First I ought to show you what a continued fraction looks like.

The coefficients ai are positive integers, except for a0, which can be zero (or maybe negative, but that's not a case I care about). Once you get tired of writing the fractions out like that, you can use the following shorthand, which is standard.

[a0, a1, a2, a3, … ]

After that, all you need to know is two little algorithms. One takes a number and expands it as a continued fraction; the other takes a continued fraction expansion and produces a sequence of good rational approximations to the original number.

To understand the first algorithm, look back at the picture above. The continued fraction can be thought of as having two parts: an integer part (the coefficient a0) and a fractional part (everything else). So, if we want to write some number u as a continued fraction, a0 must equal the integer part of u, and the rest must equal the fractional part of u. But now, if we take the reciprocals of the leftovers, we're right back where we started, with a number and a continued fraction expansion … only now the expansion starts with a1 instead of a0. So, we can read off a1 as the integer part of that number, and so on.

In short, to find the continued fraction expansion of a number u, take the integer part as a coefficient, take the reciprocal of what's left, and repeat. For example, here are the first few iterations for π.

airest
3.1415930.14159
7.0625170.06251
15.9966150.99659
1.0034210.00342
292.6352920.63459

(The values above are correctly-rounded forms of the true values, but if you want to do the calculation yourself, you'll need to keep more digits than I've shown.)

If the number u is rational, the expansion will terminate. For example,

airest
1309/238701309/2387
2387/130911078/1309
1309/10781231/1078
1078/2314154/231
231/154177/154
154/77   20.

So, 1309/2387 = [0,1,1,4,1,2]. And, if you tidy up a little by removing the denominators in the last column, you can see that the continued fraction coefficients are exactly the useless quotients from the Euclidean algorithm!

And, if the number u is algebraic, you can do the calculation symbolically. Here's how it works for the square root of 3 (which I'll call R for short); all you need to know is that R is approximately 1.7, and that you can take reciprocals with just a little algebra, like so.

1 / (R−1) = (R+1) / (R+1)(R−1) = (R+1) / (R2−1) = (R+1) / 2

Here are the first few iterations.

airest
R1R−1
(R+1)/21(R−1)/2
R+12R−1

But then, we've already seen the remainder R−1, so at that point the expansion must repeat! In other words, the expansion of root 3 is [1,1,2,1,2,1,2, … ].

I said I wasn't going to get into any of the theory, but there's one thing that's too interesting not to mention: the expansion repeats if and only if the original number was the root of a quadratic equation … technically, an irreducible quadratic with rational coefficients.

So much for the first algorithm; now, what about the second?

I don't know any easy way to understand the second algorithm, so I'm just going to tell you how to execute it. First, make room for three rows of numbers. In the first row, skip two spaces, then write down the coefficients of the continued fraction you're interested in. In the other two rows, write down the fixed numbers shown below.

37151292
01
10

Then, working left to right, fill in the rest of the other two rows using the rule Z = aX + Y, where a is the corresponding expansion coefficient and X and Y are the previous numbers in the same row.

a
YXZ

Here's how the one above turns out. The number 106, for example, is 15×7 + 1.

37151292
01322333355103993
101710611333102

Now you can read off the sequence of good approximations … in this case, 3/1, 22/7, 333/106, 355/113, and so on. The numbers produced in this way are called convergents. You can also think of convergents as truncated expansions; for example, 333/106 = [3,7,15].

The phrase “good approximation” sounds pretty vague, but here it means something specific. A rational number is a good approximation to a number u if no rational number with the same or smaller denominator is closer to u. All convergents (except sometimes the first) are good approximations in that sense.

However, not all good approximations are convergents. I didn't know much about any other good approximations until recently, when I stumbled across item 101A in HAKMEM. That item points out that one can obtain other good approximations by varying the last coefficient in a truncated expansion. My calculations suggest that if the last coefficient is n, you get good approximations between n/2 and n … although one or both ends may increase by 1, depending on circumstances. I can't guarantee that those values work, or that all good approximations are of that form, but I can show that other values don't work.

Just as an example, the next good approximation to π after 355/113 is [3,7,15,1,146] = 52163/16604.

Finally, I ought to admit I'm using some nonstandard terminology here. A rational number p/q is a good approximation to u if it's the best approximation with denominator not exceeding q. For that reason, people like to say “best” instead of “good”; but then when q varies they're forced to say stupid things like “a best approximation”. Don't do that! (See also Everything Is Best in Favorite Koans.)

 

  See Also

  Approximation Quality
  Discriminant, The
  Nice Correspondence, A
  Pattern, The
  Printer Theory
  Recurrence Relation, The
  Twelve-Note Scale, The

@ November (2005)