The Puzzle

A basketball player takes 100 free throws under the following conditions:

  • She makes her first two shots with certainty.
  • For each subsequent shot (from the 3rd to the 100th), her chance of making it equals:

    \[ \frac{\text{number of makes so far}}{\text{number of shots so far}} \]

    For example, if after 40 shots she’s made 23, then the 41st shot succeeds with probability \( \frac{23}{40} \).

Question: What is the probability that, after all 100 shots, she has made exactly 50 baskets?


Understanding the Process

This scenario describes a self-reinforcing stochastic process, where the probability of success at each step depends on the cumulative success rate up to that point. This is akin to a Pólya urn model, where the composition of the urn evolves based on previous outcomes, leading to a form of reinforcement learning.

In this specific case, the process starts with two successes, and from the 3rd shot onwards, the success probability at each step is determined by the ratio of total successes to total attempts so far.


Key Insight: Uniform Distribution of Final Scores

An intriguing property of this process is that, despite its self-reinforcing nature, the distribution of the total number of successful shots after 100 attempts (with the first two being successes) is uniform over the integers from 2 to 100. That is, each total number of makes from 2 to 100 is equally likely.

This uniformity arises because the reinforcement mechanism balances out over time, leading to an equal likelihood of ending up with any total number of successes in the specified range.


Calculating the Desired Probability

Given the uniform distribution over the integers 2 through 100, there are \( 99 \) possible total make counts. Therefore, the probability of ending up with exactly 50 successful shots is:

\[ \boxed{\frac{1}{99}} \]


Reference