document.write( "Question 1119661: A poker hand consists of five cards randomly dealt from a standard deck of 52 cards. The order of the cards does not matter. Determine the following probabilities for a 5-card poker hand. Write your answers in percent form, rounded to 4 decimal places.
\n" );
document.write( "a) Determine the probability that exactly 3 of these cards are Aces.
\n" );
document.write( "b) Determine the probability of selecting exactly 2 Aces and exactly 2 Kings
\n" );
document.write( "c) Determine the probability of selecting exactly 1 Jack. \n" );
document.write( "
Algebra.Com's Answer #735426 by greenestamps(13200)![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "These are all straightforward probability questions that can be answered using the \"n choose r\" concept and basic rules of probability. \n" ); document.write( "The number of possible hands is \"52 choose 5\": \n" ); document.write( "C(52,5) = 2598960. \n" ); document.write( "(a) To get exactly 3 aces, you need to choose 3 of the 4 aces and 2 of the other 48 cards. The number of ways to do that is \n" ); document.write( "C(4,3)*C(48,2) = 6768 \n" ); document.write( "The probability of getting exactly 3 aces is then 6768/2598960 = .0026 \n" ); document.write( "(b) To get exactly 2 aces and 2 kings, you need to choose 2 of the 4 aces, 2 of the 4 kings, and 1 of the other 44 cards. The number of ways to do that is \n" ); document.write( "C(4,2)*C(4,2)*C(44,1) = 1584 \n" ); document.write( "The probability is then 1584/2598960 = .00006 (.0001, to 4 decimal places) \n" ); document.write( "(c) To get exactly 1 jack, you need to choose 1 of the 4 jacks and 4 of the other 48 cards. The number of ways to do that is \n" ); document.write( "C(4,1)*C(48,4) = 778320 \n" ); document.write( "The probability is then 778320/2598960 = .2995 \n" ); document.write( " |