TheoremComplete

Sequences and Series - Applications

Series appear throughout mathematics, science, and engineering as tools for approximation, representation of functions, and solution of differential equations. Understanding their applications demonstrates the practical power of infinite processes.

ExampleDecimal Expansions as Series

Every decimal expansion represents a series. For example: 0.333…=310+3100+31000+β‹―=βˆ‘n=1∞310n=3βˆ‘n=1∞110n0.333\ldots = \frac{3}{10} + \frac{3}{100} + \frac{3}{1000} + \cdots = \sum_{n=1}^\infty \frac{3}{10^n} = 3\sum_{n=1}^\infty \frac{1}{10^n}

This is a geometric series with a=110a = \frac{1}{10} and r=110r = \frac{1}{10}: =3β‹…1/101βˆ’1/10=3β‹…19=13= 3 \cdot \frac{1/10}{1 - 1/10} = 3 \cdot \frac{1}{9} = \frac{1}{3}

Thus 0.3β€Ύ=130.\overline{3} = \frac{1}{3}.

ExampleCompound Interest and the Number e

If principal PP earns interest rate rr compounded nn times per year, the amount after tt years is: A=P(1+rn)ntA = P\left(1 + \frac{r}{n}\right)^{nt}

As nβ†’βˆžn \to \infty (continuous compounding): A=Plim⁑nβ†’βˆž(1+rn)nt=PertA = P\lim_{n \to \infty}\left(1 + \frac{r}{n}\right)^{nt} = Pe^{rt}

This involves the fundamental limit lim⁑nβ†’βˆž(1+1n)n=e\lim_{n \to \infty}\left(1 + \frac{1}{n}\right)^n = e.

ExampleZeno's Paradox

Achilles runs 10 times as fast as a tortoise. The tortoise starts 100 meters ahead. When will Achilles catch the tortoise?

Achilles must cover: 100+10+1+0.1+0.01+β‹―100 + 10 + 1 + 0.1 + 0.01 + \cdots meters.

This is a geometric series: βˆ‘n=0∞10010n=1001βˆ’1/10=100β‹…109=10009β‰ˆ111.1Β meters\sum_{n=0}^\infty \frac{100}{10^n} = \frac{100}{1 - 1/10} = \frac{100 \cdot 10}{9} = \frac{1000}{9} \approx 111.1 \text{ meters}

Achilles catches the tortoise after running approximately 111.1 meters.

ExampleProbability and Expected Values

A biased coin has probability pp of heads. What's the expected number of flips until the first heads?

Let XX = number of flips. Then: E[X]=βˆ‘n=1∞nβ‹…P(X=n)=βˆ‘n=1∞n(1βˆ’p)nβˆ’1pE[X] = \sum_{n=1}^\infty n \cdot P(X = n) = \sum_{n=1}^\infty n(1-p)^{n-1}p

Factor out pp: =pβˆ‘n=1∞n(1βˆ’p)nβˆ’1= p\sum_{n=1}^\infty n(1-p)^{n-1}

This is the derivative of a geometric series. Let S=βˆ‘n=0∞(1βˆ’p)n=11βˆ’(1βˆ’p)=1pS = \sum_{n=0}^\infty (1-p)^n = \frac{1}{1-(1-p)} = \frac{1}{p}.

Differentiating: βˆ‘n=1∞n(1βˆ’p)nβˆ’1=ddp[1p]=βˆ’1p2β‹…(βˆ’1)=1p2\sum_{n=1}^\infty n(1-p)^{n-1} = \frac{d}{dp}\left[\frac{1}{p}\right] = -\frac{1}{p^2} \cdot (-1) = \frac{1}{p^2}.

Wait, let me recalculate. Actually, using the formula for βˆ‘n=1∞nxnβˆ’1=1(1βˆ’x)2\sum_{n=1}^\infty nx^{n-1} = \frac{1}{(1-x)^2}: E[X]=pβ‹…1[1βˆ’(1βˆ’p)]2=pβ‹…1p2=1pE[X] = p \cdot \frac{1}{[1-(1-p)]^2} = p \cdot \frac{1}{p^2} = \frac{1}{p}

For a fair coin (p=1/2p = 1/2), the expected number of flips is 11/2=2\frac{1}{1/2} = 2.

ExampleBasel Problem

Euler famously solved the Basel problem: what is βˆ‘n=1∞1n2\sum_{n=1}^\infty \frac{1}{n^2}?

Using Fourier series techniques, Euler showed: βˆ‘n=1∞1n2=Ο€26β‰ˆ1.6449\sum_{n=1}^\infty \frac{1}{n^2} = \frac{\pi^2}{6} \approx 1.6449

This connects the integers to the circle constant Ο€\pi in a surprising way.

ExampleNumerical Integration via Series

The integral ∫01eβˆ’x2 dx\int_0^1 e^{-x^2}\,dx has no elementary antiderivative, but we can use series: eβˆ’x2=βˆ‘n=0∞(βˆ’x2)nn!=βˆ‘n=0∞(βˆ’1)nx2nn!e^{-x^2} = \sum_{n=0}^\infty \frac{(-x^2)^n}{n!} = \sum_{n=0}^\infty \frac{(-1)^n x^{2n}}{n!}

Integrating term-by-term: ∫01eβˆ’x2 dx=βˆ‘n=0∞(βˆ’1)nn!∫01x2n dx=βˆ‘n=0∞(βˆ’1)nn!(2n+1)\int_0^1 e^{-x^2}\,dx = \sum_{n=0}^\infty \frac{(-1)^n}{n!}\int_0^1 x^{2n}\,dx = \sum_{n=0}^\infty \frac{(-1)^n}{n!(2n+1)}

=1βˆ’13+110βˆ’142+1216βˆ’β‹―β‰ˆ0.7468= 1 - \frac{1}{3} + \frac{1}{10} - \frac{1}{42} + \frac{1}{216} - \cdots \approx 0.7468

Remark

Series provide:

  • Numerical approximation: Computing transcendental functions
  • Theoretical representations: Expressing functions as infinite sums
  • Modeling: Population growth, radioactive decay, financial mathematics
  • Physics: Quantum mechanics, signal processing, heat distribution

Understanding series convergence and manipulation is essential across all quantitative disciplines.