1

Does $\lim_{n\to\infty}a_n \neq 0 \rightarrow \sum_{n=1}^\infty a_n$ diverges hold if $a_n$ has also negative terms?

I can prove that if $a_n \geq 0$ then the implication holds, but I'm not sure about how to prove/ disprove the case when negative terms are allowed

Niebla
  • 444

2 Answers2

4

Suppose the series converges to a limit $\ell$. Then $A_n = \sum_{k=1}^n a_k$ and $B_n = \sum_{k=1}^{n-1} a_k$ both converge to $\ell$. But then $$ a_n = A_n - B_n \xrightarrow[n\to\infty]{} \ell - \ell = 0. $$ (using usual operation on limits: sum, subtraction.)

Clement C.
  • 67,323
1

If $\sum_{n \ge 0} a_n$ is a convergent series, then $\lim_{n \to \infty} a_n = 0$. Your statement is the converse to this one. The proof of this is very simple : if the sequence $S_N = \sum_{n=0}^N a_n$ is convergent (that is, if the series converges), then $S_N$ is a Cauchy sequence, hence

$$ \forall \varepsilon > 0, \exists M \text{ such that } \forall N,N' \ge M, \quad |S_N - S_{N'}| < \varepsilon. $$ Picking $n = N' = N-1$ bigger than $m = M+1$, this shows $$ \forall \varepsilon > 0, \exists m \text{ such that } \forall n \ge m, \quad |a_n| < \varepsilon. $$ since $S_n - S_{n-1} = a_n$. In other words, $a_n \to 0$.

Hope that helps,