Back to Variance and Standard Deviation
Chapter 6Calculator

Standard Deviation

Measuring the spread of outcomes

Standard Deviation: Your Risk Gauge

In the previous lesson, we learned that variance measures how spread out results are from the average. But variance has a problem: it's expressed in squared units, making it difficult to interpret. Enter standard deviation—the square root of variance that brings everything back to meaningful numbers.

What Is Standard Deviation?

Standard deviation (represented by the Greek letter σ, pronounced "sigma") tells you the typical amount by which your results will vary from the expected value. It's your measure of uncertainty.

Standard Deviation for Bets

σ = √(n × p × (1 - p))
Excel: =SQRT(A1*B1*(1-B1))

Where:

  • σ (sigma) = standard deviation
  • n = number of bets
  • p = probability of winning (as a decimal)

Key Insight

A higher standard deviation means more volatility—your results will swing more widely. A lower standard deviation means more consistency—your results will cluster closer to the expected value.

Calculating Standard Deviation: Step by Step

Let's work through a practical example. You're placing 100 bets at a 52% win rate.

Step 1: Identify your variables

  • n = 100 bets
  • p = 0.52 (52% win rate)

Step 2: Calculate variance

Variance = n × p × (1 - p)
Variance = 100 × 0.52 × 0.48
Variance = 24.96

Step 3: Take the square root

σ = √24.96 ≈ 5.0 wins

Result: With a standard deviation of 5 wins, your results will typically vary by about 5 wins from your expected 52 wins.

Two Players, Same Average, Different Risk

Consider two NBA players, both averaging about 20 points per game over a season:

Player A (Consistent): Scores between 18-22 points in most games. Standard deviation: 1.13 points.

Player B (Volatile): Scores anywhere from 11-30 points. Standard deviation: 5.49 points.

Both players have the same average, but Player A is far more predictable. If you're betting on Player A to score over 19.5 points, you have a much clearer picture of the risk. Player B might have the same average, but the wide standard deviation means there's much more uncertainty in any single game.

Bell curve comparison showing consistent vs volatile scorer distributions
Two players with nearly identical averages (≈20 points) but vastly different standard deviations. Player A's narrow curve (σ=1.13) indicates consistency, while Player B's wide curve (σ=5.49) shows high volatility.

Key Insight

Standard deviation is your risk gauge. Two bets can have the same expected value but vastly different risk profiles based on their standard deviation.

Standard Deviation for Player Performance

When analyzing player props, you'll often calculate standard deviation from actual game data rather than win/loss probabilities. The formula is slightly different:

Sample Standard Deviation

σ = √(Σ(xᵢ - μ)² / (n-1))
Excel: =STDEV.S(A1:A82)

Where:

  • xᵢ = each individual performance value
  • μ (mu) = mean/average performance
  • n = number of observations

Tip

In Excel, use =STDEV.S(range) for sample data (most common) or =STDEV.P(range) for a full population. For player stats, you're almost always working with samples.

Example: Calculating Player Standard Deviation

A player's last 5 games: 25, 30, 20, 28, 22 points

Step 1: Calculate the mean

μ = (25 + 30 + 20 + 28 + 22) / 5 = 125 / 5 = 25 points

Step 2: Calculate squared deviations

GamePointsDeviation (x - μ)Squared
12500
230+525
320-525
428+39
522-39
Sum68

Step 3: Calculate standard deviation

σ = √(68 / 4) = √17 ≈ 4.12 points

This player's scoring varies by about 4.12 points from their 25-point average on a typical night.

Why Standard Deviation Matters for Bet Sizing

Standard deviation directly impacts how you should size your bets. Consider two strategies with the same expected value:

StrategyBet TypeExpected Profit/BetStd Dev/Bet
AFavorites at -110$2$10
BUnderdogs at +200$2$25

Both strategies have the same expected value over time, but Strategy B will experience much larger swings. You might go on a 10-bet losing streak with Strategy B and lose $250, even though your edge is intact. With Strategy A, a 10-bet losing streak would cost you $110, which is easier to absorb.

Warning

High variance bets require larger bankrolls and longer time horizons to realize your edge. If you're working with a limited bankroll, prioritize lower-variance opportunities.

Excel Formulas Quick Reference

PurposeFormulaExample
Std dev for bets=SQRT(n*p*(1-p))=SQRT(100*0.52*0.48) → 5.0
Std dev from data=STDEV.S(range)=STDEV.S(A2:A83)
Population std dev=STDEV.P(range)=STDEV.P(A2:A83)
Variance from data=VAR.S(range)=VAR.S(A2:A83)

📝 Exercise

Instructions

Calculate the standard deviation for the following betting scenario, then determine if the result falls within normal expectations.

You place 200 bets with a 54% win rate. You end up winning 98 bets.

Questions:

  1. What is the expected number of wins?
  2. What is the standard deviation?
  3. How many standard deviations below the mean is your result?

Key Takeaways

  1. Standard deviation = √variance, bringing the measurement back to interpretable units

  2. Lower σ = more predictable outcomes (consistent players, safer bets)

  3. Higher σ = more volatile outcomes (streaky players, riskier bets)

  4. Use =STDEV.S() in Excel to calculate standard deviation from player data

  5. Factor standard deviation into bet sizing—high variance strategies need bigger bankrolls

In the next lesson, we'll explore the powerful 68-95-99.7 Rule that tells you exactly what percentage of outcomes fall within each standard deviation range.