The Basketball Tryout


probability

Here’s another interesting probability question that I’ve found in Adrian Torchiana’s Probability Math Puzzles app.

You’re trying out for a basketball team, and the coach gives you two options: you can take six shots, or you can take four. In both cases you have to make at least half of the shots, or you’ll be cut from the team.

Each shot you take has a fixed probability of succeeding. What is the probability of making a successful shot, in which it makes no difference what option you choose?

Blue 🟦 represents four shots and orange 🟧 represents six shots.

I highly encourage you to try this question out before looking at the solution. It is possible to solve this problem entirely by hand, but you may opt to solve this problem using an equation solver or graphing calculator.

Solution

Reveal the Solution

As you can see, it looks like \( 0.6 \) is the solution, but why?

For fixed probabilities, the binomial distribution is used.

\[ P_x = {n \choose x} p^x \left( 1-p \right)^{n-x} \]

where:

  • \( P \): binomial probability

  • \( p \): probability of success on a single trial

  • \( x \): number of times for a specific outcome within \( n \) trials

  • \( n \): number of trials

  • \( {n \choose x} = \frac{n!}{x!\left(n-x\right)!} \)

Using the binomial distribution formula, we can calculate the probability of making the tryout given four shots, with fixed probability \( p \).

\begin{aligned} P_4 + P_3 + P_2 &= {4 \choose 4} p^4 \left( 1-p \right)^0 + {4 \choose 3} p^3 \left( 1-p \right)^1 + {4 \choose 2} p^2 \left( 1-p \right)^2 \\ &= p^4 + 4 p^3 \left( 1-p \right) + 6 p^2 \left( 1-p \right)^2 \\ &= 3 p^4 - 8 p^3 + 6 p^2 \end{aligned}

We can do the same for six shots.

\begin{aligned} P_6 + P_5 + P_4 + P_3 &= {6 \choose 6} p^6 \left( 1-p \right)^0 + {6 \choose 5} p^5 \left( 1-p \right)^1 + {6 \choose 4} p^4 \left( 1-p \right)^2 + {6 \choose 3} p^3 \left( 1-p \right)^3 \\ &= p^6 + 6 p^5 \left( 1-p \right) + 15 p^4 \left( 1-p \right)^2 + 20 p^3 \left( 1-p \right)^3 \\ &= -10 p^6 + 36 p^5 - 45 p^4 + 20 p^3 \end{aligned}

Now, we need to solve for \( p \),

\[ 3 p^4 - 8 p^3 + 6 p^2 = -10 p^6 + 36 p^5 - 45 p^4 + 20 p^3 \]

Move to one side,

\[ -10 p^6 + 36 p^5 - 48 p^4 + 28 p^3 - 6 p^2 = 0 \]

Simplify a bit (we know that \( p = 0 \) is definitely not a valid solution),

\[ \frac{-10 p^6 + 36 p^5 - 48 p^4 + 28 p^3 - 6 p^2}{-2 p^2} = \frac{0}{-2 p^2} \] \[ 5 p^4 - 18 p^3 + 24 p^2 - 14 p + 3 = 0 \]

Using the rational root theorem we can brute-force possible factors relatively easily.

We are left with,

\[ \left( p - 1 \right)^3 \left( 5p - 3 \right) = 0 \]

We know that \( p = 1 \) is not a valid solution, hence we solve for \( 5p - 3 = 0 \)

\[ p = \frac{3}{5} = 0.6 \]

A Fun Little Sidenote

Have you noticed that depending on the rules of a game, lower or higher skilled players can be favored?

For basketball shooters with a \( < 0.6 \) shooting percentage, it is more favorable to take four shots.

For basketball shooters with a \( > 0.6 \) shooting percentage, it is more favorable to take six shots.

Parallels can be made to real-life sports, where upsets in hockey are much more common than upsets in basketball.

Comments

You can avoid authenticating giscus by commenting directly on the discussion page.