The Random Walk
of Mathematical Finance

Applying probabilistic methods from portfolio theory to NBA shot selection β€”
research concentration under Prof. Hesam Oveys, New York University.

Quick Stats
Last Updated Aug 4, 2026
NBA Teams 30
Monte Carlo Iterations 10,000
Strategy Categories 7
Built On
NBA API
Monte Carlo
Four Factors
Python

Find Strategies

Every strategy from the paper β€” filter by category or search.

1
introduction Introduction Β§1

Four research questions: the optimal 2PT/3PT mix, how shot variance shapes win probability, the hot hand effect, and how Four Factors correlate with shot distribution.

2
introduction-background Introduction Β§1.1

Since the 1979 three-point line, the deep shot carries higher expected value per attempt β€” beyond ~33.3% accuracy the math favors more 3PT.

3
expected-value-analysis Theory Β§2.1

EV per attempt: EV(3PT) = 0.36Γ—3 = 1.08 vs EV(2PT) = 0.52Γ—2 = 1.04 β€” three-pointers carry ~4% higher expected value.

4
variance-analysis Theory Β§2.2

Var = p(1βˆ’p)Β·PointsΒ² β€” three-pointers show 2.1Γ— higher variance (2.074 vs 0.998), the basketball analogue of portfolio risk.

5
monte-carlo-simulation Methodology Β§3.1

10,000 games simulated as sequences of Bernoulli trials across 110 possessions, with variable 2PT/3PT ratios and shooting percentages.

6
interactive-web-app Methodology Β§3.2

A live simulator to experiment with shot distributions, hot hand toggles, and iteration counts in real time.

7
optimal-shot-distribution Results Β§4.1

Approximately 45–50% three-point attempts maximizes expected score β€” 105.8 pts at the optimum vs 102.3 for a 2PT-heavy approach.

8
risk-return-tradeoff Results Β§4.2

2-pointers β‰ˆ bonds, 3-pointers β‰ˆ stocks. Sharpe-like ratio (Expected Score / Οƒ) ranks strategies on a risk-adjusted basis.

9
four-factors-framework Results Β§4.3

eFG% is the strongest predictor of wins (+0.68 correlation); ORB% +0.42, TOV% βˆ’0.51, FT/FGA +0.31.

10
hot-hand-effect Results Β§4.4

P(make | 3+ makes) βˆ’ P(make | 3+ misses) = +3.2% with p = 0.14 β€” limited statistical evidence for streak shooting.

11
portfolio-allocation Discussion Β§5.1

Shot distribution as asset allocation: close games favor 2PT consistency, trailing teams increase variance with more 3PT.

12
risk-management Discussion Β§5.1

Game-state adjustments: blowouts absorb variance, tight games demand lower-variance two-point looks.

13
key-conclusions Conclusions Β§6

Optimal 3PT ratio 45–50%, variance is strategy-dependent risk, eFG% predicts success, hot hand remains statistically weak.

14
references Β§7

Oliver (2004), Gilovich et al. (1985), Miller & Sanjurjo (2018), Goldsberry (2019), nba_api documentation.

Abstract

This research applies probabilistic methods from financial mathematics to basketball analytics, specifically investigating optimal shot distribution strategies for NBA teams. Using Monte Carlo simulation, we model basketball games as sequences of Bernoulli trials with different expected values and variances. Our analysis reveals that while three-point shots offer higher expected value per attempt, they also introduce significantly more varianceβ€”a tradeoff analogous to risk-return considerations in portfolio theory.

We find that an optimal strategy balances approximately 45-50% three-point attempts, though the exact ratio depends on a team's risk tolerance and shooting abilities. Additionally, we incorporate Dean Oliver's Four Factors framework and model the controversial "hot hand" effect. Our findings have practical implications for coaching strategy, roster construction, and in-game decision-making.

Keywords: Monte Carlo simulation, expected value, variance, basketball analytics, shot selection, financial mathematics

1. Introduction

1.1 Background

The evolution of basketball strategy has been profoundly influenced by statistical analysis. Since the introduction of the three-point line in 1979, teams have increasingly recognized the mathematical advantage of the three-point shot: despite lower conversion rates, the additional point creates a higher expected value per attempt when shooters exceed approximately 33.3% accuracy.

Financial Mathematics Parallels

  • Expected Value (EV): The average outcome over many trials, analogous to expected returns in investing
  • Variance: The spread of possible outcomes, analogous to investment risk
  • Central Limit Theorem: The tendency for distributions to approach normal as sample size increases

1.2 Research Questions

  1. What is the optimal ratio of 2-point vs 3-point shots for maximizing expected points?
  2. How does variance in shot outcomes affect game-winning probability?
  3. Does the "hot hand" effect significantly impact optimal strategy?
  4. How do Dean Oliver's Four Factors correlate with optimal shot distribution?

2. Theoretical Framework

2.1 Expected Value Analysis

The expected value (EV) of a shot is calculated as:

EV(shot) = P(made) Γ— Points

For NBA-average shooting percentages:

This suggests 3-pointers have a ~4% higher expected value.

2.2 Variance Analysis

Variance per shot follows the Bernoulli variance formula:

Var = p(1-p) Γ— PointsΒ²

For NBA-average shooting:

Three-pointers have approximately 2.1Γ— higher variance than two-pointers.

2.3 Four Factors Framework

Dean Oliver's Four Factors explain team success:

1. Effective FG% (40%)

eFG% = (FGM + 0.5 Γ— 3PM) / FGA

2. Turnover Rate (25%)

TOV% = TOV / (FGA + 0.44 Γ— FTA + TOV)

3. Offensive Rebound Rate (20%)

ORB% = ORB / (ORB + Opp DRB)

4. Free Throw Rate (15%)

FT Rate = FTA / FGA

3. Methodology

3.1 Monte Carlo Simulation

We implement Monte Carlo simulation with the following parameters:

Simulation Algorithm

for iteration in range(num_iterations):
    score = 0
    for possession in range(possessions_per_game):
        shot_type = random_choice(ratios)
        made = random() < fg_percentage[shot_type]
        if made:
            score += points[shot_type]
    results.append(score)

4. Results

4.1 Optimal Shot Distribution

Testing strategies from 0% to 100% three-point attempts in 5% increments:

Strategy Expected Score Std Dev (Οƒ) P(>100)
70% 2PT / 25% 3PT 102.3 8.2 61.2%
60% 2PT / 35% 3PT 104.1 9.1 67.8%
55% 2PT / 40% 3PT 105.2 9.5 71.3%
50% 2PT / 45% 3PT 105.8 9.8 73.5%
45% 2PT / 50% 3PT 105.5 10.3 72.1%
40% 2PT / 55% 3PT 104.9 10.8 70.2%

Optimal Strategy: Approximately 45-50% three-point attempts maximizes expected score.

4.2 Risk-Return Tradeoff

Financial Portfolio Analogy

  • Higher 3PT ratio = Higher expected return + Higher variance (risk)
  • Higher 2PT ratio = Lower expected return + Lower variance

Risk-adjusted return (Sharpe-like ratio): Sharpe = Expected Score / Οƒ

4.3 Four Factors Correlation

Teams with higher eFG% (influenced by 3-point shooting) show stronger correlations with winning:

4.4 Hot Hand Analysis

Observed difference (P(make | 3+ makes) - P(make | 3+ misses)): +3.2%

p-value: 0.14 (not statistically significant at Ξ± = 0.05)

Conclusion: Limited evidence for hot hand effect in this sample

5. Discussion

5.1 Financial Mathematics Analogies

Portfolio Allocation

  • Shot distribution β‰ˆ Asset allocation
  • 2-pointers β‰ˆ Bonds (lower return, lower risk)
  • 3-pointers β‰ˆ Stocks (higher return, higher risk)

Risk Management

  • Close games β†’ favor 2-pointers (consistency)
  • Blowouts β†’ emphasize 3-pointers (variance OK)
  • Trailing teams β†’ increase variance (more 3PT)

5.2 Practical Implications

  1. Roster Construction: Teams should acquire players who can shoot 3-pointers at >35%
  2. Game Planning: Adjust 3-point attempt rate based on game situation
  3. Opponent Analysis: Force opponents into lower-efficiency shots

5.3 Limitations

6. Conclusions

This research demonstrates that probabilistic methods from financial mathematics can effectively model basketball strategy optimization. Key findings:

1. Optimal Strategy

Teams should attempt approximately 45-50% three-pointers, balancing expected value with variance

2. Risk Matters

Higher variance strategies are appropriate for trailing teams or high-variance situations

3. Four Factors

Effective field goal percentage (heavily influenced by 3-point shooting) is the strongest predictor of success

4. Hot Hand

Limited statistical evidence for the hot hand effect in our analysis

Future Work

7. References

  1. Oliver, D. (2004). Basketball on Paper. Brassey's Inc.
  2. Gilovich, T., Vallone, R., & Tversky, A. (1985). The hot hand in basketball: On the misperception of random sequences. Cognitive Psychology, 17(3), 295-314.
  3. Miller, J. B., & Sanjurjo, A. (2018). Surprised by the hot hand fallacy? A truth in the law of small numbers. Econometrica, 86(6), 2019-2047.
  4. Goldsberry, K. (2019). Sprawlball: A Visual Tour of the New Era of the NBA. Houghton Mifflin Harcourt.
  5. NBA API Documentation. https://github.com/swar/nba_api

Try It Yourself

Explore the interactive web application to experiment with different shot strategies, run your own Monte Carlo simulations, and see the results in real-time.