From price to probability — one equation
Implied probability is the most fundamental transformation in sports betting. Every odds quote — American, decimal, fractional, Hong Kong, Malay, Indonesian — is a probability dressed up in display formatting. The formula is the same regardless of format:
# Universal formula implied_probability = 1 / decimal_odds # Examples decimal 2.00 → 50.00% decimal 1.50 → 66.67% decimal 3.50 → 28.57% decimal 1.10 → 90.91% decimal 10.0 → 10.00%
Format conversion cheat sheet
| Format | Formula → implied | Example → implied |
|---|---|---|
| Decimal | 1 / decimal | 2.50 → 40.00% |
| American (+) | 100 / (odds + 100) | +150 → 40.00% |
| American (−) | |odds| / (|odds| + 100) | -150 → 60.00% |
| Fractional | denom / (num + denom) | 5/2 → 28.57% |
| Hong Kong | 1 / (HK + 1) | 1.50 → 40.00% |
| Malay (+) | 1 / (M + 1) | 0.50 → 66.67% |
| Malay (−) | |M| / (|M| + 1) | -0.50 → 33.33% |
| Indonesian (+) | 1 / (I + 1) | 2.50 → 28.57% |
Every professional bettor stores these conversions in a spreadsheet or function — there is no excuse for eyeballing.
The overround problem

Raw implied probabilities always sum above 100% in a real sportsbook market. This is the structural fingerprint of vig.
# NFL spread: Cowboys -3 (-110) vs Eagles +3 (-110) implied_DAL = 110/210 = 52.38% implied_PHI = 110/210 = 52.38% sum = 104.76% # overround # Fair (no-vig) probability fair_DAL = 52.38 / 1.0476 = 50.00% fair_PHI = 52.38 / 1.0476 = 50.00%
The 4.76% overround is the book's commission. Until you remove it, you cannot honestly say what the book believes. Raw implied probabilities are inflated estimates — useful for quick orientation, dangerous for actual modeling.
Why this matters — the bettor's workflow
- Read the price. Lakers -150, Celtics +130.
- Compute implied probabilities. 60% and 43.48%. Sum = 103.48%.
- Strip vig. Fair: 57.98% Lakers, 42.02% Celtics.
- Compare to your model. If your model says Lakers win 55%, the book thinks they're 3 points stronger than your view — the bet is -EV.
- Compute EV if betting Celtics. If your model says Celtics 45%: EV = 0.45 × 2.30 − 1 = +3.5%.
Without step 3 (vig removal), your edge calculation is biased by the overround. A bettor comparing model 45% to raw implied 43.48% would think the Celtics bet has 1.5% edge; in reality the fair-line edge is closer to 3%.
Three-way markets — overround stacks differently
Soccer 1X2 (home win / draw / away win), tennis Grand Slam outright (128 players), Formula 1 race winner — markets with more than two outcomes have stacked vig and implied probabilities that can sum to 105-130%.
# EPL match — Liverpool / Draw / Arsenal LIV: 2.10 → 47.62% DRW: 3.40 → 29.41% ARS: 3.80 → 26.32% sum: 103.35% # Power method (logit) for three-way fair fair_LIV ≈ 46.5% fair_DRW ≈ 28.2% fair_ARS ≈ 25.3%
For three-way markets, the power method (logit transformation) produces a more accurate fair probability than the simple multiplicative method, because it accounts for favorite-longshot bias asymmetrically.
Favorite-longshot bias

Decades of academic research (Snowberg & Wolfers 2010; Sauer 1998) document a persistent gap between implied probability and true probability across betting markets: longshots are systematically overpriced, favorites are systematically underpriced.
- Horse racing: a horse priced at 100/1 (implied 1%) wins about 0.6% of races.
- NFL futures: Super Bowl longshots at +10000 (implied 1%) historically deliver below 0.5% win rate.
- Soccer first goalscorer: 25/1 longshots historically priced at 4% implied actually score about 2.5% of the time.
The bias is small in major two-way markets (NFL spreads, NBA totals) and large in futures and exotics. Practical implication: implied probability on longshots should be discounted 30-50% to estimate true probability.
The "no-arbitrage" interpretation
If the implied probabilities across all outcomes summed to exactly 100%, the market would be a fair-coin lottery — no profit for the book. The overround is what keeps the market structurally profitable. The corollary: a sportsbook's theoretical hold = overround percentage, assuming balanced action across outcomes.
This is why books cap exposure on each outcome. If 90% of bettors take the Cowboys at -110, the book's implied-probability-balanced 52.38%/52.38% becomes a real liability of 90%/10%. Vig only protects the book when action is balanced, so books move lines to attract opposing money — even if the line move doesn't reflect changing probability beliefs.
Implied probability and the closing line
The closing line — the final price before kickoff — is the market's consensus probability estimate. Closing implied probability is the cleanest single estimate of true probability in financial markets (Levitt 2004). Sharp bettors are measured by their ability to beat the closing implied probability, not the opening line — CLV (Closing Line Value) is the gold standard.
A bet placed at +140 (41.67% implied) on a market that closes at +120 (45.45% implied) represents a 3.78% probability swing in the bettor's favor — strong CLV evidence the bettor identified a mispriced market early.
Common implied-probability mistakes
- Treating raw implied as fair. Most popular betting calculators show raw implied probability without vig removal. A +EV calculation using raw implied is biased low.
- Assuming overround is evenly distributed. Books frequently load vig onto the favorite or the longshot asymmetrically. The Shin method handles this; the multiplicative does not.
- Ignoring three-way markets. Bettors apply the two-way multiplicative formula to soccer 1X2 and get fair probabilities that don't actually sum to 100%.
- Confusing implied with confidence. An implied probability of 60% is not "the book is 60% sure" — it's "the book's price reflects a fair probability of about 58% after vig removal."
Implied probability in arbitrage
An arbitrage opportunity exists when implied probabilities across two books on opposing sides sum to less than 100%. Example:
# DraftKings: Lakers +145 → implied 40.82% # FanDuel: Celtics -135 → implied 57.45% 40.82% + 57.45% = 98.27% # Arb margin = 100% − 98.27% = 1.73% # Bet sized inversely to implied probability locks profit stake_LAL = $408.20 stake_BOS = $574.50 total stake = $982.70 guaranteed payout = $1,000 profit = $17.30 ≈ 1.76%
Pure arbitrages on US-licensed books rarely exceed 1-3% and rarely last more than minutes. Offshore + exchange combinations occasionally show 4-6% windows during sharp price disagreements.
Sources & further reading
- Snowberg, Erik & Wolfers, Justin. "Explaining the Favorite-Longshot Bias: Is It Risk-Love or Misperceptions?" Journal of Political Economy, 2010.
- Levitt, Steven D. "Why are gambling markets organised so differently from financial markets?" Economic Journal, 2004.
- Štrumbelj, Erik. "On determining probability forecasts from betting odds." International Journal of Forecasting, 2014.
- Sauer, Raymond D. "The Economics of Wagering Markets." Journal of Economic Literature, 1998.
- Pinnacle Betting Resources — "How to calculate true probability and remove margin" (open documentation).
