The Random Walk of Mathematical Finance

Applying Probabilistic Methods to NBA Shot Optimization

Research Concentration under Professor Hesam Oveys
New York University | August 2026

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)

3.2 Interactive Web Application

To make this research accessible and interactive, we developed a web application that allows users to experiment with different strategies in real-time.

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.