document.write( "Question 364047: Suppose 9 cards are numbered with the 9 digits from 1 to 9. A 3-cards hand is dealt ,1 card at a time .How many hands are possible where:
\n" );
document.write( "a) Order is taken into consideration?
\n" );
document.write( "b) Order is not taken into consideration? \n" );
document.write( "
Algebra.Com's Answer #259648 by edjones(8007)![]() ![]() You can put this solution on YOUR website! a) \n" ); document.write( "nPr=n!/(n-r)! \n" ); document.write( "9P3=9!/6!=504 \n" ); document.write( ". \n" ); document.write( "b) \n" ); document.write( "nCr=n!/((n-r)!r!) \n" ); document.write( "9C3=9!/(6!*3!)=84 \n" ); document.write( ". \n" ); document.write( "Ed \n" ); document.write( " \n" ); document.write( " |