My first efforts analyzing blackjack used infinite shoe composition. I assumed all uncounted cards to be 1/13 of the total cards the same as in a full shoe. So for Hi-Lo the high and low cards could vary from 0-10/13 of the total cards and the percent of 7-8-9 was always assumed to be 1/13 (each) of the total cards. Indices generated using this method are somewhat in accordance to what is published.cardcounter0 said:Before people start getting off track about uncounted cards, The book "Theory of Blackjack" by Peter Griffin (UCLA math professor and the math authority on blackjack) explains the mathematical proof behind cards that are not counted.
Uncounted cards remain normally distributed, no matter what the "count" is.
In a 6 deck shoe, there are 6 x 4 = 24 8s at the top of shoe. Suppose 3 decks are dealt out. Without counting anything, it is safe to assume there are 12 8s left in the half shoe. HiLo counts the 8 as 0, so it is essentially uncounted.
If the HiLo count was a really high +9? It is most likely there are 12 8s left. If the HiLo count was a really low -9? Most likely still 12 8s left.
The "density" of uncounted cards remains normal.
Also note if you are using KO, where the 7 has 1/2 the value of the other positive cards, in a high negative count KO is only half as effective in predicting a 7 as another low card. So in the classic 14 vs T situation, where 7 is the key card, HiLo is completely worthless for a index, and KO isn't much better.
More recently I got into computing actual EVs for any shoe composition for a finite number of decks. The hardest part was to be able to do the computing in a reasonable amount of time. Along the way I wrote a program that used a weighted average of all of the possible subsets for a given Hi-Lo or KO count at any given penetration. It turns out that the percent of uncounted cards is equal to 1/13 only when 50% of the shoe is left to be dealt. Below shows a Hi-Lo RC of +4 for a single deck at 3 different penetrations and lists the probability of each rank. I've used this program to refine insurance indices for Hi-Lo and true counted KO to take into account the hand composition. Anyway the percent of uncounted cards isn't always exactly 1/13.
I don't know why I lean on exact calculation analysis, but that's my approach.
Code:
Cards in deck=13 (TC=16.0)
p(2) = 0.04662
p(3) = 0.04662
p(4) = 0.04662
p(5) = 0.04662
p(6) = 0.04662
p(7) = 0.07537 (<1/13)
p(8) = 0.07537 (<1/13)
p(9) = 0.07537 (<1/13)
p(10) = 0.43264
p(1) = 0.10816
Cards in deck=26 (TC=08.0)
p(2) = 0.06154
p(3) = 0.06154
p(4) = 0.06154
p(5) = 0.06154
p(6) = 0.06154
p(7) = 0.07692 (=1/13)
p(8) = 0.07692 (=1/13)
p(9) = 0.07692 (=1/13)
p(10) = 0.36923
p(1) = 0.09231
Cards in deck=39 (TC=05.3)
p(2) = 0.06651
p(3) = 0.06651
p(4) = 0.06651
p(5) = 0.06651
p(6) = 0.06651
p(7) = 0.07744 (>1/13)
p(8) = 0.07744 (>1/13)
p(9) = 0.07744 (>1/13)
p(10) = 0.34810
p(1) = 0.08702