document.write( "Question 1156979: A bag contains three black balls, four white balls and five red balls. Three balls are removed without replacement. What is the probability of obtaining
\n" );
document.write( "1. One of each colour
\n" );
document.write( "2. At least two red balls
\n" );
document.write( "3. At most two white balls
\n" );
document.write( "(show the posibilities) \n" );
document.write( "
Algebra.Com's Answer #779768 by VFBundy(438)![]() ![]() You can put this solution on YOUR website! In total, there are 12 balls. Since you are choosing three balls without replacement, there are THIS many ways in which you can choose three balls: \n" ); document.write( " \n" ); document.write( "12C3 = \n" ); document.write( " \n" ); document.write( "You will use this in each of the problems below. \n" ); document.write( " \n" ); document.write( "1. One of each color \n" ); document.write( " \n" ); document.write( "The number of ways you can choose one black ball, one white ball, and one red ball: \n" ); document.write( " \n" ); document.write( "3C1 * 4C1 * 5C1 = \n" ); document.write( " \n" ); document.write( "The probability of choosing one of each color = 60/220 = 3/11 \n" ); document.write( " \n" ); document.write( "2. At least two red balls \n" ); document.write( " \n" ); document.write( "The number of ways you can choose three red balls OR two red balls and one black ball OR two red balls and one white ball: \n" ); document.write( " \n" ); document.write( "5C3 + (5C2 * 3C1) + (5C2 * 4C1) = \n" ); document.write( " \n" ); document.write( "The probability of choosing at least two red balls = 80/220 = 4/11 \n" ); document.write( " \n" ); document.write( "3. At most two white balls \n" ); document.write( " \n" ); document.write( "The easiest way to do this would be to figure out the number of ways you can choose three white balls, then subtract this amount from 220. \n" ); document.write( " \n" ); document.write( "The number of ways you can choose three white balls: \n" ); document.write( " \n" ); document.write( "4C3 = \n" ); document.write( " \n" ); document.write( "Since choosing \"at most two white balls\" would be every possibility EXCEPT choosing three white balls, you simply subtract the number of ways you can choose three white balls (4) from the total number of ways you can choose any three balls (220). This means there are 216 ways of choosing \"at most two white balls.\" \n" ); document.write( " \n" ); document.write( "The probability of choosing at most two white balls = 216/220 = 54/55 |