Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

6.5 Chapter Summary

This chapter focused on methods for approximating functions.

Interactive Tools:

  1. Taylor Series Visualizer - Use this tool to visualize Taylor series.

Taylor Series

Definitions and examples are all available in Section 6.1.

  1. Given a smooth function ff, its Taylor series expansion about xx_* is:

    f(x)=n=01n!f(n)(x)(xx)nf(x) = \sum_{n = 0}^{\infty} \frac{1}{n!} f^{(n)}(x_*) (x - x_*)^n

    where f(n)(x)=dndxnf(x).f^{(n)}(x) = \frac{d^n}{dx^n} f(x).

  2. The mthm^{th} order polynomial approximation to ff about xx_* is the polynomial:

    f(x)f~m(x)=n=0m1n!f(n)(x)(xx)nf(x) \simeq \tilde{f}_m(x) = \sum_{n = 0}^{m} \frac{1}{n!} f^{(n)}(x_*) (x - x_*)^n
    • The error in the mthm^{th} order approximation is O((xx)m+1)\mathcal{O}((x - x_*)^{m+1})

    • The linear and quadratic approximations are:

    f(x)f(x)+f(x)(xx)f(x)f(x)+f(x)(xx)+12f(x)(xx)2.\begin{aligned} & f(x) \simeq f(x_*) + f'(x_*) (x - x_*) \\ & f(x) \simeq f(x_*) + f'(x_*) (x - x_*) + \frac{1}{2} f''(x_*) (x - x_*)^2. \end{aligned}
  3. The Taylor expansion of the exponential is:

    ex=n=01n!xn.e^x = \sum_{n = 0}^{\infty} \frac{1}{n!} x^n.
  4. The linear approximation to the logarithm near 1 is:

    log(1+x)x.\log(1 +x) \simeq x.

Exponential Approximation:

Definitions and examples are all available in Section 6.2.

  1. The limit definition of the exponential is:

    limn(1+1nx)n=ex.\lim_{n \rightarrow \infty} \left(1 + \frac{1}{n} x \right)^n = e^x.
  2. If incidents occur randomly in time, with time intervals TT between successive incidents such that:

    • TT is continuously distributed,

    • disjoint time intervals are independent, and

    • the chance an incident occurs in a time interval [t,t][t,t'] is only a function of the duration of the interval, and is O(tt)\mathcal{O}(t' - t) when ttt' - t is small,

    then TT is exponentially distributed.

Factorial Approximation:

Definitions and examples are all available in Section 6.3.

  1. Stirling’s Approximation:

    n!2πe(ne)n+12.n! \approx \sqrt{2 \pi e} \left(\frac{n}{e} \right)^{n + \frac{1}{2}}.

Limiting Distributions:

Definitions and examples are all available in Section 6.4.

  1. A random variable XX is Poisson distributed with parameter λ\lambda if:

    X{0,1,2,3,...,},PMF(x)=eλλxx!.X \in \{0,1,2,3,...,\infty\}, \quad \text{PMF}(x) = e^{-\lambda} \frac{\lambda^x}{x!}.
    • The Law of Small Numbers: If XnBinomial(n,pn)X_n \sim \text{Binomial}(n,p_n) and limnE[Xn]=limnnpn=λ\lim_{n \rightarrow \infty} \mathbb{E}[X_n] = \lim_{n \rightarrow \infty} n p_n = \lambda, then X=limnXnX = \lim_{n \rightarrow \infty} X_n is Poisson distributed with parameter λ\lambda.

    • If incidents occur randomly in time, where the times between consecutive incidents are independent, identically, and exponentially distributed, then the total number of incidents in a fixed time interval is Poisson distributed with parameter proportional to the length of the interval.

  2. A random variable ZZ is standard normal if:

    Z(,),PDF(z)=12πe12z2Z \in (-\infty,\infty), \quad \text{PDF}(z) = \frac{1}{\sqrt{2 \pi}} e^{-\frac{1}{2} z^2}
    • If XnBinomial(n,p)X_n \sim \text{Binomial}(n,p), and ZnZ_n equals XnX_n after standardizing, then ZnZ_n converges to ZZ as nn diverges.

    • Binomial/choose coefficients are, for large nn, bell shaped as a function of their second input, and are approximately proportional to a normal curve.