返回题库

圆上 100 点落在同一半圆内的概率

Points on a Circle II

专题
Probability / 概率
难度
L4

题目详情

在圆周上均匀随机选取 nn 个点。对 n=100n=100,求这 100 个点都落在同一个半圆内的概率。

答案形如 abc\frac{a}{b^c}bb 最小)。求 a+b+ca+b+c

There are nn points selected uniformly at randomly around a circle. What is the probability that all nn points are on the same semicircle for n=100n = 100? The answer is in the form abc\frac{a}{b^c} for integers a,b,c>0a,b,c > 0 with bb minimal. Find a+b+ca + b + c.

解析

经典结果:nn 个点都在同一半圆内的概率为

n2n1.\frac{n}{2^{n-1}}.

代入 n=100n=100100299\frac{100}{2^{99}}

因此 a=100,b=2,c=99a=100,b=2,c=99a+b+c=201a+b+c=201


Original Explanation

First consider we already have selected the nn points on the circle. Choose one of those points, let's call it AA. We draw a line through AA and CC, the center of the circle; this diameter forms two semicircles. We now only consider the semicircle starting from AA in the counterclockwise direction to prevent overcounting.

Then, each of the n1n-1 remaining points has a 12\frac{1}{2} chance of being within that semicircle. Repeating this for all nn points, we find that the solution is simply n2n1\frac{n}{2^{n-1}}. Plugging in n=100n = 100, we find our answer to be 100299\frac{100}{2^{99}}. Hence, by plugging in a, b, and c we get the answer to our question is 100+2+99=201100 + 2 + 99 = 201.