Why Card Counting Doesn't Work on Most Online Blackjack (And Where It Actually Does)
Why Card Counting Doesn't Work on Most Online Blackjack (And Where It Actually Does)
I get asked this question constantly: "Can I use your calculator to beat online blackjack?"
The honest answer is: it depends entirely on which online blackjack you mean. Most of it, no — the math makes counting structurally impossible, no matter how good you are or what software you use. But there's one category, live-dealer blackjack streamed from a real table with a real shoe, where the same deck-depletion math that works in a physical casino still applies. I've written a follow-up, Legal, Real-Time, and Finally Public: The First Card Counting Calculator for Online Blackjack, that goes into that case in detail. This post explains why the two are so different.
The Core Principle of Card Counting
Card counting works because of a simple fact: cards that have been dealt cannot be dealt again until the shoe is reshuffled.
In a physical casino with a 6-deck shoe, if you've seen twenty 10-value cards come out in the first two decks, you know the remaining four decks are relatively poor in 10s. Conversely, if you've seen very few 10s, the remaining shoe is rich in them—and that's when you have an edge.
This is called deck depletion, and it's the entire foundation of advantage play.
How Online Blackjack Destroys This
Online casinos use one of two methods, both of which eliminate deck depletion entirely:
Method 1: Shuffle After Every Hand
Most online blackjack games shuffle the virtual deck after every single hand. You can verify this by reading the game rules (usually hidden in a small "i" button).
What this means mathematically:
- Every hand starts from a fresh, complete shoe
- The composition is always 4/13 ten-value cards (~30.8%)
- Previous hands provide zero information about future hands
- The true count is always effectively zero
There's no memory between hands. You're playing basic strategy against a fixed house edge, forever.
Method 2: Random Number Generators (RNGs)
Even when an online game appears to use a shoe that depletes, the underlying system is typically an RNG that simulates card distribution without actually tracking a finite deck.
Here's a simplified version of how this might work:
def deal_card():
# This doesn't track what's been dealt
# Every call is independent
return random.choice(['2','3','4','5','6','7','8','9','10','J','Q','K','A'])
Each card is drawn from a fresh probability distribution. The "shoe" is theatrical—a visual representation that has no bearing on the actual mathematics.
Some RNG implementations do simulate a finite shoe, but shuffle it continuously in the background, which has the same effect as Method 1.
Live Dealer Games: Where the Math Still Holds
"But what about live dealer blackjack? That's a real shoe!"
Right — and this is the category everything above doesn't apply to. Live dealer games use physical cards, dealt by a human, from a real shoe filmed on camera. Deck depletion isn't theoretical here; it's exactly the same phenomenon that makes counting work at a physical table. If twenty 10-value cards have come out of the shoe, the remaining cards are genuinely poorer in 10s, whether you're standing at the table in Macau or watching the stream from your couch.
That doesn't mean it's easy, or that every live table is worth counting. There are real constraints:
Penetration limits: Live dealer shoes are typically shuffled after 50% penetration or less. In a 8-deck shoe, you might only see 4 decks before a shuffle. That reduces how often you'll see a strongly favorable count, and how big your edge is when you do.
Bet limits: Online live dealer tables often have tighter bet spreads than a high-limit pit game. If the minimum is €10 and maximum is €500, your spread is 1:50, which is actually generous by physical-casino standards — but you can't "wong in" (join mid-shoe when the count is already high) because most tables seat you before the shoe starts.
Bet correlation is easy to log: Every bet you place is timestamped and tied to your account. An operator that wanted to analyze bet-size-vs-count correlation could do it trivially with software — the same math I discuss in my Excel-to-web post. In practice, most operators don't bother, because unlike a physical casino they aren't watching a single table lose money to one player in real time — but it's worth knowing the data exists.
Session data: The operator knows exactly when you join, when you leave, and how long you played. None of this makes counting illegal — it just means the old camouflage tricks (leave when the count goes negative, vary your bets) matter less than the math itself.
None of this makes the count fake. It just means live-dealer online counting rewards patience — picking tables with good penetration and playing enough hands for the edge to show up — over aggressive bet spreading. I go through what a calculator can and can't do about all of this in the follow-up post.
What Casinos Actually Worry About (On RNG Tables)
If RNG blackjack isn't vulnerable to counting, what are online casinos concerned about on those games?
Bonus abuse: Exploiting sign-up bonuses and promotions with low-variance play. This is a mathematical edge, but it's one-time and casinos have gotten sophisticated at detecting it.
Collusion in poker: Players sharing hole card information across multiple accounts.
Software exploits: Bugs in game logic, timing attacks, or RNG weaknesses. These are rare and illegal, but they're what security teams actually focus on.
Money laundering: Using casino accounts to move funds. This is a compliance issue more than a gaming one.
Card counting doesn't even make the list for RNG play — the architecture makes it irrelevant there. Live-dealer tables are a different story, which is exactly why they're worth the extra section above.
The Honest Math
Let me be direct about expected value:
| Game Type | House Edge (Basic Strategy) | Countable? |
|---|---|---|
| Online RNG Blackjack | 0.4% - 0.6% | No — every hand is a fresh, complete shoe |
| Live Dealer (50% pen) | 0.4% - 0.6% | Yes — smaller, slower edge than a physical casino, but real |
| Physical Casino (75%+ pen) | -0.5% to +1.5% | Yes |
The "countable" range for physical casinos and live dealer both depend on the count and how much penetration you get. With good penetration and proper bet sizing, skilled counters can achieve a 0.5-1.5% edge at a physical table. Live dealer typically gives you less penetration and a tighter bet spread, so the edge is smaller and takes longer to realize — but it's not zero, and it's not fake.
RNG online blackjack is the one category where none of this applies, no matter how good your counting is or what software you're running. There is no shoe to deplete.
Why I Built the Calculator Anyway
So why build a tool for a technique that only works in some of the places you might play?
Four reasons:
-
Physical casinos still exist. Las Vegas, Macau, local card rooms—these are environments where counting works best. If you're going to play there, understanding the math transforms gambling into something closer to informed investing.
-
Live-dealer online blackjack is real blackjack. A real shoe, real depletion, real math — just with tighter constraints than a pit game. That's exactly the case I cover in the follow-up post, and it's why the calculator runs in your browser: you can track a live-dealer shoe from your own device while you play, legally, without needing to memorize anything.
-
Understanding the math is valuable on its own. Knowing why you have an edge (or don't) is the difference between gambling and advantage play. Even if you never count cards, understanding probability, expected value, and variance makes you a better decision-maker.
-
Training before real play. You can't practice counting at a live table without risking money. Using a calculator to internalize true count adjustments and optimal strategy deviations means you arrive prepared, whether that's a casino floor or a live-dealer stream.
The Bottom Line
If someone is selling you a system to beat RNG online blackjack through card counting, they're either confused or lying — that game genuinely cannot be counted. But don't let that discourage you from live-dealer tables, where a real shoe means the math you're learning still applies, just at a smaller scale than a physical casino.
The house always has a way of protecting itself. Understanding how they do it — and where the protection genuinely doesn't apply — is the first step to finding the situations where you can actually turn the tables.
Want to see exactly how this plays out? Read Legal, Real-Time, and Finally Public: The First Card Counting Calculator for Online Blackjack, or try the calculator and see how optimal decisions change as the deck composition shifts.
Curious? Try it yourself
The demo is free and runs right in your browser — no sign-up needed. You get 80 practice cards per session, enough to get a feel for how composition-dependent strategy actually works.
Try the Card Counting App Free →