Brainteasers & Puzzles

Dart Game

Three darts thrown with constant skill. Given the second lands worse than the first, how likely is the third to beat both?

solvedmedium1 min

Jason throws darts at a board with constant skill. His second dart lands farther from the centre than his first. If he throws a third, what is the probability that it lands farther from the centre than his first?

Reveal solutionHide solution

#Rank, do not measure

Let d1,d2,d3d_1, d_2, d_3 be the three distances from the centre. Constant skill makes them independent draws from one distribution, so all 3!=63! = 6 orderings of their sizes are equally likely and the exact distribution never matters. I want P(d3>d1d2>d1)\PP(d_3 > d_1 \mid d_2 > d_1), and both pieces fall to symmetry.

#Two symmetries

The joint event d2>d1d_2 > d_1 and d3>d1d_3 > d_1 says d1d_1 is the smallest of the three, the closest dart, which is one of three darts equally likely to be nearest,

P(d2>d1 and d3>d1)=P(d1=min)=13.(1)\PP(d_2 > d_1 \text{ and } d_3 > d_1) = \PP(d_1 = \min) = \tfrac{1}{3}. \tag{1}

The condition d2>d1d_2 > d_1 holds half the time. Dividing,

P(d3>d1d2>d1)=1/31/2=23.(2)\PP(d_3 > d_1 \mid d_2 > d_1) = \frac{1/3}{1/2} = \frac{2}{3}. \tag{2}

nearer the centrefarther out

d1d2d3d3 farther than d1
d1d3d2d3 farther than d1
d3d1d2d3 nearer than d1
Knowing the second dart landed farther than the first leaves three equally likely orderings of the three distances. The third dart is farther than the first in two of them, so the probability is two thirds.

#The intuition

The naive guess is one half, treating the third dart as a fresh coin against the first. But learning that the first beat the second is evidence that the first was a good throw, close to the centre, so a later dart clears it more often than not. The information pulls the answer up to two thirds.