1

Find the radius of convergence of this series:

$$f(x)= \sum_{j=1}^{\infty} \ \frac{(-1)^{j-1}}{j}(x-1)^j$$

I'm not sure what test to use to get the necessary result. I tried using the root test, but got an expression with both x and j that I can't infer from.

Edit: how can I check convergence at the endpoints? Is it just by plugging in values?

kiwifruit
  • 707

1 Answers1

1

The ratio test yields:

$$\lim\limits_{j \to \infty} \left|\dfrac{\frac{(-1)^j}{j+1}(x-1)^{j+1}}{\frac{(-1)^{j-1}}{j}(x-1)^j}\right| = \lim\limits_{j \to \infty} \frac{j}{j+1}|x-1| = |x-1|$$

So the series converges when $|x-1|<1$ and diverges when $|x-1|>1$.

Endpoints need to be checked separately. :)

Bill Cook
  • 29,244