document.write( "Question 731105: A bag contains 12 red and 8 blue marbles. If you randomly select 2 marbles, what is the probability that they are the same color? \r
\n" );
document.write( "\n" );
document.write( "I feel like this is an nPr or a nCr, but I am unsure. \n" );
document.write( "
Algebra.Com's Answer #853026 by greenestamps(13258) You can put this solution on YOUR website! \n" ); document.write( "It's an nCr problem and not an nPr problem, because order does not matter. \n" ); document.write( "The total number of possible outcomes is choosing 2 of the 20 marbles: 20C2. \n" ); document.write( "The favorable outcomes are choosing 2 of the 12 red marbles AND 0 of the 8 blue marbles OR 2 of the blue marbles AND 0 of the 12 red marbles. Note that the \"AND\"s indicate multiplication and the \"OR\"s indicate addition: \n" ); document.write( "(12C2 * 8C0) + (8C2 * 12C0). \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "Or you can get the answer without using nCr, by looking at the probabilities of picking one marble at a time, as the other tutor does. \n" ); document.write( " \n" ); document.write( " |