Probability that Both Player and Dealer are not Dealt Blackjack

combinatoricsprobability

Let us say we have a rather simple blackjack game between one dealer and one player with a single 52 card deck. We want to compute the probability that neither the dealer nor the player is dealt blackjack (initially). Let $A$ be the event that the player is dealt blackjack, $B$ the same, except for the dealer. We will compute:
$$
1 – \mathbb{P}(A \cup B) = 1 – (\mathbb{P}(A) + \mathbb{P}(B) – \mathbb{P}(A \cap B))
$$

We see that:
$$
\mathbb{P}(A) = \frac{{{16}\choose{1}} {{4}\choose{1}}}{52 \choose 2}
$$

As we have that out of the total number of hands we can be dealt, there are 64 possible hands that give us blackjack. Now, we compute the probability for the dealer, $\mathbb{P}(B)$. It seems that by symmetry, we may say this is the same as the probability for the player. However, my question here is, why is that so? Namely, would the order of dealing not matter? I.e if the dealer deals my cards first (which is usually the case, I think) would I not have to condition on the event that I am dealt blackjack first and use the fact that the dealer is working with a smaller deck?

Best Answer

The probabilities $P(B)$ and $P(A)$ are indeed equal, but $A$ and $B$ are not independent. After all, there are only four aces in the deck, and we can see two of them if both the player and the dealer have blackjack. We should expect $P(A\cap B)$ to be strictly less than $P(A)\cdot P(B)$.

As for the order - we just dealt out four cards face up, two to the player and two to the dealer. Do we really care what order we laid the cards on the table? No; what matters is which two cards the player got, which two cards the dealer got, and that the cards are all different. Either way you condition it to account for the smaller deck, the probability of double blackjack will be the same.

Related Question