[Math] Probability of drawing certain cards in Blackjack

probability

I'm interested in calculating the chance of receiving certain cards given the player's hand and the dealer's up-card after the dealer has "peeked" for Blackjack.

Typically, if the dealer shows an Ace or 10-value card (10,J,Q,K) the dealer will "peek" at their second card and check for Blackjack. If Blackjack is discovered all players (except those with Blackjack also) will lose immediately and the next round is dealt – this speeds up the game and thus speeds up casino profits.

If the dealer does not peek for Blackjack this calculation is easy:

For example, suppose the dealer shows a 4 and the player shows 2,3. Then the probability our next card will be a 5 is simply 4/49 (4 5's left in 49 remaining cards). The dealer's down-card is equally likely to be any of the 49 remaining cards and thus shouldn't affect the probability at all, we simply ignore it.

However, if the dealer shows a 10 and the player shows 2,3 and the dealer doesn't have Blackjack things are different. Intuitively, because we know the dealer doesn't have an Ace, we should be more likely to receive an Ace (or less likely to receive a non-Ace) – but I'm unsure how to calculate this exactly.

Any help?

Best Answer

However, if the dealer shows a 10 and the player shows 2,3 and the dealer doesn't have Blackjack things are different. Intuitively, because we know the dealer doesn't have an Ace, we should be more likely to receive an Ace (or less likely to receive a non-Ace) - but I'm unsure how to calculate this exactly.

You know that four cards are not in the deck 10,2,3, and another non-ace, leaving 48 cards in the deck.

The four aces may be anyhere in the deck with equal probability, so the probability the next card drawn is an ace is $4/48$.

$$\mathsf P(X=A\mid P_1=2, P_2=3, D_1=10, D_2\neq A) = \tfrac 4{48}$$

For other cards we must also consider the probability that it is the dealer's second card.   One of the kings, say, will be the dealer's second card with a probability of $4/(52-3-4)$. On condition that one is, the probability that one from the other three kings is the next card is $3/48$, and on condition that the dealer's second card also ins't a king, the probability that the next card is one from the four kings is is: $4/48$.   So by total probability, for any from the nine such cards that are not showing (or an ace):

$$\mathsf P(X=K\mid P_1=2, P_2=3, D_1=10, D_2\neq A) ~{ = ~\tfrac 4{45}\tfrac 3{48}+\tfrac{41}{45}\tfrac 4{48} \\[1ex]=~ \dfrac{11}{135}}$$

Similarly, for cards that are showing, such as 2,3,10:

$$\mathsf P(X=2\mid P_1=2, P_2=3, D_1=10, D_2\neq A) ~{ = ~\tfrac 3{45}\tfrac 2{48}+\tfrac{42}{45}\tfrac 3{48} \\[1ex]=~ \dfrac{11}{180}}$$


You can now work out probabilities if the player and dealer are showing two or three cads from the same kind.


Reality Check: $3\cdot\tfrac{11}{180}+9\cdot\tfrac{11}{135}+\tfrac 1{12} = 1$ as it ought right should.