Exact function of a Taylor Polynomial

52 Views Asked by At

I was wondering if you could help me find the exact function that this Taylor series is meant to represent as I have been stuck for a couple hours: $$f(x) = \frac12(x - 1) - \frac18(x - 1)^2 + \frac1{24}(x - 1)^3 - \frac1{64}(x - 1)^4 + \cdots + \frac{(-1)^{n + 1}}{n 2^n}(x - 1)^n + \cdots$$

Thanks!

1

There are 1 best solutions below

1
On BEST ANSWER

Let's rewrite this as a summation: $$f(x) = \sum_{n = 1}^\infty \frac{(-1)^{n + 1}}{n 2^n}(x - 1)^n.$$ We note that there is a power of $n$ in the denominator and numerator.

\begin{align} f(x) & = \sum_{n = 1}^\infty \frac{(-1)^{n + 1}}n \left(\frac{x - 1}2 \right)^n \\ & = \sum_{n = 1}^\infty \frac{-(-1)^n}n \left(\frac{x - 1}2 \right)^n \\ & = - \sum_{n = 1}^\infty \frac1n \left(\frac{1 - x}2 \right)^n. \end{align} This series should look familiar. Indeed, setting $u = \frac{1 - x}2$, this becomes the well known Taylor series for the natural logarithm:

$$f(x) = - \sum_{n = 1}^\infty \frac{u^n}n = -\left( - \ln(1 - u) \right) = \ln(1 - u) = \ln \frac{1 + x}2.$$ This series is absolutely convergent for all $\lvert u \rvert \lt 1 \rightarrow \lvert \frac{1 - x}2 \rvert \lt 1 \rightarrow \lvert 1 - x \rvert < 2.$

Therefore, our series is $f(x) = \ln(1 + x) - \ln 2$ for $\lvert 1 - x \rvert \lt 2$. Put differently, it is the expansion of $\ln(1 + x) - \ln 2$ around $x = 1$.