0
$\begingroup$

Find the probability that a poker hand of 5 cards will contain no card smaller than 7, given that it contains at least 1 card over 10, where aces are treated as high cards.

  • 1
    This is not a 'do my homework for free' service. Show us what you've tried!!!2017-01-11
  • 0
    Someone voted up this post! @barakmanos.2017-01-11
  • 1
    @MithleshUpadhyay: Yes, I was wondering about that too. But it happens a lot (in both directions, BTW). The voting habits here are indeed mysterious sometimes.2017-01-11
  • 0
    It is a problem of conditional probability, and it was addressed verbatim previously [here](http://math.stackexchange.com/q/462079/152225).2017-01-11

1 Answers 1

0

Let $ A $ be the event "poker hand of 5 cards contains no card $ < $ than 7," and let $ B $ be the event "poker hand of 5 card contains at least 1 card $ > $ 10."

You need to use the conditional probability rule, i.e. $ P(A|B) = \frac{P(A \cap B)}{P(B)} $.

Note: there are 52 cards in total, including: 1) 16 cards $ \geq 10 $, 2) 32 cards $ \geq 7 $, and 3) 16 cards $ \geq 7 $ and $ \leq 10 $

Part 1: $ P(B) $

Let $ X $ be the number of cards over 10 in a poker hand of 5 cards. Then $ X \sim Hypergeometric(N=52,n=5,k=16). $

$ P(B) = P(X \geq 1 ) = 1 - P(X=0) = 1 - \frac{{{16}\choose{0}} \times {{52-16}\choose{5-0}} } {{52}\choose{5}} = 1 - \frac{{{36}\choose{5}}}{{{52}\choose{5}}} = \frac{{{{52}\choose{5}}} - {{36}\choose{5}}}{{{52}\choose{5}}} $

Part 2: $ P(A \cap B) $

For this part, it is easiest to use combinatorics.

You can start by looking at the different possible 5-card hands that contain no card $ < $ 7. Since there are 32 cards $ \geq $ 7, then there are $ {32}\choose{5} $ such hands.

To account for the second condition (i.e. that you must also have at least one card $ > $ 10), you must subtract all of the hands that do NOT have at least one card $ > $ 10. How many hands within the above subset don't have at least one card $ > $ 10? Since there are 16 cards $ \geq 7 $ and $ \leq 10 $ , we find that there are $ {16}\choose{5} $ such hands.

Putting this all together, we get $ P(A \cap B) = \frac{ {{32}\choose{5}} - {{16}\choose{5}} }{{52}\choose{5}} $.

Final answer: $ P(A|B) $

$$ P(A|B) = \frac{P(A \cap B)}{P(B)} = \frac{\frac{{{{52}\choose{5}}} - {{36}\choose{5}}}{{{52}\choose{5}}}}{\frac{ {{32}\choose{5}} - {{16}\choose{5}} }{{52}\choose{5}}} = \frac{{{{52}\choose{5}}} - {{36}\choose{5}}} {{{32}\choose{5}} - {{16}\choose{5}}} $$

  • 0
    can you make me understand P(A^B) under part 2?2017-01-12
  • 0
    @utkarshtripathi There are a total of $ {52}\choose{5} $ hands that you can get in a 5-hand poker game. To find the probability of obtaining a certain set of hands that correspond to an event A, you must find the number of different hands that correspond to the event A. Then you evaluate $ P = \frac{\#(A)}{{{52}\choose{5}}} $. How many hands are have at least one card $ > 10 $ and no card $ < 7 $?2017-01-12
  • 0
    @utkarshtripathi To calculate $ P(A \cap B) $: a) find the total number of hands that have no card $ < 7 $. This will include hands that have at least one card $ > 10 $ and hands that have no card $ > 10 $. b) find the total number of hands that have no card $ > 10 $, and subtract from the value obtained in a).2017-01-12