Say you have $P(A) = P(B) = P(C) = 0.9$, but they are not necessarily independent events.
What is the minimum probability of $P(A ∩ B ∩ C)$?
For example, we know that
$P(A ∪ B) = P(A) + P(B) - P(A ∩ B) \leq 1$, so
$P(A ∩ B) \geq P(A) + P(B) - 1 = 0.9 + 0.9 -1 = 0.8$
So the min probability of $P(A ∩ B)$ is $0.8$
I can only find the maximum probability being $0.8$ because $P(A ∩ B ∩ C) \leq P(A ∩ B), P(B ∩ C), P(A ∩ C) = 0.8$
The working I've done so far:
$0 \leq P(A ∪ B ∪ C) \leq1$
$0 \leq P(A) + P(B) +P(C) - P(A ∩ B) - P(A ∩ C) - P(B ∩ C) + P(A∩B∩C) \leq 1$
$-2.7 \leq P(A ∩ B ∩ C) - P(A ∩ B) - P(A ∩ C) - P(B ∩ C) \leq -1.7$
$1.7 \leq P(A ∩ B) + P(A ∩ C) + P(B ∩ C) - P(A ∩ B ∩ C) \leq 2.7$
$P(A ∩ B ∩ C) + 2.7 \geq P(A ∩ B) + P(A ∩ C) + P(B ∩ C)$
$P(A ∩ B ∩ C) \geq P(A ∩ B) + P(A ∩ C) + P(B ∩ C) - 2.7$
Since, $0.8\leq P(A ∩ B)\leq 0.9$
$2.4 \leq P(A ∩ B) + P(A ∩ C) + P(B ∩ C) \leq 2.7$
So $P(A ∩ B ∩ C) >= 2.4 - 2.7$? or $2.7 - 2.7$? Which is just $0$?


You can solve the problem via linear programming, with a nonnegative decision variable $p_S$ for each of the possible subsets $S$ and linear constraints to enforce the given probabilities. For your example, the problem is to minimize $p_{111}$ subject to \begin{align} p_{001} + p_{011} + p_{101} + p_{111} &= 0.9 \\ p_{010} + p_{011} + p_{110} + p_{111} &= 0.9 \\ p_{100} + p_{101} + p_{110} + p_{111} &= 0.9 \\ p_{000} + p_{001} + p_{010} + p_{011} + p_{100} + p_{101} + p_{110} + p_{111} &= 1 \end{align} The minimum objective value turns out to be $0.7$, attained by $p_{011}=p_{101}=p_{110}=0.1$, $p_{111}=0.7$, and all other $p_S = 0$.
The maximum objective value turns out to be $0.9$, attained by $p_{000}=0.1$, $p_{111}=0.9$, and all other $p_S = 0$.