document.write( "Question 89947: how many five-poker hands consisting of the following distribution are there?
\n" ); document.write( "a- aflush ( all five cards of a signle suit)
\n" ); document.write( "b- theree of kind (three aces and two other cards)
\n" ); document.write( "c- two pairs ( two aces, two kings and one other card)
\n" ); document.write( "d- A straight ( all five cards in a sequence)
\n" ); document.write( "

Algebra.Com's Answer #65307 by stanbon(75887)\"\" \"About 
You can put this solution on YOUR website!
how many five-poker hands consisting of the following distribution are there?
\n" ); document.write( "a- aflush ( all five cards of a signle suit)
\n" ); document.write( "# of ways to pick a suit = 4
\n" ); document.write( "# of ways to get 5 of the 13 cards 13C5
\n" ); document.write( "Total # of flush hands = 4*13C5
\n" ); document.write( "===================
\n" ); document.write( "b- three of kind (three aces and two other cards)
\n" ); document.write( "# of ways to pick three aces = 4C3 = 4
\n" ); document.write( "# of ways to pick two other cards = 48C2
\n" ); document.write( "# of ways full house hands = 4*48C2
\n" ); document.write( "-----------------------
\n" ); document.write( "c- two pairs ( two aces, two kings and one other card)
\n" ); document.write( "# of ways to pick two aces = 4C2 = 6
\n" ); document.write( "# of ways to pick two kings = 4C2 = 6
\n" ); document.write( "# of ways to pick one other card = 44C1 = 44
\n" ); document.write( "Total # of ways to get 2 aces, 2 kings, one other = 6^2*44
\n" ); document.write( "--------------------------------
\n" ); document.write( "d- A straight ( all five cards in a sequence)
\n" ); document.write( "# of ways to get a straight pattern of 5 cards = 9
\n" ); document.write( "# of ways to pick the 5 cards 4^5
\n" ); document.write( "# of straight hands = 9*4^5
\n" ); document.write( "==============
\n" ); document.write( "Cheers,
\n" ); document.write( "Stan H.
\n" ); document.write( "
\n" ); document.write( "
\n" );