document.write( "Question 1168580: Two marbles are drawn without replacement from a box with 3 white, 2 green, and 2 red and 1 blue marble: Find the probability: One marble is green and one marble is red \n" ); document.write( "
Algebra.Com's Answer #793155 by Theo(13342)![]() ![]() You can put this solution on YOUR website! the box has 3 white, 2 green, 2 red, 1 blue marble. \n" ); document.write( "if you draw 2 marbles from the box, you want to know the probability that one of those marbles is red and one of those marbles is green.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "couple of ways to solve this.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "one way is to use the combination formula. \n" ); document.write( "the number of ways you can get a set of 2 out of a set of 8 is c(8,2) = 28 \n" ); document.write( "the number of ways you can get a set of 1 green out of a set of 2 greens is c(2,1) = 2. \n" ); document.write( "the number of ways you can get a set of 1 red out of a set of 2 reds is c(2,1) = 2. \n" ); document.write( "the probability of getting a red and a green out of a set of 8 is therefore (2*2)/28 = 4/28 = 1/7.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "another way is to determine that the probability of getting a green and a red out of a set of 8 that contains 2 greens and 2 reds is: \n" ); document.write( "p(first green and then red) = 2/8 * 2/7 = 4/56. \n" ); document.write( "p(first red and then green) = 2/8 * 2/7 = 4/56. \n" ); document.write( "total probability is p(first green and then red) + p(first red and then green) = 8/56. \n" ); document.write( "simplify to get 1/7.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "both ways assume drawing without replacement. \n" ); document.write( "both ways get the same answer. \n" ); document.write( "the answer appears to be 1/7.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the combination formula says c(n,x) = n! / (x! * (n-x)!) \n" ); document.write( "then n = 8 and x = 2, that formula becomes 8! / (2! * 6!) \n" ); document.write( "8! can be shown as (8 * 7 * 6!) \n" ); document.write( "the formula becomes (8 * 7 * 6!) / (2! * 6!) \n" ); document.write( "6! cancels out, so the formula becomes (8 * 7) / (2 * 1) \n" ); document.write( "solve to get c(8,2) = 56/2 = 28. \n" ); document.write( "that was the denominator in the first way to solve the problem.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |