Can the Archers Coordinate?¶

Fiddler¶

From Bart Wright comes a tale of two archers:

Two logicians are trying to earn a fabulous prize as a team. There are three targets, and, to win the prize, each logician must fire a single arrow and hit the same target as the other. Two of the targets are closer but are otherwise indistinguishable; the logicians know they each have a 98 percent chance of hitting either of these targets. The third target is farther away; the logicians know they each have a 70 percent chance of hitting that target.

The logicians can’t cooperate or consult in advance, and they have no knowledge of which target their counterpart is aiming for or whether they are successful.

What is the probability they will win the prize?

Solution¶

Both logicians know:

  1. If they both choose any of the three targets, there are 3 winning and 6 losing outcomes. This yields a maximum of win probability of $\boxed{\dfrac{1}{3}}$.
  2. If they both choose either of the two indistinguishable targets, there are 2 winning and 2 losing outcomes. This yields a maximum of win probability of $\boxed{\dfrac{1}{2}}$.
  3. If they both choose the far away target, there is exactly one winning outcome. This yields a maximum of win probability of $\boxed{1}$.

Setting $x$ as the probability of hitting either of the two indistinguishable targets and $y$ as the farther away target, the general form of winning for each of the above outcomes is:

  1. $\dfrac{2x^2+y^2}{9}$
  2. $\dfrac{2x^2}{4}$
  3. $y^2$

Comparing the last two,
\begin{align*} \dfrac{2x^2}{4} \lt& y^2\\ \dfrac{x}{\sqrt{2}} \lt& y\\ \end{align*}

Note that $\frac{0.98}{\sqrt{2}} \approx 0.693$.

Answer¶

Both should aim for the farther away target, yielding a win probability of $$\boxed{0.49}$$

Extra Credit¶

As before, there are still three targets, but their respective probabilities of being struck have changed. That said, two of the targets remain indistinguishable from each other and have the same probability of being struck. Moreover, all three probabilities are rational.

After doing some mental arithmetic, the logicians realize that it doesn’t matter which target they aim for—their probability of winning the prize is the same no matter what.

What is their probability of winning the prize?

Solution¶

The only rational solution to $y = \dfrac{x}{\sqrt{2}}$ is $(0, 0)$.

Answer¶

Th probability that they win is 0?

Rohan Lewis¶

2026.02.23¶

Code can be found here.