![$ [a_0,\ldots,a_m]$](img1591.png) be a continued fraction and for
 be a continued fraction and for
 let
 let 
![$\displaystyle c_n = [a_0, \ldots, a_n] = \frac{p_n}{q_n}
$](img1625.png) 
denote the
 th convergent.  Recall that by definition of continued
fraction,
th convergent.  Recall that by definition of continued
fraction,  for
 for  , which gives the partial convergents of a
continued fraction additional structure.  For example, the partial
convergents of
, which gives the partial convergents of a
continued fraction additional structure.  For example, the partial
convergents of 
![$ [2, 1, 2, 1, 1, 4, 1, 1, 6]$](img1627.png) are
 are
 
To make the size of these numbers clearer, we approximate them using decimals. We also underline every other number, to illustrate some extra structure.
 
The underlined numbers are smaller than all of the non-underlined numbers, and the sequence of underlined numbers is strictly increasing, whereas the non-underlined numbers strictly decrease.
sage: c = continued_fraction([1,1,1,1,1,1,1,1]) sage: v = [(i, c.pn(i)/c.qn(i)) for i in range(len(c))] sage: P = point(v, rgbcolor=(0,0,1), pointsize=40) sage: L = line(v, rgbcolor=(0.5,0.5,0.5)) sage: L2 = line([(0,c.value()),(len(c)-1,c.value())], \ ... thickness=0.5, rgbcolor=(0.7,0,0)) sage.:(L+L2+P).show(ymin=1)
![\includegraphics[width=0.6\textwidth]{graphics/cfbounce}](img1630.png) 
We next prove that this extra structure is a general phenomenon.
 increase strictly with
 increase strictly with  , and the
odd indexed convergents
, and the
odd indexed convergents  decrease strictly with
 decrease strictly with  .  Also,
the odd indexed convergents
.  Also,
the odd indexed convergents  are greater than all of the
even indexed convergents
 are greater than all of the
even indexed convergents  .
. are positive for
 are positive for  , so the
, so the  are positive.
By Proposition 5.1.7, for
 are positive.
By Proposition 5.1.7, for  ,
, 
 
which proves the first claim.
Suppose for the sake of contradiction that there exist
integers  such that
 such that 
 .
Proposition 5.1.7 implies that for
.
Proposition 5.1.7 implies that for  ,
,
 
has sign
 , so for all
, so for all  we have
 we have 
 .  Thus it is impossible that
.  Thus it is impossible that  .  If
.  If  , then by
what we proved in the first paragraph,
, then by
what we proved in the first paragraph,
 , a contradiction (with
, a contradiction (with  ).  If
).  If  , then
, then
 , which is also a contradiction (with
, which is also a contradiction (with  ).
).
  
William 2007-06-01