Strange sum notation

53 Views Asked by At

I have the following sum and I would like to generalize the notation but I don't see how to choose i index...

$$ -2P(A_{1} \cap A_{2}) - 2P(A_{1} \cap A_{3}) - 2P(A_{2} \cap A_{3}) = -2\sum_{i=something}^{something} P(A_{i}\cap A_{j}) $$

thanks ;)

1

There are 1 best solutions below

3
On BEST ANSWER

It depends on what you want to achieve. If you want to sum all possibile combinations of two events, then using a double summation will do the trick:

$$\sum_{i,j\\ i\neq j}P(A_i\cap A_j)=\sum_{i}\sum_{j,\ j\neq i}P(A_i\cap A_j)$$