0

So I just did my analysis exam and I had this question where I needed to find the convergence radius for this power series. I did not really know what to do because of the $n!$ and the $(-1)^n.$ There must be a trick since it was part of a longer question. Any ideas? $$\sum _{n=0}^{\infty }\frac{\left(-1\right)^{n+1}\left(n-1\right)}{n!}\left(x-1\right)^n$$

2 Answers2

1

The radius of convergence of a power series $$ \sum_{n=0}^{\infty} a_n (x-x_0)^n $$ is given by $$ \frac{1}{\limsup_{n\to\infty} \sqrt[n]{\left|a_n\right|}}. $$ This can be checking using the root test for series convergence. But $$ \limsup_{n\to\infty} \sqrt[n]{ \left| \frac{(-1)^{n+1} (n-1)}{n!} \right|} = \limsup_{n\to\infty} \sqrt[n]{\frac{n-1}{n!}} = 0. $$ From this, it follows that the radius of convergence is $\infty$. That is, the series converges absolutely for all $x$.

0

Just use the ratio test - an AP calculus classic trick.

\begin{align*} \lim_{n \to \infty} \left| \frac{a_{n+1}}{a_n} \right | &= \lim_{n \to \infty} \left| \frac{(-1)^{n+2} (n+1-1) (x-1)^{n+1} }{(n+1)!} \cdot \frac{ n!}{(-1)^{n+1} (n-1) (x-1)^{n} } \right| \\ &= \lim_{n \to \infty} \left| \frac{(-1) (n) (x-1)}{(n+1)} \cdot \frac{1}{(n-1)} \right| \\ &= |x-1| \lim_{n \to \infty} \left| \frac{1}{2} \left(\frac{1}{n + 1} + \frac{1}{n-1} \right) \right| \end{align*}

You can finish it here - or use Xander's answer (I was beat while writing this up).