Can You Bowl Three Strikes?

Riddler Express

Scoring in bowling can be a tricky matter. There are 10 frames, and in each frame you get two chances to knock down as many of the 10 pins as you can. Each pin knocked down is worth 1 point, and the pins are reset after each frame. Your score is then the sum of the scores across all 10 frames.

If only it were that simple. There are special rules for spares (when you’ve knocked down all 10 pins with the second ball of a frame) and strikes (when you knock down all 10 pins with your first ball). Whenever you bowl a strike, that frame is scored as 10 plus the scores of your next two rolls. This can lead to some dependency issues at the end of the game, which means the final frame has its own set of rules that I won’t go into here.

For example, if you bowled three strikes and missed every subsequent shot (i.e., they were gutter balls), your third frame would be worth 10 points, your second frame would be worth 20 and your first frame 30. Your final score would be 30 + 20 + 10, or 60 points.

This week, Magritte is going bowling, and the bowling gods have decided that he will bowl exactly three strikes in three randomly selected frames. All the other frames will consist of nothing but gutter balls. Magritte also lacks patience for bowling’s particular rules. If one of his three strikes comes on the 10th and final frame and he is prompted to bowl further to complete the game, he will bowl gutter balls out of frustration.

What score can Magritte expect to achieve? (That is, with three randomly placed strikes, what is his average score?)

Solution

There are total of ${10 \choose 3} = 120$ possibilities. This problem can be solved with a bit of casework. Let:

Pattern Representation Calculation Count Score
?XXX? $8 \choose 1$ $8$ $60$ pts
?XX_X? ?Y? $7 \choose 1$ $7$ $50$ pts
?X_XX? ?Y? $7 \choose 1$ $7$ $50$ pts
?X_X_X? ?Y? $6 \choose 1$ $6$ $50$ pts
?XX?__X? ?Y?Z? $\dfrac{7!}{1!1!5!} \cdot \dfrac{1}{2}$ $21$ $40$ pts
?X__?XX? ?Y?Z? $\dfrac{7!}{1!1!5!} \cdot \dfrac{1}{2}$ $21$ $40$ pts
?X_X?__X? ?Y?Z? $\dfrac{6!}{1!1!4!} \cdot \dfrac{1}{2}$ $15$ $40$ pts
?X__?X_X? ?Y?Z? $\dfrac{6!}{1!1!4!} \cdot \dfrac{1}{2}$ $15$ $40$ pts
?X?__X?__X? ?X?Y?Y? $\dfrac{6!}{1!2!3!} \cdot \dfrac{1}{3}$ $20$ $30$ pts

Note that order is important for the last 5 cases, hence a fraction is multiplied to eliminate overcounting.

Answer

$$\dfrac{8(60) + 20(50) + 72(40) + 20(30)}{120}$$


$$ = \dfrac{480 + 1000 + 2880 + 600}{120}$$
$$ = \dfrac{4960}{120} \approx 41.3$$

Magritte can be expected to score $41.3$.

Rohan Lewis

2021.06.20