what does this summation mean?

174 Views Asked by At

I apologize if this question has been asked. I know several similar ones have been asked but I cannot find one answering this in particular.

I want to know what this summation means: $$\sum_{i,j=1}^{M}$$
Is this equivalent to $$\sum_{i=1}^M \sum_{j=1}^M$$
or does it mean that i and j will be incremented together at the same time?
If context is needed, the equation is coming from here equation 16 on the third page (page 392 of the journal).

1

There are 1 best solutions below

0
On BEST ANSWER

We have

$$\sum_{i,j=1}^{M}a_{i,j}=\sum_{1\le i,j\le M}a_{i,j}=\sum_{i=1}^M\sum_{j=1}^Ma_{i,j}=\sum_{j=1}^M\sum_{i=1}^Ma_{i,j}$$ means that we sum the terms $a_{i,j}$ with all the possible values of $i$ and $j$ between $1$ and $M$.