Youth Program — Intermediate — Session 5
Session Overview
The class explored Euler’s number through the sequence (1 + 1/n)ⁿ, observing how it converges to e and connects to exponential curves, roots, logarithms, and tangent slopes. Musical frequencies provided a concrete application of exponential ratios, before the discussion turned to how Newton’s method lets computers approximate roots.
In ancient times, education was not about conveying information. It was about awakening the ineffable tints of beauty within human consciousness.
Approaching Euler’s number
Starting with repeated products such as (1½)², (1⅓)³, and (1.01)¹⁰⁰ led to the general expression (1 + 1/n)ⁿ. As n grows, this expression converges to e. Reversing the relationship gives the useful large-n approximation e^(1/n) ≈ 1 + 1/n.
Exponents, logarithms, and music
Fractional exponents were interpreted as roots: for example, 2^(1/12) is the factor that must be multiplied twelve times to double a frequency. This is the basis of equal-tempered tuning, where twelve equal-ratio half steps take 440 Hz to 880 Hz. Logarithms answer the inverse question—log₂(1000) is the number of doublings needed to multiply a frequency by 1,000, while the natural logarithm is log base e.
- Human hearing example: From roughly 20 Hz to 20,000 Hz is a factor of 1,000, or about ten octaves because log₂(1000) ≈ 10.
- Musical interval factor: Each equal-tempered half step multiplies frequency by 2^(1/12), approximately 1.0595.
Tangents and numerical approximation
A tangent slope can be approximated using rise over run across an increasingly small change. This led to Newton’s method: begin with a guess, use the tangent line to obtain a better guess, and repeat until the estimates converge. The same iterative idea is used to calculate roots numerically.
Explore Newton’s method
Study Newton’s method and try implementing it in Java, JavaScript, or Python.
- Core task: Write a program that approximates an nth root of a number, or begin with the square root of 2.
- Extension: Create a graphic or animation showing each tangent-line step converging toward the root.