Playing Blackjack

You are playing blackjack at the Turning Stone Casino. They are using a single standard deck of 52 playing cards, and have already played out the hands of all the players before you. The cards that you see on the table are:

J 9            A 5 7 8            10 2 K            6 6          ? 9
hand 1      hand 2            hand 3             you        dealer

The dealer has one card turned down that you cannot see, denoted "?".

The rules of blackjack are: all cards count their face value; J, Q, and K count as 10; aces A count as 1 or 11 at the players choice. You want to draw cards and score as close as possible to 21 without going over.

a) It is your turn to draw or hold. If you draw a card, what is the probability that you will go over 21?

b) What is the probability that you will end up with exactly 21?

c) You actually draw a 6. How likely was that?

d) After you draw 6 in part (c), you have a total of 18. What is the probability that the dealer already has a total greater than 18?

Solution:

a) We will go over 21 if we draw a card of value 10. There are 16 such cards in a standard 52 card deck: 4 Ks, 4 Qs, 4 Js, 4 10s (henceforth we will denote all these cards as "10"s). Of the 13 cards on the table, there are 3 cards that we know are 10s, plus the unknown card "?" of the dealer which might or might not be a 10.

The probability we will draw a 10 depends on whether "?" is a 10 or not. If "?" is a 10, then there are 4 10s on the table, and so 12 10s left in the deck. Since the deck contains 39 remaining cards, we have:

prob to draw a 10 if "?" is a 10 = 12/39

If "?" is not a 10, then there are only 3 10s on the table, and so 13 10s left in the deck. Since the deck has 39 cards remaining, we have:

prob to draw a 10 if "?" is not a 10 = 13/39

Now we need to figure out the probability that "?" is a 10 or not. Aside from "?" itself, there are 12 cards on the table, 3 of which are 10s. "?" clearly cannot be one of these 12 cards. It must be one of the 40 other cards, 13 of which are 10s. Hence:

prob "?" is a 10 = 13/40

The probability "?" is not a 10 is just 1-(13/40), since "?" either is or is not a 10, and so the probability for these two mutually exclusive events must sum to unity. Hence:

prob "?" is not a 10 = 27/40

Now we need to combine the above pieces to get our answer. We can divide up all outcomes in which we do draw a 10 into two mutually exclusive categories: (1) "?" is a 10, and (2) "?" is not a ten. The total probability is therefore the sum of probabilities for the outcome to be in each category, i.e.

prob draw a 10 = (prob to draw a 10 if "?" is a 10) x (prob "?" is a 10)

                         + (prob to draw a 10 if "?" is not a 10) x (prob "?" is not a 10)

                        

Note, now that we did the calculation the long way, we see that the answer is the same was we would have gotten if we had completely ignored the card "?", i.e. assumed it was not on the table. In that case the probability to draw a 10 is just the 13 10s not face up on the table, divided by the 40 cards not face up on the table. This works out correctly because, since we do not know anything about the value of "?", it plays a role identical to any of the 39 cards remining in the deck. This way of thinking is a bit subtle, so if you don't see it, the long way of doing the calculation as done above is the proof that it really is so.

b) For us to end up exactly with 21 we need to draw a 9. There are 4 9s in the deck, two of which are face up on the table. We can again do the problem two ways. The long way as above is:

prob draw a 9 = (prob to draw a 9 if "?" is a 9) x (prob "?" is a 9)

                       + (prob to draw a 9 if "?" is not a 9) x (prob "?" is not a 9)

                      

The short way is to ignore "?". There are then 2 9s left in 40 cards, so the probability to draw a 9 is 2/40 = 0.05, the same answer as above.

c) There ar 4 6s in the deck, two of which are face up on the table. To get the probability we draw a 6, we can use the "short" method. There are 2 6s left in 40 cards. The probability we drew a 6 is therefore

2/40 = 0.05

d) We have drawn a 6. There are now 13 cards face up on the table plus "?". The probability that the dealer already has a total greater than 18 is the probability that "?" has value 10, or is an Ace (which can count as 11 giving the dealer 20). There are 20 cards in the deck which are either 10 or A. Four of these cards are face up on the table, so 16 remain in the 39 cards that are not face up on the table. "?" is equally likely to be any of these 39 cards. The probability the dealer already has greater than 18 is therefore:

16/39 = 0.41