https://cherper.com/showlist2.asp?parent=52042
Examine blackjack Simulate the play Play and learn the best strategies. Rules of Blackjack Blackjack doesn't use a fair deck except for when the first card is dealt. The odds of receiving a card, shifts as the cards are dealt. We will do most of the analysis assuming that each card is randomly selected (shuffled before each deal) from a limitless deck. Then we will look at one, two, four, six, and eight-deck games. For our simulation, we can just generate a random number between 1 and 13, and allow a 1 to mean 1 or 11 and a 11, 12, or 13 to be valued as 10. For blackjack, we will first program the dealer's rules to see how often various scenarios play out, then we'll look at the basic rules, advanced rules, and then possibly card counting. Below is the results of my analysis
In 32,051 trials the dealer busts around 30% of the time and doesn't bust 70%. Dealer getting 20 is the highest percent which makes sense because there are 4 ten-value cards out of 13, which makes the odds of 4/13 or about a 31% chance of being dealt a 10 value (ie 10, Jack, Queen, or King) Download the spreadsheet from Blackjack.xlsm Press the Run once button to deal one hand Press the Run Many to run it over and over until you press Esc to stop the code. Run Once button
Run Many Button
Excersize Exercise Calculate the odds of the dealer busting with various up cards A - K The next thing we will do is determine the odds of doubling down. Add a chart and some more features
Let's develop and run a number of simulations of doubling down. |