Blackjack strategy: Difference between revisions

Content added Content deleted
No edit summary
No edit summary
Line 4: Line 4:
Assume that my casino:
Assume that my casino:
: Uses a single deck;
: Uses a single deck;
: Does not allow Double after split.
: Does not allow Double after split;
: Pays out 3 to for Blackjack;
: [http://www.blackjacktactics.com/blackjack/how-to-play/ Uses these rules]
: [http://www.blackjacktactics.com/blackjack/how-to-play/ Uses these rules].


Begin by assuming the player's dealt hand contains no aces and is not a pair. Create functions which given the players dealt cards and the dealers exposed card returns the number of wins and losses for all possible continuations when the player either sticks or hits. Gather the results together, set a threshold at which you consider it wise to Double the bet and reconstruct the Hard Totals Table enhanced with precise probabilities.
Begin by assuming the player's dealt hand contains no aces and is not a pair. Create functions which given the players dealt cards and the dealers exposed card returns the number of wins and losses for all possible continuations when the player either sticks or hits. Gather the results together, set a threshold at which you consider it wise to Double the bet and reconstruct the Hard Totals Table enhanced with precise probabilities.