Which of the following notations is proper, and which is not?
$$x = A_1 + \cdots + A_n$$ $$y = A_1 + A_2 + \cdots + A_n$$ $$z = A_1 + A_2 + \cdots + A_{n-1} + A_n$$
I have seen all of these styles used in various places, but some of these would yield the wrong result when the number of elements in $A$ is small. For example, if $A=\{ 1, 2 \}$, $y$ and $z$ would not have the value I intended, which is $3$.
Where can I read more about this notation, so I know the right number of things to show in a pattern, and what to call these things?
In Concrete Mathematics by D.E. Knuth, R.L. Graham and O. Patashnik the chapter 2: Sums, section 2.1: Notation starts with:
The sigma notation $\sum_{k=1}^n a_k$ and its many different shapes is thoroughly explained after that.