Suppose, we roll a die with $m$ sides. What is the minimal possible number $m$ if there are $n$ distinct pairwise independent events?
Note, that not all events here have to be independent all together. For example if $m = 4$, then the events $a_1 = \{1, 2\}$, $a_2 = \{1, 3\}$ and $a_3 = \{1, 4\}$ are pairwise independent ($P(a_1) = P(a_2) = P(a_3) = \frac{1}{2}$ and $P(a_1 \cap a_2) = P(a_2 \cap a_3) = P(a_3 \cap a_1) = \frac{1}{4}$) and thus satisfy our condition, but are not independent altogether ($P(a_1 \cap a_2 \cap a_3) = \frac{1}{4} \neq \frac{1}{8}$).
The only thing, that I managed to get, was this:
If there are pairwise independent events $a_1, ... , a_n$, such that $\sum_{i = 1}^{n} P(a_i) \leq c$, then $m \geq \frac{n(n-1)}{c^2}$
Proof:
$$c \geq \sum_{i = 1}^{n} P(a_i)$$
thus
$$c^2 \geq (\sum_{i = 1}^{n} P(a_i))^2 \geq 2\sum_{i = 1}^{n} \sum_{j = i + 1}^n P(a_i)P(a_j) = 2\sum_{i = 1}^{n} \sum_{j = i + 1}^n P(a_i \cap a_j) \geq \frac{n(n-1)}{m}$$
Q.E.D.
And I do not know, what will happen, if we remove the supposition that $\sum_{i = 1}^{n} P(a_i) \leq c$.