Wizardofodds Blackjack

admin

Get the latest Horse Racing, Greyhounds Racing and Harness Racing, Form, Odds and Tips from Wizard of Odds. Wizard Of Odds Blackjack 8 Deck Wizard Of Odds Blackjack 8 Deck Slot games are by far the most popular genre at the online casino. Their fun and exciting themes adorned with spectacular graphics, sound effects, and progressive jackpots make them a winning choice for any casino lover!

phoenixqueue
I'm interested in understanding the mathematics behind how the odds for the Blackjack sidebet 21+3 have been calculated.
For those who are unaware, 21+3 uses the player's first two cards and the dealer's first card to ascertain whether a win has occurred.
The odds as per the Wizard of Odds page for 8-decks are listed as:
TypePayoutTotalChanceReturn
Suited three of a kind1002,9120.0002440.024446
Straight flush4024,5760.0020630.082524
Three of a kind2561,5680.0051690.129213
Straight10368,6400.0309470.309465
Flush5700,9280.0588410.294207
Loser-110,753,5360.902736-0.902736

I'd like to understand how to calculate these programatically, although just understanding the mathematical process behind the calculation is probably enough.Odds
The original page is here.
Kind Regards,
Phoenixcharliepatrick
Thanks for this post from:
The page you refere to is https://wizardofodds.com/games/blackjack/side-bets/21plus3/
You have to work out all the permuations, and discount ones already done.
Consider 'Version 6' with 8 decks.
Suited three of a kind can be any of 52 cards, there are 8 or each card (e.g. 7 of diamonds).
The second card has to be the same (now there are only 7 left),
The third card has to be the same (now there are only 6 left).
So permutations are 52* (8*7*6/6) = 2912.
Straight flush
There are 4 suits and 12 ways to get a straight A23, 234, ... QKA (i.e. A thru Q can have a straight)
For each one there are 8 ways to get each card.
So permutations are 48 * 8 * 8 * 8 = 24,576.
Use similar logic for other hands (for trips subtract suited trips and straights subtract SF).
phoenixqueue
Thank you, that is a great explanation and I am going to get coding on putting this in action.
As a variation on the above, how would the outcomes be calculated in the event of a partial deck?
For example, if 30 random cards had been dealt and discarded (so 386 remain), how would I apply the same to calculate the updated probabilities in the case of Suited Three of a Kind (for example)?
charliepatrick
Thanks for this post from:
One way is to develop a spreadsheet. I know some people (e.g. miplet) use the makeup of the deck and work from there (adding each possible hand, e.g. 3 suited would be sum of N N-1 N-2 for each card).
If the cards are 30 random then it doesn't make any difference.
If the cards are specific (i.e. you know which they are) then if the above doesn't work it's probably best to do a simulation. If you're getting into developing a method to count cards and detect when the bet might be positive, then that probably gets complicated. There's a lot of code to develop, creating random shoes and you'll then code what the spreadsheet would hae done.
phoenixqueue
Thanks once again for your answer.
I believe I misled you when I said '30 random' cards. I mean 30 cards that I am aware of but they are randomly taken from the 8-decks.
So I'd like to programatically calculate how the odds differ dependent upon the remaining 386 cards.
Of course, a forum may be the wrong place to try to glean such information, but if you happened to know of any useful guides to get me started I would appreciate it. I'm a programmer by trade so not afraid to get my hands dirty :)
Thanks,
PQ
Blackjackcharliepatrick
Thanks for this post from:
There are two scenarios I see.
(i) Let's assume you are playing Blackjack online and can record the first 30 cards. The aim is to detect when a sidebet becomes in the player's advantage.
In this case create a spreadsheet where you can enter the cards gone, calculate the deck left, and work through all the hands that can be made from the modified deck.
(ii) Let's assume you want to develop a counting method that can be used in a live casino and detect an advantage.
(That's what I assumed when writing the last paragraph.)
It would take ages to analyse every combination of 30 cards, which is why you need to develop a method of running simulations and look for patterns. I'm guessing it would be based on having a large number of one suit having gone, or perhaps a large number of specific ranks.
You need to develop a method of 'counting', something you might use at the table. You have to work out what things you want to count, this means looking at 'Effect of Removal' etc. Then you also need to develop a good random number generator and method to shuffle the cards. Then you need to collate the results based on the counts.
btw Some people have the expertise to work through all the combinations of cards, especially when looking at poker games, but I've never done that for more than this many cards. Typically you have to narrow down the numbers (e.g. see that a deck missing As As As is the same as Ah Ah Ah.)
This is the right forum but I'm not aware of any books/guides that tell you exactly how to do all this. Personally I just learnt, looked up various algorithms etc. There are some ideas by others of how to categorise poker hands rather than running every combination.
phoenixqueue
Thank you once again for your detailed and useful response.
I've written some code already to calculate the chance of a Suited Three of a Kind, but it's returning exactly twice as many outcomes as per the formula you pointed out.
I'm struggling a little with the logic behind calculating this.
For any card in an 8-deck stack, you stated that the permutations are:

Where does the final /6 come from to make this 2912 instead of 17,472?
My faulty logic has me at this juncture:

However, my code is wrong. The answer should be 56 'chances' and I don't know how many 'not chances'.
I'm sure I'm being quite dim here and I apologise for it. I'd appreciate your continued insights into how I am not calculating this correctly.
charliepatrick
Thanks for this post from:
Consider the eight decks but you number every card; so deck 1's Ace of Diamonds is 1Ad, etc.
Then you have three Ace of Diamonds with any combination of {1Ad, 2Ad, ... 8 Ad}; The ways of doing this are (8*7*6)/6. This is because 1Ad 2Ad 3Ad is the same combination as 2Ad 1Ad 3Ad etc. Usually you divide by 6 as you don't care which order the cards come in, and this eventually should give a total for all hands of (416*415*414)/6.
btw when you said P(2nd card 1st card) then it's 7/415, but P(3rd card 2nd card) = 6/414.
phoenixqueue
I think I've made some progress since I posted this.
For an 8-deck game:
The chance is:

So I can now successfully calculate the correct odds.
However, to put it into context I need to find out how many combinations of cards there are. This is what I am stuck on now(!)

However, the correct answer is 11,912,160 and 2,912 combinations. This is the answer I have divided by 6. Why is it divided by 6?
The same calculation with 6 decks gives me a chance of ~0.000207447 and 30,079,920 combinations (giving 6,240 chances), but it should be 5,013,320 (giving 1,040 chances). It should be exactly divided by 6 again, but why?
phoenixqueue
I posted the above whilst you were posting your original reply. Thank you for the clarification regarding that. Of course, for 3 cards there are 6 permutations as order doesn't matter - I was being a bit slow then!
Thank you for clarifying this and all your help. I'm going to get back to my program now and get this finished off.
I really appreciate your time and effort helping me with this.

the house advantage calculated at the excellent Wizard of Odds site...

Imperfect BlackJack Rules at Wizard of Odds - Blackjack - Gambling

Survey of blackjack rules in Las Vegas and surrounding areas ... The fewer the decks, the better the odds are for the ... is the only Internet casino endorsed by the Wizard...

Wizard of Odds Blackjack - Michael Shackleford Blackjack Strategy

Las Vegas discussion forum - Imperfect BlackJack Rules at Wizard of Odds, page 1...

Blackjack Book Reviews - Wizard of Odds

Michael Shackleford, the Wizard of Odds, is one of the utmost authorities on blackjack and blackjack strategy...

Description: Books by Eliot Jacobson...
Author: Tyler

Description: Michael Shackleford's Website, The Wizard of Odds...
Author: Julian

Description: blackjack (21) with gambling expert Michael Wizard of Odds Shackleford...
Author: Jacob

Wizard of odds blackjack switch
Description: Here's a Basic Strategy table for blackjack under normal house rules...
Author: Gabriel

Wizard Of Odds Blackjack Card

Description: Free Bet Blackjack - Wizard of Odds...
Author: Wyatt

Description: the wizard of odds game show · the wizard of odds blackjack...
Author: Elijah

Description: Double Attack Blackjack - Wizard of Odds...
Author: Amelia

Description: Top Casino · Wizard of Odds · Casino Advisor...
Author: Justin

Description: wizard of odds blackjack...
Author: Noah

Description: For more information on blackjack, please visit my companion site, Wizard of...
Author: Michelle

Search results in category:

Wizard Of Odds Blackjack App

Blackjack - Probability - Ask the Wizard - Wizard of Odds

Blackjack in Macau has changed a lot between my first visit in 2007 and my ... on blackjack, please visit my companion site, Wizard of Odds...

-Deck to 8-Deck Blackjack

Blackjack Forums Blackjack - General ... What is everyones opinion on the wizard of odds simple strategy compared to basic ... I suppose you could use it as a very...

Play Blackjack for Free - Wizard of Odds

How can I determine the odds of flat betting ( no counting, no progressions , etc ) of being ahead in a negative game such as BJACK w/o counting with a .5...

Wizard of Odds Online Blackjack Blog

Free Blackjack casino game by the Wizard of Odds ... Play Blackjack for Free. Last Update: May 10, 2011. Iв m proud to finally add a blackjack game and trainer to...

Wizard of Odds - Blackjack and Card Counting Forums

Odds charts explaining and illustrating blackjack probabilities that affect your win rate...

Wizard Of Odds Blackjack Switch

Blackjack - Wizard of Odds

What would be the best way for one to win a blackjack tournament. I seem to do quite well in regular play, but can never come out in the top two to advance...