May 18, 2018  I was after some statistical information on the number of card dealt per hand, on average, for a heads up situation. This was the closest I got to getting the information but still does not answer the question really. Does anyone know where I can get some percentages on the average numbers of cards dealt head to head?

By Cleve Moler, MathWorks

Blackjack is the most popular casino game in the world. Using a basic strategy, a knowledgeable player can reduce the casino's advantage to less than one-half of one percent. Simulating blackjack play with this strategy in MATLAB® is both an instructive programming exercise and a useful parallel computing benchmark.

Blackjack is also known as '21.' The object is to get a hand with a value close to, but not more than, 21. Face cards are worth 10 points, aces are worth either 1 or 11, and all other cards are worth their numerical value. You play against the dealer. You each start with two cards. Your cards are dealt face up; one of the dealer's cards stays face down.

You signal 'hit' to receive additional cards. When you are satisfied with your hand, you 'stand.' The dealer then reveals the hidden card and finishes the hand. If your total ever exceeds 21, you are 'bust,' and the dealer wins the hand without drawing any more cards.

The dealer has no choices to make, and must draw on hands worth less than 17 and stand on hands worth 17 or more. (A variant has the dealer draw to a 'soft' 17, which is a hand with an ace counting 11.) If neither player goes bust, then the hand closest to 21 wins. Equal totals are a 'push,' and neither wins.

Hand

The fact that you can bust before the dealer takes any cards is a disadvantage that would be overwhelming were it not for three additional features of the game. On your first two cards:

  • An ace and a face card or a 10 is a 'blackjack,' which pays 1.5 times the bet if the dealer does not also have 21
  • You can 'split' a pair into two separate hands by doubling the bet
  • You can 'double down' a good hand by doubling the bet and receiving just one more card

Basic strategy was first described in the 1956 paper 'The Optimum Strategy in Blackjack,' published in the Journal of the American Statistical Association by four authors from the Aberdeen Proving Ground. It is now presented, with a few variations, on dozens of web pages, including Wikipedia. The strategy assumes that you do not retain information from earlier hands. Your play depends only on your current hand and the dealer's up card. With basic strategy, the house advantage is only about one half of one percent of the original bet.

My MATLAB programs, shown in the sidebar, use three functions to implement basic strategy. The function hard uses the array HARD to guide the play of most hands. The row index into HARD is the current total score, and the column index is the value of the dealer's up card. The return value is 0, 1, or 2, indicating 'stand,' 'hit,' or 'double down.' The other two functions, soft and pair, play similar roles for hands containing an ace worth 11 and hands containing a pair.

The most important consideration in basic strategy is to avoid going bust when the dealer has a chance of going bust. In our functions, the subarray HARD(12:16,2:6) is nearly all zero. This represents the situation where both you and the dealer have bad hands—your total and the dealer's expected total are each less than 17. You are tempted to hit, but you might bust, so you stand. The dealer will have to hit, and might bust. This is your best defense against the house advantage. With naïve play, which ignores the dealer's up card, you would almost certainly hit a 12 or 13. But if the dealer is also showing a low card, stand on your low total and wait to see if the dealer goes over 21.

Card counting was introduced in 1962 in Beat the Dealer, a hugely popular book by Edward Thorp. If the deck is not reshuffled after every hand, you can keep track of, for example, the number of aces, face cards, and nonface cards that you have seen. As you approach the end of the deck, you may know that it is “ten rich”—the number of aces and face cards remaining is higher than would be expected in a freshly shuffled deck. This situation is to your advantage because you have a better than usual chance of getting a blackjack and the dealer has a better than usual chance of going bust. So you increase your bet and adjust your strategy.

Card counting gives you a mathematical advantage over the casino. Exactly how much of an advantage depends upon how much you are able to remember about the cards you have seen. Thorp's book was followed by a number of other books that simplified and popularized various systems. My personal interest in blackjack began with a 1973 book by John Archer. But I can attest that card counting is boring, error-prone, and not very lucrative. It is nowhere near as glamorous—or as dangerous—as the recent Hollywood film '21' portrays it. And many venues now have machines that continuously shuffle the cards after each hand, making card counting impossible.

My original MATLAB program, written several years ago, had a persistent array that is initialized with a random permutation of several copies of the vector 1:52. These integers represent both the values and the suits in a 52-card deck. The suit is irrelevant in the play, but is nice to have in the display. Cards are dealt from the end of the deck, and the deck is reshuffled when there are just a few cards left.

This function faithfully simulates a blackjack game with four decks dealt without reshuffling between hands. It would be possible to count cards, but this shuffler has two defects: It does not simulate a modern shuffling machine, and the persistent array prevents some kinds of parallelization.

Average

My most recent simulated shuffler is much simpler. It creates an idealized mechanical shuffler that has an infinite number of perfectly mixed decks. It is not possible to count cards with this shuffler.

I have two blackjack programs, both available on MATLAB Central. One program offers an interface that lets you play one hand at a time. Basic strategy is highlighted, but you can make other choices. For example, Figures 1 and 2 show the play of an infrequent but lucrative hand. You bet $10 and are dealt a pair of 8s. The dealer's up card is a 4. Basic strategy recommends splitting the pair of 8s. This increases the bet to $20. The first hand is then dealt a 3 to add to the 8, giving 11. Basic strategy recommends always doubling down on 11. This increases the total bet to $30. The next card is a king, giving the first hand 21. The second hand is dealt a 5 to go with the 8, giving it 13. You might be tempted to hit the 13, but the dealer is showing a 4, so you stand. The dealer reveals a 10, and has to hit the 14. The final card is a jack, busting the dealer and giving you $30. This kind of hand is rare, but gratifying to play correctly.

Figure 1. Start of an atypical but important example: You are dealt a pair of 8s, and the dealer's up card is a 4. Basic strategy, highlighted in red, recommends splitting the pair.'>

Figure 1. Start of an atypical but important example: You are dealt a pair of 8s, and the dealer's up card is a 4. Basic strategy, highlighted in red, recommends splitting the pair.

Figure 2. The final outcome. After splitting, you double down on your first hand and stand on your second. The dealer goes bust, giving you a rare 3x win.'>

Figure 2. The final outcome. After splitting, you double down on your first hand and stand on your second. The dealer goes bust, giving you a rare 3x win.

My second program plays a large number of hands using basic strategy and collects statistics about the outcome.

Accelerating the Simulations with Parallel Computing

I like to demonstrate parallel computing with MATLAB by running several copies of my blackjack simulator simultaneously using Parallel Computing Toolbox. Here is the main program:

The matlabpool command starts up many workers (copies of MATLAB) on the cores or processors available in a multicore machine or a cluster. These workers are also known as labs. The random number generators on each lab are initialized to produce statistically independent streams drawn from a single overall global stream. The main program on the master MATLAB creates an array B, and then the parfor loop runs a separate instance of the sequential simulator, blackjacksim, on each lab. The results are communicated to the master and stored in the columns of B. The master can then use B to produce the plot shown in Figure 3. With 'only' 25,000 hands for each player, the simulation is still too short to show the long-term trend. The computation time is about 11 seconds on my dual-core laptop. If I do not turn on the MATLAB pool, the computation uses only one core and takes almost 20 seconds.

Figure 3. Four players in a parallel simulation. Green wins, red nearly breaks even, cyan muddles through, and blue should have quit while he was ahead.'>

Figure 3. Four players in a parallel simulation. Green wins, red nearly breaks even, cyan muddles through, and blue should have quit while he was ahead.

This run can also produce the histograms shown in Figure 4. The cumulative return from the four players is the dot product of the two vectors annotating the horizontal axis. The discrepancy between the frequency of $10 wins and $10 losses is almost completely offset by the higher frequencies of the larger wins over the larger losses. The average return and a measure of its variation are shown in the title of the figure. We see that in runs of this length, the randomness of the shuffle still dominates. It would require longer runs with millions of hands to be sure that the expected return is slightly negative.

Blackjack Hands Chart

Figure 4. Histograms for each player. The $10 bet is a push 9% of the time, a $10 win 32%, and a $10 loss 42%. Blackjacks yield $15 wins 4.5% of the time. The less frequent $20, $30, and $40 swings come from doubling down, splitting pairs, and doubling after splitting.'>

Figure 4. Histograms for each player. The $10 bet is a push 9% of the time, a $10 win 32%, and a $10 loss 42%. Blackjacks yield $15 wins 4.5% of the time. The less frequent $20, $30, and $40 swings come from doubling down, splitting pairs, and doubling after splitting.

Blackjack can be a surrogate for more sophisticated financial instruments. The first graph in Figure 5 shows the performance of the Standard & Poor's stock market index during 2011. The second shows the performance of our blackjack simulation playing 100 hands a day for each of the 252 days the stock market was open that year. The S&P dropped 14.27 points. Our blackjack simulation, which bet $10 per hand, lost $3860 over the same period. More important than these final results is the fact that both instruments show large fluctuations about their mean behavior. Over the short term, stock market daily behavior and card shuffling luck are more influential than any long-term trend.

Figure 5. The Standard & Poor's stock market index over one year versus 100 hands of blackjack per day for the same time. Short-term random fluctuations dominate any long-term trend.'>

Blackjack Hand Calculator

Figure 5. The Standard & Poor's stock market index over one year versus 100 hands of blackjack per day for the same time. Short-term random fluctuations dominate any long-term trend.

Published 2012 - 92052v00

References

  • Baldwin, R. R., Cantey, W. E., Maisel, H., and McDermot, J. P. “The Optimum Strategy in Blackjack,” Journal of the American Statistical Association, 51:429-439 (Sept.), 1956.
  • Thorp, E. O. Beat the Dealer. New York: Random House, 1962.
  • Wikipedia. http://en.wikipedia.org/wiki/Blackjack

Products Used

Learn More

View Articles for Related Capabilities

Blackjack, also commonly known as 21, is one of the most popular casino games in the world. Not only is it a hit on the casino floors, but it’s also big online. Aside from being so much fun to play, it’s also pretty simple to learn and master some basic strategies. Since it’s not too difficult of a game to pick up, it is also recommended for beginners. However, before playing for the first time, it’s a good idea to read up on some different strategies and get some practice in before gambling.

Another great thing about Blackjack is the house edge is one of the lowest you’ll be able to find at the casinos, which is on average around 0.5%, and sometimes even lower. Depending on the house, players usually have around a 45% chance of winning for each hand. As long as you completely understand how the game works and follow some basic strategies, you can have a great chance of walking away from the table a winner.

Speaking of having a good understanding of the game, it’s also important to learn the Blackjack hand signals before playing at a physical casino. Gambling without understanding the hand signals could possibly cause some problems, and in worse cases, cause you to lose. In this article, we’ll be going over these signals as well as discuss a couple different variations of the game (Face Up and Face Down Blackjack).

What are the most common Blackjack hand signals

If you’ve never been to a casino to play this popular game before, you should definitely learn the Blackjack hand signals beforehand. Listed below are the most common actions that will occur as well as the hand signals that go along with each of them.

  • Hit – is when you request another card from the dealer. The hand signal for this when you’re holding your cards is to simply scrape them on the table. However, the face up signal for this is to touch your finger on the table or by waving your hand towards yourself.
  • Stand – is when you want to “stick” or “stay” and don’t want to request any cards.
  • Double Down – is when you double your initial bet and receive one more card from the dealer, therefore you have the initial two cards as well as one more card from the dealer. The signal for this is to simply place the extra chips next to your initial bet.
  • Split a Pair – is when you split the initial two cards you are dealt, but only if they have the same value to each other. If you’ve been dealt two cards with the same value and would like to split them, simply place another bet that’s the same amount as the initial one, but in an area away from the original betting box. After you’ve done that, the dealer will then split the cards with separated bets, in order to create two different hands for you to play. The signal for this is to simply put more chips next to your original bet, but from outside of the betting zone.

Face Up Blackjack

Average Length Of Blackjack Hand

Face Up Blackjack or also known as Double Exposure Blackjack is another variation to the original game. As you may know, in the original game you and the dealer are dealt two cards, one facing up and one facing down. However, in Face Up you and the dealer are dealt two cards facing up. Some other differences are that you’re able to double your bet after splits or ties occur. Another difference is the amount of cards the dealer has. In the original version, the dealer uses one standard deck of 52 cards, but with this variation, the dealer holds 8 of the 52 card decks. The dealer also has to hit on a soft 17 and a blackjack hand tops any other hand of 21. On top of that, if you and the dealer have 21, you win rather than the dealer.

Below are the common hand signals when playing Face up:

Hit – to hit, you just need to tap on the table or point at your cards

Stand – simply wave one of your hands only over your cards

Double Down or Split – whatever you do, don’t touch your cards, but rather place another bet separated from your initial one. Afterwards, just put up one finger if you want to double, or hold up two fingers if you would like to split your cards.

Face Down Blackjack

Another variation is known as Face Down Blackjack. This version is when you are dealt two cards facing up. One advantage the player has over the dealer is if there’s a tie from Blackjack, the player wins instead of the dealer, however the dealer can win any of the other ties. Similar to Face Up, the game is also played with 8 of the standard 52 card decks. Another difference is you can only double with two of the same cards that are either a 9, 10 or 11.

Some of the common Face down signals are listed below:

Hit – in order to hit, you just need to scrape the table.

Stand – just move your cards underneath your chips, but without moving them.

Double Down or Split – turn your cards face up and place a second bet. Then, either hold up one finger to double or hold up two fingers to split the cards.

Overall, Blackjack is not a very complicatedgame to play and is pretty straightforward. Being able to remember the different hand signals for each of the Blackjack variations may take some time, however with a little practice you’ll be able to memorize all of them quickly. If you would like to have some fun and get some practice in, we highly recommend you to play on our Blackjack tables at Caesars.

Average Man Hand Length

Related posts: