返回题库

三名枪手轮流射击:X 获胜概率

Three Riflemen

专题
Probability / 概率
难度
L2

题目详情

三名枪手 X,Y,ZX,Y,Z 轮流向靶子射击:X 先射,Y 第二,Z 第三,然后循环。

每次射击独立命中靶子的概率均为 50%。一旦有人命中,游戏结束,该人获胜。

求 X 获胜的概率。

Three riflemen X,YX, Y and ZZ take turns shooting at a target. XX shoots first, YY second, and ZZ third, after which the cycle repeats with XX again and again, until one of the riflemen hits the target. Each shot hits the target with probability 50%50\%, independent of other shots. Find the probability XX wins.

解析

X 在第 1、4、7、… 次射击命中时获胜。命中发生在第 kk 次射击的概率为 2k2^{-k}

因此

P(X)=j=02(3j+1)=1/211/8=47.P(X\text{赢})=\sum_{j=0}^\infty 2^{-(3j+1)}=\frac{1/2}{1-1/8}=\frac{4}{7}.

Original Explanation

Solution #1: We're looking for the distribution of the first success of repeated trials with probability 12\frac{1}{2} of success. The distribution of the number of trials needed is NGeom(12)N \sim \text{Geom}\left(\frac{1}{2}\right). Therefore, P[N=k]=12k\mathbb{P}[N = k] = \frac{1}{2^k} for k1k \geq 1. If XX wins, then the shot is on one of trials 1,4,7,1, 4, 7, \ldots, as it must cycle back to them. Therefore, the probability of interest is k=0(12)3k+1=12k=018k=121118=47\sum_{k=0}^{\infty} \left(\frac{1}{2}\right)^{3k+1} = \frac{1}{2}\sum_{k=0}^{\infty} \frac{1}{8^k} = \frac{1}{2} \cdot \frac{1}{1-\frac{1}{8}} = \frac{4}{7}

Solution #2: Let's look at another method to arrive at this. We can call the probability of person XX winning pp. Every outcome where person YY has the opportunity to win is the same as person XX except scaled by a factor of half since person YY must ensure person XX misses right before them, which occurs with a probability of 12\frac{1}{2}, so the probability for person YY is 12p\frac{1}{2}p.

By the same logic, the probability person ZZ wins is 14p\frac{1}{4}p. Adding all of these up yields p(1+12+14)=1    p=47p\left(1 + \frac{1}{2} + \frac{1}{4}\right) = 1 \iff p = \frac{4}{7}