A submarine launches 4 missiles to a battleship. The probability that a missile hits is 0.3. For sinking the battleship it is enough that 2 missiles hit it, but if a single missile hits it, the probability that it sinks is 0.6.
What is the probability that the battleship sinks?
I tried to split it into two cases:
A) Only one missile of four hits the battleship:
then we get
$P$(sinks) = $P$(missile hits)*$P$(battleship sinks given that it was hit by a missile) = 0.3*0.6 = 0.18. Of course we multiply this probability with $\binom{4}{1}$ for choosing only one missile that hits the target.
B) Two missiles hit he target
$P$(sinks) = P(missile hits)*$P$(missile hits) = 0.09 and of course we multipy this value with $\binom{4}{2}$, same reasoning as above.
In the end, I added A and B and that should be the final prbability.
Do you have any idea if it is correct?
Your answer is not correct, because you did not take into account that while some missiles hit, others have to miss. We can distinguish two cases in which the ship does not sink:
Only one missile hits and this missile is not crucial, with probability ${4 \choose 1} \cdot 0.3 \cdot 0.7^3 \cdot 0.4$
No missiles hit, with probability $0.7^4$
The probability of the ship sinking thus equals:
$$1 - 4 \cdot 0.3 \cdot 0.7^3 \cdot 0.4 - 0.7^4 = 0.59526$$