Given information: $Pr(X=x) = .8\cdot .2^{x-1}$ for each $x\geq 1$
Side note: it is worth checking on your own that this is indeed a probability distribution. I.e. that $\left(\sum\limits_{n=1}^\infty Pr(X=n)\right) = 1$. It is and it does.
- (a) Find the probability that a point requires at least two shots. I.e. find $Pr(X\geq 2)$.
By inclusion-exclusion, we know that $Pr(A) + Pr(A^c) = Pr(A\cup A^c) = 1$ or worded a different way, $Pr(A) = 1 - Pr(A^c)$. For this specific problem, $Pr(X\geq 2) = 1 - Pr(X<2)$ since the opposite event of a number being greater than or equal to two is being strictly less than two.
Further, since the only values that our random variable can take are positive integers, we can simplify further: $\dots=1-Pr(X<2) = 1-Pr(X=1)$
We were told what $Pr(X=1)$ is in the problem statement.
$Pr(X\geq 2) = 1 - Pr(X=1) = 1 - 0.8\cdot 2^{1-1} = 1-0.8 = 0.2$
- (b) In 10 randomly selected points, find the probability that there are at least 4 points that required at least 2 shots to win the point.
Now, let us approach this as a binomial distribution. We have ten trials, and in each trial we consider a "success" if it takes at least two shots to win the point. Let $Z$ be the random variable defined as the number of successes in these ten trials.
The problem asks us to find $Pr(Z\geq 4)$
We know, since it is a binomial distribution, that $Pr(Z=z) = \binom{10}{z}p^z(1-p)^{10-z}$, where $p$ is the answer we found for part (a).
We have then:
$Pr(Z\geq 4) = \sum\limits_{k=4}^{10} Pr(Z=k) = \sum\limits_{k=4}^{10}\binom{10}{k}0.2^k\cdot 0.8^{10-k}$. Recommend use of calculator if you want an exact value, it doesn't simplify horribly well.
- (c) Find the probability that there are exactly 10 shots until 5 points are won.
Consider a sequence of hits, labelled $H$, and misses, labelled $m$. If exactly ten shots occur to get the fifth hit, that implies that the sequence of hits and misses are something like $HmmHmHHmmH$ with specifically: $5$ $m$'s, $5$ $H$'s, and one of the $H$'s must be at the end.
How many ways can you arrange $5$ $m$'s, $5$ $H$'s, with one $H$ at the end?
In the first nine spaces in the sequence, you must have five $m$'s and four $H$'s. Pick which four of the nine spaces are used by $H$'s. The rest must be $m$'s. There are then $\binom{9}{4}$ possible sequences of hits and misses.
For each of those sequences, what is the probability that a sequence of ten random shots happens to follow that specific sequence?
Remember, that hits have a probability of $0.8$ to occur and misses have a probability of $0.2$ to occur. (implied from the pdf)
$0.8^5\cdot 0.2^5$
Thus, the total probability is:
$0.8^5\cdot 0.2^5\cdot \binom{9}{4}$