document.write( "Question 1206345: Thirty-five rose bushes are available from a nursery containing 16 red bushes, 11 yellow bushes, and 8 white bushes. If 10 rose bushes are randomly chosen with replacement, then what is the probability that 7 or more are yellow?\r
\n" );
document.write( "\n" );
document.write( "0.0587
\n" );
document.write( "0.0139
\n" );
document.write( "0.1171
\n" );
document.write( "0.9978
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #843733 by math_tutor2020(3817) ![]() You can put this solution on YOUR website! \n" ); document.write( "Answer: 0.0139\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Explanation\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "We use the binomial probability distribution. \n" ); document.write( "n = 10 trials \n" ); document.write( "p = 11/35 = probability of getting a yellow rose on any single trial \n" ); document.write( "x = number of yellow roses selected.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "x will be selected from the set {7,8,9,10}\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "The binomial probability formula is \n" ); document.write( "B(x) = (nCx)*(p)^x*(1-p)^(n-x) \n" ); document.write( "where the nCx refers to the nCr combination formula. \n" ); document.write( "To compute the nCr value in a spreadsheet, use the command called Combin \n" ); document.write( "For example, type in =Combin(10,7) to mean 10C7. \n" ); document.write( "Do not use the \"choose\" command. That's something entirely different.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Let's find the probability of selecting exactly 7 yellow roses and 10-7 = 3 nonyellow roses. \n" ); document.write( "B(x) = (nCx)*(p)^x*(1-p)^(n-x) \n" ); document.write( "B(x) = (10Cx)*(11/35)^x*(1-11/35)^(10-x) \n" ); document.write( "B(x) = (10Cx)*(11/35)^x*(24/35)^(10-x) \n" ); document.write( "B(7) = (10C7)*(11/35)^7*(24/35)^(10-7) \n" ); document.write( "B(7) = (120)*(11/35)^7*(24/35)^3 \n" ); document.write( "B(7) = 0.0117188 approximately\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Repeat similar calculations for x = 8 through x = 10. \n" ); document.write( "This is what the table of values should look like \n" ); document.write( "
\n" ); document.write( "Add up the P(x) values to get: \n" ); document.write( "0.0117188 + 0.00201417 + 0.00020515 + 0.0000094 = 0.01394752 which rounds to 0.0139\r \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "A shortcut would be to use the BinomDist function on a spreadsheet. \n" ); document.write( "The one line calculation to type in is =1-BinomDist(6,10,11/35,1) \n" ); document.write( "The BinomDist(6,10,11/35,1) portion calculates the binomial cdf value from x = 0 to x = 6. Subtracting that result from 1 leads to B(7)+B(8)+B(9)+B(10)\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Note: \n" ); document.write( "B(0)+B(1)+B(2)+B(3)+B(4)+B(5)+B(6)+B(7)+B(8)+B(9)+B(10) = 1 \n" ); document.write( "B(7)+B(8)+B(9)+B(10) = 1 - (B(0)+B(1)+B(2)+B(3)+B(4)+B(5)+B(6))\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "If you want to round the result then you can type in =Round(1-BinomDist(6,10,11/35,1),4) \n" ); document.write( "Or you can place the original calculation in cell A1 and then type in =Round(A1,4) so you round the contents of A1 to 4 decimal places. \n" ); document.write( "Change A1 to whatever other cell you want.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "If you are using a TI84, then refer to this article \n" ); document.write( "Use binomCDF instead of binomPDF. \n" ); document.write( " \n" ); document.write( " |