Binary addition on natural numbers is defined using simple statements:
$$n + 0 = n$$ $$a + succ(b) = succ(a + b)$$
Binary addition of real numbers may be again defined using simple statements (I won't list them here).
Could we come up with a list of similar simple statements that would define summation of infinite sequences of real numbers, in a way that does not, even intutitively, rely on the notion of limit or convergence?
These are examples of such "simple, not-limit-using" statements (though I'm not claiming they are necessarily good candidates):
- Some base cases:
$sum(0, 0, 0, ...) = 0$
$sum(0.5^1, 0.5^2, 0.5^3, ...) = 1$ - Respects binary sum:
$sum(n_0, n_1, n_2, ...) = r$ implies $r = n_0 + sum(n_1, n_2, ...)$
$sum(n_1, n_2, ...) = r$ implies $n_0 + r = sum(n_0, n_1, n_2, ...)$ - Respects binary multiplication:
$sum(n_0, n_1, n_2, ...) = r$ implies $sum(n_0 * c, n_1 * c, n_2 * c, ...) = r * c$ - Zigzaging rule:
$sum(A) = a$ and $sum(B) = b$ and $zigzag(A,B,C)$ implies $sum(C) = a + b$
Helper definitions:
For sequences of reals $A$, $B$ and $C$, $zigzag(A,B,C)$ holds iff there exists a sequence of naturals $I$ such that $A = (C_{I_0}, C_{I_1}, ...)$ and $B$ equals $C$ with the elements at indices $I$ removed.
I'm afraid that if this question does not have an affirmative answer, it would be very hard to give any, because I have not given precise enough description of what is simple and non-limit-using. So I'll be happy to also accept counter-examples that cannot be proven to equal to their limits using my example statements (or other simple statements of the answerer's choosing, if they wish to add some).
I'm also aware none of my examples can be used to prove a particular sum diverges. Perhaps we could define summation as a least fixed point? But feel free to restrict yourself to converging sequences, I guess.
This question was motivated by this one, where the asker has trouble accepting the conventional definition of infinite summation, which got me thinking about whether one may avoid using limits for defining it.