Suppose there are 32 people, and we want to create a championship consisted of 16 teams (i.e., 2 people in each team). A system will pick these teams at random.
Further, suppose 4 of these 32 people are sick, and any team containing any sick person can't play in the championship.
Question is what is the expected number of teams remaining in the championship?
My Approach
I think we only have 3 possible outcomes here: 14 teams, 13 teams, and 12 teams based on how these sick people get distributed in the teams.
So the expected value would be $$ (P(14)*14) + (P(13)*13) + (P(12)*12) $$ where P(n) is the probability that n teams can participate in the championship.
My Question
I'm not sure if my intuition is correct or not. Also, I got stuck with finding P(n)
Let $$X_i = \begin{cases} 1 &\text{if team i includes at least one sick person} \\ 0 &\text{otherwise} \end{cases}$$ for $i = 1,2,3 \dots ,16$. Then $$P(X_i = 0) = \frac{28}{32} \cdot \frac{27}{31}$$ so $$E(X_i) = P(X_i = 1) = 1 - \frac{28}{32} \cdot \frac{27}{31}$$ for $i = 1,2,3, \dots ,16$. Therefore the expected number of teams which contain at least one sick person is $$E \left( \sum_{i=1}^{16} X_i \right) = \sum_{i=1}^{16} E(X_i) = 16 \left( 1 - \frac{28}{32} \cdot \frac{27}{31} \right) = 3.806$$
So the expected number of teams with no sick persons is $$16 - 3.806 = \boxed{12.193}$$