[Math] Double summation index meaning

summation

I am trying to find a book or something that explains the use of a inequality in the index notation of a double summation like in this example:

$$\mathop{\sum\sum}_{i\leq j}Cov(X_i,X_j).$$

What does this mean? Does not seem intuitive for me a like a normal double summation like:

$$\sum\limits_{i=1}^{2}\sum\limits_{j=1}^{m}Cov(X_i,X_j)$$

where one just have to sum this way:

$$\sum\limits_{j=1}^{m}Cov(X_1,X_j)+\sum\limits_{j=1}^{m}Cov(X_2,X_j).$$

Thank you very much.

Best Answer

Suppose $i$ and $j$ are indices which take values $1, \dots, m$, and for each $i$ and $j$, we have a number $a_{ij}$. Note that $(i, j) \in \{1, \dots, m\}\times\{1, \dots, m\}$. If we were to sum over all possible values of $(i, j)$ we would have

$$\sum_{(i, j) \in \{1, \dots, m\}\times\{1, \dots, m\}}a_{ij}$$

which could also be written as

$$\sum_{i \in \{1, \dots, m\}}\sum_{j\in\{1, \dots, m\}}a_{ij}$$

or more commonly

$$\sum_{i=1}^m\sum_{j=1}^ma_{ij}.$$

Sometimes, we are not interested in all possible pairs of indices, but only those pairs which satisfy some condition. In the example you are looking at, the pairs of indices of interest are $(i, j) \in \{1, \dots, m\}\times\{1, \dots, m\}$ such that $i \leq j$. One way to denote the sum over all such pairs of indices is

$$\sum_{\substack{(i, j) \in \{1, \dots, m\}\times\{1, \dots, m\}\\ i \leq j}}a_{ij}$$

but this is rather cumbersome. It would be much more helpful if we could write it as a double sum as above. To do this, note that we can list all suitable pairs of indices, by first fixing $i \in \{1, \dots, m\}$ and then allowing $j$ to vary from $i$ to $m$ (as these are the only possible values of $j$ with $i \leq j$). Doing this, we obtain the double sum

$$\sum_{i=1}^m\sum_{j=i}^ma_{ij}.$$

Note, we could also have fixed $j \in \{1, \dots, m\}$ and then allowed $i$ to vary from $1$ to $j$ (as these are the only possible values of $i$ with $i \leq j$). Doing this, we obtain an alternative double sum

$$\sum_{j=1}^m\sum_{i=1}^ja_{ij}.$$

The notation that you are asking about is yet another way to express the sum. That is,

$$\mathop{\sum\sum}_{i \leq j}a_{ij} = \sum_{\substack{(i, j) \in \{1, \dots, m\}\times\{1, \dots, m\}\\ i \leq j}}a_{ij} = \sum_{i=1}^m\sum_{j=i}^ma_{ij} = \sum_{j=1}^m\sum_{i=1}^ja_{ij}.$$