Suppose I'm given a set $S$ and antichain $A \subset 2^S$ ($\forall a_1,a_2\in A: a_1\neq a_2 \iff a_1 \nsubseteq a_2$).
Let's call subset $b \in 2^S$ covered by $A$ if $\exists a \in A :b \subseteq a $.
I'm looking for a way to answer "What part/what percentage of $2^S$ is covered by $A$?"
Due to $|S|>100$, it's infeasible to check all subsets.
Due to $|A|>100$, it's infeasible to euler-diagram all cover intersections.
Randomly generating subsets is a solution, but
a) it won't be useful on extremely low and extremely high coverage (like $A$ consisting of only 1 subset containing half of $S$ will be undetectable)
and
b) quantitively comparing coverage of different antichains may be complicated due to noise
I've tried looking in literature, but my scholar-googling skills aren't great.
I hope you have any ideas.