Martingale and Anti-Martingale — Why Doubling Does Not Beat the Book
The Martingale doubling system sounds mathematically elegant and emotionally comforting: "I cannot lose forever, so I will just double up until I win." The math says otherwise. This guide walks through the formal ruin probability, the worked 10-step example at -110 odds, the table-limit failure mode, and the reverse version — Anti-Martingale — which in its disciplined form becomes the Kelly Criterion.
Quick Calculator
Every gambler who has ever lost two bets in a row has at some point imagined the Martingale system. The logic is disarming. If a coin eventually comes up heads, and every time I lose I double my stake, then the eventual heads recovers all previous losses plus one base unit. Repeat forever and the profit grows by one unit for each winning streak. It feels like free money extracted from pure probability, and it has felt that way to gamblers for at least three hundred years. The system is older than most sports leagues.
The problem is that the world is not a frictionless probability space. Bankrolls are finite. Sportsbooks cap maximum bet sizes. Win probabilities on spread bets are not 50% — they are closer to 47.6% after the bookmaker's vig. And the geometric growth of the doubling sequence outruns any arithmetic growth in your recovered winnings. The mathematical statement is clean: with a finite bankroll and a fixed table limit, the probability of eventually busting out on any long enough Martingale run converges to one. Not "approaches a high number." Converges to exactly one.
This article treats Martingale and its reverse with the respect the topic deserves, because it is the single most common system recreational bettors adopt without realizing it, and understanding why it fails unlocks a much deeper understanding of bankroll management, variance, and the real shape of a long-run betting profit curve.
1. How Martingale Works — Formal Definition
The classical Martingale is defined on any near-even-money bet. Let the base unit be u. After each loss the next stake is doubled. After any win the sequence resets to u. On an even-money win, the n-th loss in a row is followed by a stake of u · 2^n, which recovers the cumulative loss u · (2^n − 1) and banks a profit of u.
# Stake sequence after k consecutive losses stake_k = u * 2^k # Cumulative amount at risk after n losses risk_n = u * (2^(n+1) - 1) # Profit after the n-th bet wins (following n-1 losses) profit = u * (net_odds) - u * (2^n - 1) # On true even money (net_odds = 1): profit = u * 1 - u * (2^n - 1) + u * (2^n - 1) = u # On -110 odds (decimal 1.909, net_odds = 0.909): # You win 0.909u but had to stake 2^(n-1) u on the winning bet. # For n = 4 (3 losses, 4th bet wins): # cumulative loss before winning bet = 7u # winning stake = 8u, winnings = 8u * 0.909 = 7.272u # net profit = 7.272u - 7u = 0.272u (not the full u!) # The missing u * (1 - 0.909) = 0.091u per step is # exactly what the vig steals from the Martingale engine.
2. Worked Example — 10-Step Martingale on -110
Consider a bettor with $10,000 bankroll, a base unit of $10, betting NFL spreads at -110 with an honest assumption of 50% true probability. The book's implied probability is 52.38%, so the bettor is already -4.55% EV per dollar wagered. What happens over a realistic run?
| Losing Streak | Next Stake | Cumulative at Risk | Probability of Streak | Expected Occurrences per 10,000 Bets |
|---|---|---|---|---|
| 0 | $10 | $10 | 100% | baseline |
| 1 | $20 | $30 | 50% | 5,000 |
| 3 | $80 | $150 | 12.5% | 1,250 |
| 5 | $320 | $630 | 3.13% | 313 |
| 7 | $1,280 | $2,550 | 0.78% | 78 |
| 8 | $2,560 | $5,110 | 0.39% | 39 |
| 9 | $5,120 | $10,230 | 0.20% | 20 |
| 10 | $10,240 | $20,470 | 0.098% | ~10 |
| 11 | $20,480 | $40,950 | 0.049% | ~5 |
| 12 | $40,960 | $81,910 | 0.024% | ~2 |
Read the table carefully. A streak of 10 consecutive losses at 50% per bet occurs with probability about 0.1%, which means in 10,000 independent bets you should expect it to happen roughly 10 times. On the 11th bet you would need to stake $10,240 — which exceeds the entire $10,000 bankroll. Bust. The "guaranteed" recovery is mathematically impossible once the required stake exceeds available funds, and the single loss of ten thousand dollars dwarfs every tiny $10 win that preceded it.
Now layer on the vig reality. True per-bet probability is 47.62% at -110, not 50%. The probability of 10 consecutive losses rises to (0.5238)^10 = 0.15%, a 50% higher bust rate. And the per-win profit shrinks from $10 to about $2.72 because every winning stake only returns 0.909 net. You wait through painful streaks for rapidly shrinking rewards, and you bust more often.
3. The Ruin Probability Formula
Classical Gambler's Ruin gives the exact probability of busting before reaching a target bankroll when betting at fixed stakes with probability p of each win. For Martingale the situation is different — the stakes are variable — but a clean approximation exists. Let B be the bankroll in base units and p the per-bet win probability. The bettor busts as soon as the losing streak length exceeds k_max = floor(log2(B+1)). Ruin probability during a single "Martingale cycle" (playing until either a win or bust) is simply the probability of k_max consecutive losses.
# Max affordable streak given bankroll B (base units)
k_max = floor(log2(B + 1))
# Ruin probability per cycle (p = probability of winning one bet)
P_ruin_per_cycle = (1 - p)^k_max
# Expected profit per cycle (assuming you survive)
E_profit = u * p_win_eventually - (1-p_win_eventually) * loss_if_bust
P_win_eventually = 1 - P_ruin_per_cycle
# For bankroll = 1,023 units (k_max = 9), p = 50%:
P_ruin_per_cycle = 0.5^9 = 0.00195 (0.195%)
E_profit = u * 0.998 - 1023u * 0.002 = 0.998u - 2.046u
= -1.048u per cycle
# Over 1,000 cycles the player LOSES on average 1,048 base units.
# Martingale converts many +1u wins into one giant loss, NET NEGATIVE.4. Table Limits — The Silent Killer
Even ignoring bankroll, every sportsbook and every casino has a maximum wager per market. In retail casino blackjack, typical table limits are $500 or $1,000 per hand. In online sports betting, per-market limits on recreational books often sit at $500 to $5,000 depending on the market's volume. A base-$10 Martingale player hits the $500 cap at the sixth stake — meaning the bettor can tolerate only five consecutive losses before the system silently fails. The system does not warn you. The book simply refuses the bet, the doubling chain breaks, and the accumulated loss cannot be recovered.
Books actively monitor for progression-betting patterns and reduce limits on accounts that appear to be running Martingale. A common pattern is that a recreational account will get its limits slashed to $100 per bet after a few doubling sessions, even if the gross dollar volume is small. The book is not concerned about losing money on the player — it is concerned about the eventual massive loss that ends the relationship. From the book's perspective, a player who appears destined to bust on one bet is a customer retention problem, not a customer acquisition one.
5. Anti-Martingale (Paroli) — The Reverse
Anti-Martingale inverts the rule: double after a win, reset after a loss. The emotional appeal is opposite. Instead of hoping a losing streak ends, the bettor hopes a winning streak continues. After three wins in a row from a $10 base, the stake is $80, and a four-in-a-row win would reset back to base plus $150 of profit banked. The downside is bounded: any single loss in the sequence costs only the current stake, not the geometric sum of all prior stakes.
The expected value is unchanged from flat betting, because the system adds no edge. What changes is the variance shape. Anti-Martingale produces many small losses and occasional large wins — a right-skewed distribution. Martingale produces many small wins and occasional catastrophic losses — a left-skewed distribution. For long-term bankroll survival, right-skewed distributions are vastly safer, because a single loss cannot wipe the account. But without underlying edge, even Anti-Martingale remains net negative after vig.
# Anti-Martingale with a 3-win cap (stop after 3 consecutive wins)
win_streak = 0
stake = u
for each bet:
if bet wins:
profit += stake * net_odds
win_streak += 1
if win_streak >= 3:
win_streak = 0 # lock in, reset
stake = u
else:
stake = stake * 2
else:
profit -= stake
win_streak = 0
stake = u
# Profit after 3 straight wins at -110:
# win 1: +0.909u (stake was u)
# win 2: +1.818u (stake was 2u)
# win 3: +3.636u (stake was 4u)
# Total = 6.363u on 7u accumulated stake = 90.9% ROI per cycle
# but requires 3 consecutive wins at true p = 0.5^3 = 12.5%6. Kelly — The Only Survivor
The Kelly Criterion is Anti-Martingale refined into its mathematically optimal form. Instead of fixed doubling after wins, Kelly sizes each bet as a fraction f* = (p · b − q) / b of current bankroll, where b is net odds, p is win probability and q = 1 − p. When the bankroll grows, stakes grow; when it shrinks, stakes shrink. No doubling rule is hard-coded, and no bankroll threshold triggers ruin.
The critical property is that Kelly maximizes expected logarithmic growth, which is equivalent to maximizing long-run compound return subject to zero probability of bankroll bust. It is the only progression system proven to be both growth-optimal and ruin-proof given a genuine edge. Without an edge, even Kelly degrades to flat betting (because the optimal fraction is zero) — Kelly refuses to stake anything on a negative-EV bet.
If you strip away the marketing and emotional appeal, the honest taxonomy of progression systems is: Martingale (mathematically doomed); Anti-Martingale at fixed cap (variance-reshaped but edge-neutral); and Kelly (optimally-sized Anti-Martingale with bankroll-preserving self-correction). See our full Kelly Criterion guide for the full derivation and Bankroll Management for sizing rules.
7. What Recreational Bettors Actually Experience
The worst feature of Martingale is how long it takes to break the player. A $10-base Martingale on 50/50 bets produces an average of about 2 wins per 3 bets in the short run, so the bankroll looks healthy — often up $50 to $100 over the first week — while the cumulative doubling liability is silently accumulating. The player mistakes early success for proof of concept. Then a streak of 8 or 9 losses hits, the balance disappears, and the player is left with a story of "I was up $800 and then one bad night took it all."
This pattern is visible in account-level data from offshore books that tolerate progression betting: 80%+ of Martingale accounts last less than 90 days, and median final balance is negative despite median daily balance being positive. The variance structure trades the steady trickle of vig for a single lottery-draw loss event. The expected value is identical but the subjective experience — small daily wins cut short by a devastating single session — is actively psychologically harmful. Many problem-gambling cases trace back to Martingale-style systems for exactly this reason.
8. The Only Defensible Uses of Martingale Ideas
If you cap the doubling at 3 levels (max stake = 4u) and accept a fixed 4u max session loss, Martingale becomes a variance-shaping tool rather than a bankroll-destroying one. Still -EV by the underlying vig, but the bust risk is bounded.
Some sportsbooks offer "bet $10, get $10 free if it loses" promotions. A single-level doubling that triggers only on a lost free bet can mathematically extract positive EV from the promotional subsidy. This is exploitation of the promo, not of Martingale itself.
Academic researchers use Martingale as a pedagogical example to derive Gambler's Ruin, expected-value invariance under rebalancing, and the impossibility of staking-based edge creation. It is valuable classroom material, not a profitable bettor system.
If you have a real +EV betting model, running fixed-cap Anti-Martingale with 2-3 streak reset produces a right-tail-rich distribution that matches many bettors' psychological preference. Still beaten by Kelly in raw growth, but more fun to play.
9. Frequently Asked Questions
Does Martingale work in roulette or blackjack?
No, for the same reason it fails in sports betting. Roulette red/black has 47.37% win probability (European) or 47.37%/47.37% (American), so the house edge is structural. Blackjack has a 40-50% win probability per hand before push adjustments, which makes it worse than roulette for pure Martingale. Table limits and bankroll finiteness guarantee eventual ruin.
Can I use Martingale on 2.00+ odds to reduce the problem?
Doubling on above-even odds requires stakes less than double to recover. On 3.00 decimal odds you only need to increase the stake by 50% each loss. But such odds imply win probability under 33.3%, which means streaks of 10+ losses happen in under 600 bets. You move the bust threshold around but do not remove it.
What if I only Martingale after a losing streak of 3+ against?
You are committing the Gambler's Fallacy. Past outcomes do not change future outcomes on independent trials. Starting the sequence after observing a losing streak does not lower the probability of another losing streak. It merely reduces the number of doubling cycles you play, which slightly delays bust without eliminating it.
Is there a Martingale that works on +EV bets?
If each underlying bet is itself +EV (rare without a model), then any stake plan produces positive expected value. Flat betting on +EV bets dominates Martingale on +EV bets, because flat avoids the ruin risk. If you have +EV, you want Kelly; if you do not have +EV, no staking plan saves you.
How does Martingale compare to the D'Alembert system?
D'Alembert adds one unit after a loss and subtracts one after a win, instead of doubling. The growth is linear, not geometric, so the ruin timeline is much longer — but it is still ruin-prone in the long run because the underlying bets remain negative EV. D'Alembert is a gentler Martingale, not a fundamentally different system.
Should I use Martingale in a tournament or freeroll situation?
Sometimes, yes. Tournament formats with fixed bankrolls and a single winner reward high variance. A short-cap Martingale used as a variance generator can rationally increase the probability of finishing in the prize positions, at the cost of increasing the probability of finishing zero. For cash play, never.
Size bets with the Kelly Criterion, estimate ruin probability via risk of ruin, and keep session liabilities within your bankroll management plan.
Responsible gambling notice. Progression betting systems are associated with accelerated bankroll depletion and are a frequent entry point into problem gambling behaviors. This article is educational and is not a recommendation to wager using any system discussed. Stake only what you can afford to lose. For support with problem gambling visit BeGambleAware.org or call 1-800-GAMBLER (US). Must be of legal betting age in your jurisdiction.