16

$\sum_{n=1}^{\infty}x_n$ is a convergent series and $\sum_{n=1}^{\infty}y_n$ is a divergent series. Prove their sum diverges.

My attempt:

Suppose $\sum_{n=1}^{\infty}x_n + y_n$ converges.

Since $\sum_{n=1}^{\infty}-x_n = -\sum_{n=1}^{\infty}x_n$ converges, $\sum_{n=1}^{\infty}x_n + y_n - \sum_{n=1}^{\infty}x_n = \sum_{n=1}^{\infty}y_n$

This implies that $\sum_{n=1}^{\infty}y_n$ converges, which is a contradiction. Therefore $\sum_{n=1}^{\infty}x_n + y_n$ diverges.

How is this proof?

JMoravitz
  • 79,518
Sky
  • 317
  • 1
  • 3
  • 10
  • You need parentheses and fewer displayed expressions. Otherwise fine. – zhw. Mar 30 '17 at 04:05
  • It looks perfectly acceptable. – Mark Viola Mar 30 '17 at 04:16
  • 3
    For typesetting, reserve the use of $$ expression $$ for things that you want to stand out by themselves in a line on its own in the center. For standard use, just use $ expression $. Also, keep the equals signs inside of math mode, no need to end and restart mathmode each time you come across an equals sign. – JMoravitz Mar 30 '17 at 06:15

2 Answers2

4

Yes, that would be the standard way of doing it.

Martin Argerami
  • 205,756
0

If $\displaystyle \sum_{n=1}^{\infty} x_{n}+y_{n}$ converges, then we can talk about the sequence of $c_{r}=\displaystyle \sum_{n=1}^{r} x_{n}+y_{n}$ in terms of its behavior for arbitrarily large $r$. We can rewrite it $c_{r}$ as $p_{r}+q_{r}$, where $p_{r}, q_{r}$ are the partial sum sequences of $x_{n}$ and $y_{n}$ respectively. This can be done because we are assuming that $r$ is finite and for any given $r$, they are identical.

Now, we know the behavior of $p_{r}$ in our desired range (somewhere between 0 and infinity but really big); it's $O(1)$. This is because we are given that $\sum_{n=1}^{\infty} x_{n}$ converges.

So for arbitrarily large $r$,

$c_{r}-q_{r}=O(1)$.

This means the behavior of $c_{r}$ is 'roughly' the behavior of $q_{r}$.

Dave huff
  • 779