Suppose there are a total of 15 balls in a box. Out of these 15, 5 are of red color and others are green. 11 balls are chosen from the box at random. All balls are equally likely.
What is the probability that out of these 11, at least 3 balls are red colored?
My approach to solve this problem:
Let random var X = Number of red balls.
X takes values {0,1,2,3,4,5}
We have to find P(X>=3)
P(X>=3) = P(X=3) + P(X=4) + P(X=5)
Each ball has a probability 1/15.
Number of ways to choose 11 balls out of 15 balls is (15) C (11).
How do I proceed further?