Every real number has a unique fingerprint: peel off its whole part, flip the leftover, and repeat. The digits you collect — [a₀; a₁, a₂, …] — are its continued fraction, and they tell you exactly how well the number can be chased by simple fractions. Big coefficients mean a lucky fraction is hiding nearby (π ≈ 22/7 because a₂ = 15 is large). The number whose coefficients are all 1s — the golden ratio φ — has no lucky shortcuts anywhere, which is what makes it the most irrational number of all. Type a number, step the algorithm, and watch a rectangle tile itself into squares.
The convergents obey the recurrence \(p_n = a_n p_{n-1} + p_{n-2}\), \(q_n = a_n q_{n-1} + q_{n-2}\), and the approximation error is squeezed between \(\tfrac{1}{q_n(q_{n+1}+q_n)} < \left|x-\tfrac{p_n}{q_n}\right| < \tfrac{1}{q_n q_{n+1}} = \tfrac{1}{q_n^2 a_{n+1}+\dots}\).
So the error falls like \(1/(a_{n+1} q_n^2)\): a large next coefficient makes the current convergent superb. All-1s (φ) is the worst case — the denominators grow like Fibonacci numbers \(q_n=F_{n+1}\), giving \(|x-p_n/q_n|\to 1/(\sqrt5\,q_n^2)\), Hurwitz's theorem's sharp constant. Read more: Khinchin, Continued Fractions; Hardy & Wright, ch. X–XI; the Stern–Brocot tree for where the convergents sit among all fractions.