Blackjack strategy: Difference between revisions

Content added Content deleted
(Task starts as a draft tasl.)
m (Minor tinkering with description)
Line 1: Line 1:
{{draft task}}
{{draft task}}
The objective of this task is to recreate and explore the following [http://www.blackjacktactics.com/blackjack/strategy/charts/single-deck/ Strategy charts].
The objective of this task is to recreate and explore the following [http://www.blackjacktactics.com/blackjack/strategy/charts/single-deck/ strategy charts] for the game of [[wp:Blackjack|blackjack]] (which is known by many other names as well).


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 2 for Blackjack;
* pays out 3 to 2 for Blackjack, and
: [http://www.blackjacktactics.com/blackjack/how-to-play/ Uses these rules].
* uses [http://www.blackjacktactics.com/blackjack/how-to-play/ 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.
Line 15: Line 15:


You should now create a function which randomly deals hands. Assuming I play 50 hands at a visit and visit everyday for a year applying the strategy defined by the tables you have created answer the following questions:
You should now create a function which randomly deals hands. Assuming I play 50 hands at a visit and visit everyday for a year applying the strategy defined by the tables you have created answer the following questions:
: How many days will I win/lose?
* How many days will I win/lose?
: What will be my biggest win?
* What will be my biggest win?
: What will be my biggest loss?
* What will be my biggest loss?
: What will I win/lose over the year?
* What will I win/lose over the year?