SOLUTION: How would I solve this problem: “A bag contains 4 red, 6 white and 9 blue marbles. How many ways can 5 marbles be drawn so that *at least* 2 marbles are blue?”
I have tried
Algebra ->
Permutations
-> SOLUTION: How would I solve this problem: “A bag contains 4 red, 6 white and 9 blue marbles. How many ways can 5 marbles be drawn so that *at least* 2 marbles are blue?”
I have tried
Log On
Question 1202169: How would I solve this problem: “A bag contains 4 red, 6 white and 9 blue marbles. How many ways can 5 marbles be drawn so that *at least* 2 marbles are blue?”
I have tried the following but wonder if they one is correct:
1. 9C2 * 17C3 I thought that 2 blue marbles would be drawn, leaving 17 blue, red or white marbles to be drawn. The scenarios would be multiplied to yield 24480 ways.
2. Sum the results from each scenario of 2-5 blue marbles being drawn. (9C2 * 10C3) + (9C3 * 10C2) + (9C4 * 10C1) + (9C5) = 9486
Is there a flaw in my thinking? Found 2 solutions by greenestamps, math_tutor2020:Answer by greenestamps(13200) (Show Source):
11628 is the highest we can go.
This is one piece of evidence to allow us to rule out 9C2*17C3
The 2nd calculation you wrote is correct. The answer is 9486
9C2 * 10C3 = number of ways to get 2 blue and 3 non-blue
9C3 * 10C2 = number of ways to get 3 blue and 2 non-blue
9C4 * 10C1 = number of ways to get 4 blue and 1 non-blue
9C5 * 10C0 = number of ways to get 5 blue and 0 non-blue
Each row is of the form (mCn)*(pCq)
we have these properties
m+p = 9 blue + 10 nonblue = 19 marbles total
n+q = 5 selections allowed
Another relevant calculator https://www.mathsisfun.com/combinatorics/combinations-permutations-calculator.html
It not only computes the nCr value, but it also lists out the various combinations in the "List Them" section.
I recommend exploring with small sets because listing tens of thousands of items would be a tedious task to verify.