Suppose that three persons (A, B and C) throw at a target. And A throws 10 times with the probability 0.3 to hit the target; and B throws 15 times with the probability 0.2; and C throws 20 times with the probability 0.1. Now Determine the probability that the target will be hit at least 12 times.
My solution is as follows:
For each throw, the probability of hitting the target is
Pr(H=1) = Pr(A)Pr(A Hit) + Pr(B)Pr(B Hit) + Pr(C)Pr(C Hit)
which is
Pr(H=1) = (10/45)*0.3 + (15/45)*0.2 + (20/45)*0.1 = 8/45
So, the throw distribution can be seemed as binomial distribution H ~ Bin(45, 8/45)
then can get the answer.
Am I right to consider the target hit variable as a binomial distribution?
And please give me a help to get the correct answer, any hints will be appreciated. Thanks.
A random variable $H$ is distributed binomially if it represents the number of successes $H=h$ in $n$ independent and identical trials where $n\ge h$
Hence, $H$ is distributed binomially assuming the independence and identicalness of the throws in which case we have:
$$P(H = h) = \frac{45}{h} p^h (1-p)^{n-h}$$
As for the calculation of $p$, it looks like right but you'll have to clarify what exactly is meant by $P(A)$ and so on. How exactly did you come up with the formula? Did you use law of total probability?
I think
$$p = P(hit) = P(hit | A \ throws)P(A \ throws) + P(hit | B \ throws)P(B \ throws) + P(hit | C \ throws)P(C \ throws)$$
where $P(X \ throws)$ is the proportion of throws of $X$ to the total number of throws assuming independence, identicalness or something