document.write( "Question 352504: Find the number of ways to draw a six-card hand with three cards of one suit and three cards of a second suit. \n" ); document.write( "
Algebra.Com's Answer #251902 by robertb(5830)\"\" \"About 
You can put this solution on YOUR website!
First, choose 2 out of 4 possible suits.
\n" ); document.write( "You can do this C(4,2) ways.
\n" ); document.write( "Once you have fixed the two suits, choose 3 out of 13 possible cards from one suit.
\n" ); document.write( "You can do this in C(13,3) ways.
\n" ); document.write( "For the other suit, you can choose 3 out of 13 cards also in C(13,3) ways.
\n" ); document.write( "Therefore the total number of ways of drawing 3 cards of one suit and 3 cards of another suit is
\n" ); document.write( "\"C%284%2C2%29%2AC%2813%2C3%29%2AC%2813%2C3%29\"=6*286*286=490,776
\n" ); document.write( "
\n" );