Methodology
The math behind every tool on this site, explained and sourced.
Implied probability from odds
American odds have two formats. For underdogs (positive), $+150$ means a $100 stake returns $150 in net profit. For favorites (negative), $-120$ means $120 must be risked to win $100. To convert American odds $A$ to decimal odds $d$:
$$d = \begin{cases} 1 + \frac{A}{100} & A \geq +100 \\ 1 + \frac{100}{|A|} & A \leq -100 \end{cases}$$The implied probability is $p_{\text{implied}} = 1/d$. Crucially, book-implied probabilities across a market do not sum to 1. The excess — typically 2-6% — is the vig (or juice): the sportsbook's margin. If both sides of a coin-flip market are priced at $-110$, the implied sum is $\tfrac{110}{210} + \tfrac{110}{210} \approx 1.048$, a 4.8% vig.
Expected value (EV)
Expected value measures the long-run profit of a bet given your honest estimate of its true probability. For a bet with stake $s$, American odds $A$, true win probability $p$, and net profit-if-win $b \cdot s$ (where $b = d - 1$):
$$\text{EV} = p \cdot b - (1 - p)$$Positive EV means the bet is profitable in the long run. The hard part is not the math — it's getting $p$ right. Sharp markets are efficient; finding consistently positive EV requires a model, an information edge, or exploiting market-making errors before they close.
Kelly criterion
The Kelly criterion gives the fraction of bankroll to wager that maximizes log-wealth growth. For a bet with decimal odds $d$, let $b = d - 1$, $p$ = true win probability, $q = 1 - p$:
$$f^* = \frac{bp - q}{b}$$Full Kelly is mathematically optimal but aggressive — the drawdowns are severe even for skilled bettors. Most practitioners use fractional Kelly (often quarter Kelly, $f^*/4$) which gives up some growth rate but dramatically reduces variance. If your probability estimate is noisy (as most amateur estimates are), quarter Kelly or even eighth Kelly is more honest.
When $f^* \leq 0$ the formula says "don't bet" — this calculator clamps to zero rather than returning a negative fraction.
Parlay math
A parlay is a single bet whose outcome depends on all legs winning. Payout multiplier is the product of each leg's decimal odds: $d_{\text{parlay}} = \prod_i d_i$. True probability is the product of true probabilities (assuming independence): $p_{\text{parlay}} = \prod_i p_i$.
The house edge compounds with each added leg. If each leg has 5% vig, a 4-leg parlay carries roughly $(1.05)^4 - 1 \approx 21\%$ effective vig. This is why parlays are sold so aggressively and why they're usually negative-EV even when individual legs are fair.
Push handling: if a leg pushes (tie), it drops from the parlay and the remaining legs are recomputed. If all legs push, the entire parlay pushes. If any leg loses, the entire parlay loses regardless of the others.
Arbitrage
A two-way arb exists when the sum of inverse decimal odds across two books is less than 1:
$$\frac{1}{d_{\text{A}}} + \frac{1}{d_{\text{B}}} < 1$$The profit rate is $\frac{1}{d_A^{-1} + d_B^{-1}} - 1$. To lock in profit regardless of outcome, split the total stake $S$ as:
$$S_A = S \cdot \frac{d_A^{-1}}{d_A^{-1} + d_B^{-1}}, \quad S_B = S \cdot \frac{d_B^{-1}}{d_A^{-1} + d_B^{-1}}$$Real-world arbitrage is rare and has serious practical limits:
- You need accounts at two different books. No single sportsbook will accept both sides of the same market from one account — preventing cross-book arbitrage is one of the reasons books maintain different pricing from each other in the first place.
- Lines move fast. The odds shift between when you see them and when you click bet, often erasing the edge before your second leg confirms.
- Bet limits. Sportsbooks cap wagers — often low for accounts that place arb-shaped bets.
- Account restrictions. Books detect and limit (or ban) arbers. Sustained arb strategies require bankroll across many books and a lot of operational overhead.
A more practical real-world version is in-game hedging: you take one side pre-game, then if the line moves in your favor during the game, you take the other side at a new price to lock in a smaller guaranteed profit. Most books accept this because it's part of normal live-betting flow, and the price discovery during the game usually means the hedge isn't a pure arb.
Line movement & closing line value (CLV)
Line movement is the change in a market's odds over time. The market is a continuous aggregation of all bettors' information; a line moves when money flows toward one side. The final odds before a game starts — the closing line — are usually the sharpest estimate of the true probability a market can produce.
Closing line value is the difference between the odds you got and the closing odds. Consistently beating the closing line is the single best signal that you're betting skillfully, more so than short-term win rate (which is noisy) or total P&L (which is sensitive to variance). Professional bettors optimize for CLV almost exclusively.
Monte Carlo simulation
The parlay simulator runs 10,000 independent trials of your parlay. For each trial, each leg wins with its specified probability; the parlay wins only if every leg wins. We record the dollar outcome (either $-S$ or $+S(d_{\text{parlay}} - 1)$), then plot the histogram and compute summary statistics.
What the distribution shows: even with positive individual-leg probabilities, most parlay trials lose the full stake — which is the compounded house edge in action. The shape is heavily right-skewed. Median outcome is typically far below the mean (if the mean is positive at all).
Limitations. The simulator assumes independence between legs, which breaks for correlated parlays like same-game parlays. It also assumes your probability estimates are unbiased — if they're systematically off, the simulator lies to you with a straight face.