I'm not sure what the meaning of the double sum is in this formula.

Asked
Active
Viewed 5,001 times
2
miracle173
- 11,049
user342836
- 31
-
1I think it is more common and clearer to represent the second sum as $$\sum_{j=1\j \neq i}^N$$ where it is clear you sum over all the $j$s that are not equal to $i$ – Ross Millikan Jul 21 '17 at 15:33
-
thank you for your answer – user342836 Jul 21 '17 at 19:48
2 Answers
2
If for instance $N=3$, you consider the terms s.t. $(i,j)=(1,2),(1,3),(2,1),(2,3),(3,1),(3,2)$
Evargalo
- 2,593
1
This notation is not really acceptable as it mixes two different conventions: the first summation specifies a range, while the second does not (it merely excludes the combinations with $i=j$).
I would have preferred one of
$$\sum_{i=1}^n\sum_{j=1\\j\ne i}^n$$ or $$\sum_i\sum_{j\ne i}$$
This said, it is equivalent to
$$\sum_{i=1}^n\left(\sum_{j=1}^{i-1}+\sum_{j=i+1}^n\right)$$