This is from Probability and Statistics Fourth Edition by Mark J. Schervish and Mark J. Schervish pg.48.
$Pr(\bigcup\limits_{i=1}^{n}A_i) = \sum\limits_{i=1}^{n} Pr(A_i) - \sum\limits_{\bbox[yellow] {i<j}} Pr(A_i \cap A_j) + \sum\limits_{\bbox[yellow] {i<j<k}} Pr(A_i \cap A_j \cap A_k) - \sum\limits_{\bbox[yellow] {i<j<k<l}} Pr(A_i \cap A_j \cap A_k \cap A_l) + (-1)^{n+1}Pr(A_1 \cap A_2 \cap \ldots \cap A_n$
I don't understand the highlighted parts.
For instance:
$\sum\limits_{i<j<k} Pr(A_i \cap A_j \cap A_k)$
Does $k$ go from $3$ to $n$? and $j$ from $2$ to $n-1$? and $i$ from $1$ to $n-2$?
If I understand correctly, this is taking all $A$s three at a time, finding the intersection of each three, and adding up all the probabilities of those intersections, right?
Is this the usual notation? Is there a better way to write this?
It means summing over all the intersections, but without duplicates. So if $n=3$ then $\sum\limits_{ {i<j}} \Pr(A_i \cap A_j)$ means $\Pr(A_1 \cap A_2)+\Pr(A_1 \cap A_3)+\Pr(A_2 \cap A_3)$
You could rewrite $\sum\limits_{ {i<j<k}} Pr(A_i \cap A_j \cap A_k)$ as $\sum\limits_{ {i=1}}^{n-2}\sum\limits_{ {j=i+1}}^{n-1}\sum\limits_{ {k=j+1}}^{n} Pr(A_i \cap A_j \cap A_k)$ or as $\sum\limits_{ {k=3}}^{n}\sum\limits_{ {j=2}}^{k-1}\sum\limits_{ {i=1}}^{j-1} Pr(A_i \cap A_j \cap A_k)$ but some might say this was less immediately clear