25 枚硬币反复筛选:最终出现“全正面”的概率
coins lined up
题目详情
有 25 枚硬币排成一行。重复进行如下过程:
- 将当前剩余的所有硬币同时抛掷一次;
- 把所有出现反面的硬币移除;
- 若某一轮中“剩余硬币全部为正面”,则立刻停止并算成功;若硬币被移除到 0 枚仍未出现“某轮全正面”,则算失败。
问:最终成功(某轮出现全正面)的概率是多少?
25 coins lined up, flip all, remove tails, repeat. Probability that eventually all show heads simultaneously (before we run out of coins) We keep flipping the remaining coins and discarding tails each round, stopping if all the coins in a round come up heads or if no coins remain. Probability that we end with all heads?
解析
设 为从 枚硬币开始最终成功的概率。
当 时 。当 :
- 以概率 该轮全为正面,直接成功;
- 否则留下 枚正面(),其概率为 ,并进入状态 。
因此
可用归纳证明:对所有 ,都有 (且 )。
因此从 25 枚开始成功概率为 。