document.write( "Question 228329: If you were to randomly select 3 movies from a selection of 29 movies, how many different lists of 3 could you have?
\n" );
document.write( "Re-arranging the 3 does NOT make a new list.\r
\n" );
document.write( "\n" );
document.write( "I tried to do 29*28*27 which = 21924 but I think that that includes all the 3 groups that are re-arranged.\r
\n" );
document.write( "\n" );
document.write( "How should I go about solving this problem? \n" );
document.write( "
Algebra.Com's Answer #169555 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! If you were to randomly select 3 movies from a selection of 29 movies, how many different lists of 3 could you have? \n" ); document.write( "------------------ \n" ); document.write( "You were counting arrangements of three objects. \n" ); document.write( "You want to count GROUPS of three objects. \n" ); document.write( "29C3 = 29!/[(29-3)!*3!] \n" ); document.write( "= (29*28*27)/(1*2*3) = 29*14*9 = 3654 \n" ); document.write( "========================= \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " |