Series expansion

1.3. Series expansion#

Example: Taylor series

Find the two-term Taylor series for

(1.1)#\[\begin{equation} f(x) = xe^{2 x^2} \end{equation}\]

about \(x = 0\).


We will evaluate the required derivatives. This will be a series of product rule calculations.

The value of the function is \(f(0) = 0\). The first derivative is:

(1.2)#\[\begin{align} f'(x) &= x(e^{2x^2}4x) + e^{2x^2} \\ &= (4x^2 + 1)e^{2x^2} \end{align}\]

so \(f'(0) = 1\). The second derivative is:

(1.3)#\[\begin{align} f''(x) &= (4x^2+1)(e^{2x^2}4x)+8xe^{2x^2} \\ &= (16x^3+12x)e^{2x^2} \end{align}\]

so \(f''(0) = 0\). This means we need to keep going! The third derivative is:

(1.4)#\[\begin{align} f'''(x) &= (16x^3+12x)(e^{2x^2}4x)+(48x^2+12)e^{2x^2} \\ &= (64x^4+96x^2+12)e^{2x^2} \end{align}\]

so \(f'''(0) = 12\).

Putting it all together,

(1.5)#\[\begin{equation} f(x) \approx 0 + 1 \cdot x + \frac{1}{2} \cdot 0 \cdot x^2 + \frac{1}{6} \cdot 12 \cdot x^3 + \cdots = x + 2x^3 + \cdots \end{equation}\]

1.3.1. Combining series#

Some of these calculations can sometimes be avoided by combining series together. For example, the Taylor series for \(e^x\) is well known

(1.6)#\[\begin{equation} e^x = \sum_{n=0}^{\infty} \frac{x^n}{n!} = 1 + x + \frac{x^2}{2} + \cdots \end{equation}\]

The argument of e in f is \(2x^2\), which is also zero when x is zero, so we can substitute it in the known series to obtain

(1.7)#\[\begin{equation} e^{2x^2} \approx 1 + 2x^2 + \frac{(2x^2)^2}{2} + \cdots \end{equation}\]

Finally, inserting this series into f and expanding

(1.8)#\[\begin{align} f(x) &= x e^{2x^2} \approx x (1 + 2x^2 + 2x^4 + \cdots) \\ &= x + 2x^3 + \cdots \end{align}\]

When doing this process, it can be helpful to keep track of dropped terms using \(O\)-notation

(1.9)#\[\begin{align} e^x &= \sum_{n=0}^{\infty} \frac{x^n}{n!} = 1 + x + \frac{x^2}{2} + O(x^3) \\ e^{2x^2} &= 1 + 2x^2 + 2x^4 + O(x^6) \\ xe^{2x^2} &= x + 2x^3 + O(x^5) \end{align}\]