The House Always Wins: Simulating 5,000,000 Games of Baccarat a.k.a. Punto Banco

The House Always Wins: Simulating 5,000,000 Games of Baccarat a.k.a. Punto Banco

The associated GitHub repository with R code.

Past weekend, I visited the casino with some friends. Of all games, we enjoy North-American-style Baccarat the most. This type of Baccarat is often called Punto Banco. In short, Punto Banco is a card game in which two hands compete: the “player” and the “banker“. During each coup (a round of play), both hands get dealt either 2 or 3 cards, depending on a complex drawing schema, and all cards have a certain value. Put simply, the hand with the highest total value of cards wins the coup, after which a new one starts. Before each coup, gamblers may bet which of the hands will win. Neither hand is in any way associated with the actual house or player/gambler, so bets may be placed on both. All in all, three different bets can be placed in a game of Punto Banco:

  1. The player hand has the highest total value, in which case the player wins (Punto);
  2. The banker hand has the highest total value, in which case the banker wins (Banco);
  3. The player and banker hands have equal total value, in which case there is a tie (Egalité).

If a gambler correctly bets either Punto or Banco, their bets get a 100% payoff. However, a house tax will often be applied to Banco wins. For instance, Banco wins may only pay off 95% or specific Banco wins (e.g., total card value of 5) may pay off less (e.g., 50%). Depending on house rules, a correct bet on a tie (Egalité) will pay off either 800% or 900%. A wrong bet on Punto or Banco stands in case Egalité is dealt. In all other cases of wrong bets, the house takes the money.

Image result for punto banco casino

My friends and I like Punto Banco because it is completely random but seems “gameable”. Punto Banco is played with six or eight decks so there is no way to know which cards will be next. Moreover, the card-drawing rules are quite complex, so you never really know what’s going to happen. Sometimes both Punto and Banco get only two cards, at other times, the hand you bet on will get its third card, which might just turn things around. Punto Banco’s perceived gameability comes through our human fallacies to see patterns in randomness. Often, casino’s will place a monitor with the last fifty-so results (see below) to tempt gamblers to (erroneously) spot and bet on patterns. Alternatively, you might think it’s smart to bet against the table (play Punto when everybody else goes for Banco) or play on whatever bet won last hand. As the hands are dealt quite quickly in succession, and the minimal bet is often 10+ euro/dollar, Punto Banco is a quick way to find out how lucky you are.

Image result for punto banco scoreboard
Examples of Baccarat monitors, often placed next to a table.

So back to last weekend’s trip to the casino. Unfortunately, my friends and I lost quite some money at the Punto Banco table. We know the house has an edge (though smaller than in other games) but normally we are quite lucky. We often discuss what would be good strategies to minimize this houses’ edge. Obviously, you want to play as few games as possible, but that’s as far as we got in terms of strategy. Normally, we just test our luck and randomly bet Punto or Banco, and sparsely on Egalité.

As a statistical programmer, I thought it might be interesting to simulate the game and its odds from the bottom up. On the one hand, I wanted to get a sense of how favorable the odds are to the house. On the other hand, I was curious as to what extent strategies may be more or less successful in retaining at least some of your hard-earned cash.

In my simulations, I follow the Holland Casino Punto Banco rules, meaning a six-deck shoe and a Banco win with 5 pays out 50%. I did adopt the more lenient 9-1 payoff for Egalité though. Several hours of programming and some million simulated Baccarat hands later, here are the results:

  1. Do not play Baccarat / Punto Banco if you do not want to lose your money. Obviously, it’s best to not set foot in the casino if you can’t afford to lose some money. However, I eagerly pay for the entertainment value I get from it.
  2. You lose least if you stick to BancoDespite having only a 50% payoff when Banco wins with 5, the odds are best for Banco due to the drawing rules. Indeed, according to the Wizard of Odds, the house edge for Banco (1.06%) is slightly lower than that of Punto (1.24%).
  3. Whatever you do, do not bet on Egalité. Because most casino’s pay out 8 to 1 in case of a correctly predicted tie, betting on one seems about the worst gambling strategy out there. With a house edge of over 14%, you are better off playing most other games (Wizard of Odds). Although casino’s paying out a tie 9 to 1 decrease the house edge to just below 5%, this is still way worse than playing either Punto or Banco.

The figure below shows the results of the five strategies I tested using 50,000 simulations of 100 consecutive hands. Based on the results, I was reluctant to develop and test other strategies as results look quite straightforward: play Banco. Additionally, Wikipedia cites Thorp (1984, original reference unknown) who suggested that there are no strategies that will really result in any significant player advantage, except maybe for the endgame of a deck, which presumably requires a lot of card counting. If you nevertheless want to test other strategies, please be my guest, here are my five:

  1. Punto: Always bet on Punto.
  2. Banco: Always bet on Banco.
  3. Egalité: Always bet on Egalité.
  4. LastHand: Bet on the outcome of the last hand/coup.
  5. LastHand_PB: Bet on the outcome of the last hand/coup, only if this was Punto or Banco.
average_payoff_PB_50000s100h

The above figure depicts the expected value of each strategy over a series of consecutive hands played. Clearly, the payoff is quite linear, independent of your strategy. The more hands you play, the more you lose. However, also clear is that some strategies outperform others. After 100 hands of Baccarat, playing only Banco will on average result in a total loss below the amount you wager. For example, if you bet 10 euro every hand, you will have a loss of about 9 euro’s after 100 rounds, on average. This is in line with the ~1% house edge reported by the Wizard of Odds. Similarly, betting only Punto will result in a loss of about 130% of the bet amount, which is also conform the ~1.4% house edge reported by the Wizard of Odds. Betting on Punto or Banco based on whichever won last (LastHand_PB) performs somewhere in between these two strategies, losing just over 100% of the bet amount in 100 hands. Your expected losses increase when you just bet on whichever outcome came last, including Egalité, resulting in around ~-150% after 100 hands. This is mainly because betting on Egalité, which seems about the worst strategy ever, will result in a remarkable 493.9% loss after 100 hands.

Apart from these average or expected values, I was also interested in the spread of outcomes of our thousands of simulations. Particularly because gamblers on a lucky streak may win much more when betting on Egalité, as the payoff is larger (8-1 or 9-1). The figure below shows that any strategy including Egalité will indeed result in a wider spread of outcomes. Betting on Egalité may thus be a good strategy if you are by some miracle divinely lucky, have information on which cards are coming next, or have an agreement with the dealer (disclaimer: this is a joke, please do not ever bet on Egalité with the intention of making money or try to cheat at the casino).

boxplot_profit_PB_50000s100h.png

If you want to know how I programmed these simulations, please visit the associated github repository or reach out. I intend on simulating the payoff for various other casino games in the near future (first up: BlackJack), so if you are interested keep an eye on my website or twitter.

Join 1,411 other subscribers

27 thoughts on “The House Always Wins: Simulating 5,000,000 Games of Baccarat a.k.a. Punto Banco

  1. will you be able to share the 5 million data in below format? (i.e wizardofodds format)

    Following is a description of the fields for each hand:

    Field 1: Point value of player’s first card
    Field 2: Point value of player’s first card
    Field 3: Point value of player’s second card
    Field 4: Point value of player’s third card if taken, – otherwise
    Field 5: Point value of banker’s first card
    Field 6: Point value of banker’s second card
    Field 7: Point value of banker’s third card if taken, x otherwise
    Field 8: Point value of player hand
    Field 9: Point value of banker hand
    Field 10: Winning outcome (P = Player win, B = Banker win, T = Tie win)

    Example records.
    1,3,2,-,3,5,-,5,8,B
    1,4,5,-,0,0,-,9,0,P
    1,8,3,0,4,9,0,1,3,B
    1,8,5,0,7,0,-,3,7,B
    1,3,3,-,1,4,4,6,9,B
    1,0,0,0,9,4,1,0,4,B

    I work as a data scientist, my intention is not to build any best strategy, rather, trying to plot similarity patterns between shoes which can give us few hints at P90 values.

    For example, can you validate below statement?

    14th game in every shoe has chance of 56.2% to be Banker or Tie against 43.8% to be player. Like wise we can find out 10 to 20 different hand numbers and just play only those hands in a show to take the probability advantage.

    Like

  2. Statistical fact of baccarat is “Player tends to win if its first card is 789, else banker wins, and first card 6 is good for tie” .. so try to make your system play that way .. “predict” the first card and bet based on that

    HOW to predict it? Use the last 2 cards played to decide what to play; eg if 46 then 8 might be the next first card played, if 9J then K .. avoid intervals bigger than 4, like 5T (5 10) that suggests 15 or 2 card; or 6Q; in this case of bigger than 4 interval simply dont bet!

    can you make your system play like that and report the result?

    Like

  3. Statistical fact of baccarat is “Player tends to win if its first and third card is 789, else banker wins, then first card 6 is good for tie” .. so try to make your system play that way .. “predict” the first card (which is easier than the third) and bet based on that prediction

    HOW to predict it? Use the last 2 cards played to decide what to play; eg if 46 then 8 might be the next first card played, if 9J then K .. avoid intervals bigger than 4, like 5T (5 10) that suggests 15 or 2 card; or 6Q; in this case of bigger than 4 interval simply dont bet!

    can you make your system play like that and report the result? .. BTW I make a lot gambling this way! And actually there is another rule, reversing rule! That is when anytime I guess 789 plays out banker wins; so I just reverse it! When I predict 789 I bet banker; and when I predict non 789 I bet player .. so I just reverse the rule

    Like

  4. Is it possible to have a copy of the simulator? I would like to do some testing of my own and a simluator would do well

    Like

  5. Tabone seems to have cracked it when it comes to baccarat systems, his latest book for example, The Baccarat Two-Sided Strategy (BTSS): A Powerful Baccarat Strategy https://www.amazon.com/dp/B07RPXJKKW is supposed to be working well for many baccarat bettors I’ve read. Might be worth a try or put it through the simulator?

    Liked by 1 person

  6. Baccarat is a game of chance and no actual strategy exists in order to beat the odds. But, I have been hearing about this 1324 baccarat strategy and some says the strategy works. Have you tried it?

    Like

  7. I’m very interested in seeing the streaks from your data. Mostly revolving around the commonality of streaks. I’m wondering if there is a way to see what % of hands resulted with 1 in a row, 2, 3, 4, 5, 6 in a row and so on and so forth, up to whatever the longest streak is for the 5 million hands. Is there any way I could see this? I don’t know how to code, so any help you could offer would be greatly appreciated.

    Like

  8. Hello PaulVanDerLaken. Congratulations for your abilities in .r code to do this simulator, and thanks for have share it. I have download your file Puntobanco.r and the Rgui (32-bit) to run it, because i want to modify it to 8 decks, and the next card of the shoe, burned between every single result of the shoe (punto, banco, or tie), like they play in the casino in Portugal. But i am not even able to run your original code. i don’t now how to do it, so to modify it’s even harder for me. I am having 5 or 6 errors only running your original code. The first is:
    Erreur : Problem with `mutate()` input `Egalité`.
    x valeur manquante là où TRUE / FALSE est requis
    i Input `Egalité` is `map2_dbl(Result, outcome_egalite, ~compute_payoff(.x, .y))`.
    Run `rlang::last_error()` to see where the error occurred.
    Called from: signal_abort(cnd)
    My RStudio Version is 1.3.1093

    Like

  9. @paul van der laken,

    When you say “lasthand_pb” does it mean if the last hand winner was banco you would bet punto? and vice versa. Or does it mean if last hand was banco, bet banco again?

    Thank you for the detailed summary, much appreciated.

    Like

  10. I love how some “experts” say that the House Always Wins but yet they only tested ONE strategy! There are hundreds of strategies out there so how can you say that when you’ve only tested with one? It’s like saying that every invention was all developed without failures! That’s a bunch of BS!

    This article is a JOKE!

    Like

  11. Great article! Are you able to add to the program to add a card counting strategy. For example assigning each card a value and if the count goes in or down the bet switches between dealer and player.

    Like

Leave a comment