I am having an issue with what seems to me to be a quite simple binomial distribution problem:
There are five members in my family, two of whom are male. My question is: what are the probabilities of choosing 0, 1 and 2 males if the number of trials ($n$) is three?
My assumptions are as follows:
- Probability for success ($p$) is $0.4$ (two males divided by five total family members)
- The compliment for that probability is $0.6$ ($1 - p$)
- The number of trials per experiment ($n$) is $3$ (i.e. I am picking three members of the family at random each time)
The formula I am using for the binomial distribution is this: $$P(x) = \frac{N!}{x! (N-x)!} p ^ x q^{(N-x)}$$ The issue I am coming across is that when I calculate the probabilities of the outcomes (0, 1, 2) I receive the following outputs respectively:
- $0.2160$
- $0.4320$
- $0.2880$
These outputs sum to only $0.9360$. However, when I include a third $x$ ($x = 3$), I receive a probability of $0.0640$. when this probability is included the sum of all probabilities is 1.
My question is how can this be possible in a situation where there are only 2 males in the family of 5? Shouldn't the probability of picking 3 males be impossible (i.e. zero probability)?
Am I misunderstanding the nature of my problem? Or the nature of the binomial distribution?
The binomial distribution assumes that you pick the objects (in this case, family members) with replacement. In a sample of 3 it is entirely possible that a male is picked three times, since each time the picked male is returned to the population. Indeed, your calculated probability of 0.0640 for this scenario is correct.
If you want the probability of picking three males to be zero, you have to pick the sample without replacement. In this case the distribution changes to hypergeometric, where the probability of getting $k$ successes in a sample of $n$ from a population with $K$ successes in $N$ is $\frac{\binom Kk\binom{N-K}{n-k}}{\binom Nn}$. For this model, the probabilities of picking 0, 1 and 2 males become $\frac1{10}$, $\frac35$ and $\frac3{10}$ respectively.