[Math] Linearity of summation of divergent series

divergent-series

I just learnt that one of the axioms of a summation method for a divergent series is linearity:
$$S[\sum_{n=0}^{\infty}(\alpha a_{n} + \beta b_{n})] = \alpha S[\sum_{n=0}^{\infty} a_{n}] + \beta S[\sum_{n=0}^{\infty} b_{n}]$$

However this stroke me as changing the order of the series (using associativity and commutivity), which the teacher was saying doesn't apply to divergent series! It seems like you are doing this:
$$(\alpha a_{0}+\beta b_{0})+(\alpha a_{1}+\beta b_{1})+… \longrightarrow (\alpha a_{0}+\alpha a_{1}+…)+(+\beta b_{0}+\beta b_{1}+…)$$

In fact the series $1-1+1-1+…$ which by this general method sums to $\frac{1}{2}$ can be manipulated to sum to $0$ with this property it seems:
$$S[\sum_{n=0}^{\infty}(1 + (-1) 1)] = S[\sum_{n=0}^{\infty} 1] + (-1) S[\sum_{n=0}^{\infty} 1]=0$$

What is the problem here?

Best Answer

The problem here is that you have to distinguish between the series $$ \sum_{n=0}^\infty a_k, \quad a_k = (1 + (-1)) = 0 $$ and the series $$ \sum_{n=0}^\infty b_k, \quad b_k=(-1)^k \text{.} $$

If you extend series summantion to non-convergent series, summantion methods simply are (pretty much arbitrary) maps $S$ from the set of series, i.e. $\mathbb{R}^\mathbb{N}$ to the set of real numbers $\mathbb{R}$. You usually put two requirements on those maps, namely that

  1. They are linear, in the sense that $S\left(\alpha (x_n)_{n\in\mathbb{N}} + \beta (x_n)_{n\in\mathbb{N}}\right) = \alpha S\left((x_n)_{n\in\mathbb{N}}\right) + \beta S\left((x_n)_{n\in\mathbb{N}}\right)$

  2. They map convergent series to their usual limit, i.e. for example $S\left(\left(2^{-n}\right)_{n\in\mathbb{N}}\right) = 2$.

Those requirements, however, don't imply that you may re-group summands. But you have to do that to map $(a_k)_{k\in\mathbb{N}}$ to $(b_k)_{k\in\mathbb{N}}$.

If I recall correctly, you can find a divergent (in the usual sense) series $(a_k)$ such that for every $l \in \mathbb{N}$ there's a re-ordering $(b_k)$ of $(a_k)$ such that $\sum_{k=1}^\infty b_k$ converges in the usual sense to $l$. Thus, extended summation methods, if they want to fullfill (2) above, have to be very sensitive to reorderings.

Related Question