document.write( "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?”\r
\n" );
document.write( "\n" );
document.write( "I have tried the following but wonder if they one is correct:
\n" );
document.write( "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.
\n" );
document.write( "2. Sum the results from each scenario of 2-5 blue marbles being drawn. (9C2 * 10C3) + (9C3 * 10C2) + (9C4 * 10C1) + (9C5) = 9486\r
\n" );
document.write( "\n" );
document.write( "Is there a flaw in my thinking? \n" );
document.write( "
Algebra.Com's Answer #836823 by math_tutor2020(3817)![]() ![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "9C2*17C3 = 24480 is way too big compared to the upper bound 19C5 = 11628\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "11628 is the highest we can go. \n" ); document.write( "This is one piece of evidence to allow us to rule out 9C2*17C3\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "The 2nd calculation you wrote is correct. The answer is 9486\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "9C2 * 10C3 = number of ways to get 2 blue and 3 non-blue \n" ); document.write( "9C3 * 10C2 = number of ways to get 3 blue and 2 non-blue \n" ); document.write( "9C4 * 10C1 = number of ways to get 4 blue and 1 non-blue \n" ); document.write( "9C5 * 10C0 = number of ways to get 5 blue and 0 non-blue\r \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Each row is of the form (mCn)*(pCq) \n" ); document.write( "we have these properties \n" ); document.write( "m+p = 9 blue + 10 nonblue = 19 marbles total \n" ); document.write( "n+q = 5 selections allowed\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Calculator verification using WolframAlpha \n" ); document.write( "https://www.wolframalpha.com/input?i=%28%289choose2%29+*+%2810choose3%29%29+%2B+%28%289choose3%29+*+%2810choose2%29%29+%2B+%28%289choose4%29+*+%2810choose1%29%29+%2B+%28%289choose5%29%29 \n" ); document.write( "The input was \"((9choose2) * (10choose3)) + ((9choose3) * (10choose2)) + ((9choose4) * (10choose1)) + ((9choose5))\" without quotes.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "The \"choose\" function is another name for the nCr combination function.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "------------------------------------------------------------------------------------------------------\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Another approach:\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "There are 19C5 = 11628 ways to pick 5 marbles of any color. Order doesn't matter.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Also we have 10C5 = 252 ways to pick five non-blue marbles \n" ); document.write( "And (9C1)*(10C4) = 9*210 = 1890 ways to pick one blue marble and four non-blue marbles.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Therefore, we have 11628 - (252+1890) = 9486 ways to select at least two blue marbles in a batch of five.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "I'm using the idea that \n" ); document.write( "n(0 blue) + n(1 blue) + n(at least 2 blue) = n(total) \n" ); document.write( "which leads to \n" ); document.write( "n(at least 2 blue) = n(total) - ( n(0 blue) + n(1 blue) ) \n" ); document.write( "n(at least 2 blue) = 19C5 - ( 10C5 + 9C1*10C4 ) \n" ); document.write( "n(at least 2 blue) = 11628 - ( 252 + 1890 ) \n" ); document.write( "n(at least 2 blue) = 9486\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Calculator verification using WolframAlpha \n" ); document.write( "https://www.wolframalpha.com/input?i=%2819+choose+5%29+-+%2810+choose+5%29+-+%289+choose+1%29*%2810+choose+4%29 \n" ); document.write( "The input was: (19 choose 5) - (10 choose 5) - (9 choose 1)*(10 choose 4)\r \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Another relevant calculator \n" ); document.write( "https://www.mathsisfun.com/combinatorics/combinations-permutations-calculator.html \n" ); document.write( "It not only computes the nCr value, but it also lists out the various combinations in the \"List Them\" section. \n" ); document.write( "I recommend exploring with small sets because listing tens of thousands of items would be a tedious task to verify. \n" ); document.write( " \n" ); document.write( " |