We can use combination ( ) which shows how may ways to pick n items from a collection of k items, when the order of selection does not matter. .
We can choose 4 items from 12 in ways. This is a total number of different variants.
Now we should find how many ways to pick 4 good items or 3 good items and 1 faulty item and sum them:
We can choose 4 good items in ways (because we have only 9 good items in the box and we pick 4 of them).
We can choose 3 good items and 1 faulty item in in ways (because we picks 3 good items out of 9 and 1 faulty item out of 3).
Thus, the probability that the box is accepted:
Comments