You can get a group rate on tickets to a play if you can find 25 people to go. Assume each person you ask responds independently and has a 20% chance of agreeing to buy a ticket. Let X be the total number of people you have to ask in order to find 25 who agree to buy a ticket. Find the probability function of X
This is a negative probability function.
We know $p = 0.2$
The success is $S = \{ \text{Person agrees to buy ticket}\}$ and the failure $F = \{\text{Person doesnt buy ticket} \}$, let
$Y = \{\text{# people that don't buy ticket} \}$ then:
$$Y \sim NB(25, 0.2)$$
Hence
$P(Y = y) = \binom{y + 24}{y}(0.2)^{25}(0.8)^y$
We know total is $X = Y + 25$, thus
$P(X - 25 = y) \implies P(X = y + 25) = \binom{y + 49}{y + 25}(0.2)^{25}(0.8)^{y+25}$
Is this right?