document.write( "Question 1150347: Two cards individually are drawn from a deck of 52 cards. Calculate the probability that the draw will include an ace and a nine. \n" ); document.write( "
Algebra.Com's Answer #771739 by greenestamps(13203)![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "First solution method: using the probabilities that each card, drawn one at a time, can produce the desired result. \n" ); document.write( "The first card can be either an ace or a nine -- probability 8/52 = 2/13. \n" ); document.write( "The second card can only be a nine if the first card was an ace, or vice versa -- probability 4/51. \n" ); document.write( "P(an ace and a nine) = (2/13)*(4/51) = 8/663. \n" ); document.write( "That first solution method is easily used to find the answer for this particular problem. \n" ); document.write( "For more complicated probability problems, you might need a more sophisticated method. For this problem, it could look something like this: \n" ); document.write( "You are choosing 2 of the 52 cards; the desired outcome is you get 1 of the 4 aces, 1 of the 4 nines, and 0 of the other 44 cards. The probability is \r\n" ); document.write( " C(4,1)*C(4,1)*C(44,0) (4*4*1) 16 8 8\r\n" ); document.write( " --------------------- = --------- = ------- = ----- = -----\r\n" ); document.write( " C(52,2) (52*51) 26*51 13*51 663\r\n" ); document.write( " -------\r\n" ); document.write( " (2*1) \n" ); document.write( " \n" ); document.write( " |