Clustering on a ring

Drop 4 points randomly on a circle. What are the chances they all land in the same half?

Drop 4 Points
click to drop points

Your first instinct might be: the circle is symmetric, so place one point anywhere (since any point, probability is 1) and ask whether the other three land in the same semicircle. Each of the 3 remaining points independently has a 1/21/2 chance of landing in that half, so P=(1/2)3=1/8P = (1/2)^3 = 1/8.

Let's try it:

Fixed Semicircle
Click on the circle to fix your point
click to place your point

But that's wrong. The semicircle isn't fixed in advance. It can be anchored at any of the four points. Drop 4 points and click each one to see which anchor works:

Pick an Anchor
Drop 4 points, then click any point to anchor a semicircle there
drop 4 points first
What do you think?
4 random points on a circle. P(all within some semicircle)?

Place points and check:

Points on a Circle
Theory: N / 2^(N-1) = 4 / 8 = 50.0%

Try different values of NN. For N=2N = 2, the answer is 100% (any two points fit in a semicircle). For N=3N = 3, it's about 75%. As NN grows, the probability drops sharply.

NP(all in semicircle)Decimal
22/2 = 1100%
33/475%
44/8 = 1/250%
55/1631.25%
66/32 = 3/1618.75%
1010/5121.95%

The counting argument

Label the points 1,2,,N1, 2, \ldots, N clockwise around the circle. For each point ii, define the event:

Ei="all other points lie in the clockwise semicircle starting at point i"E_i = \text{"all other points lie in the clockwise semicircle starting at point } i\text{"}

What do you think?
What is P(E_i) for each individual point i?

Each EiE_i has probability (1/2)N1(1/2)^{N-1}: once we fix point ii as the anchor, each of the remaining N1N-1 points independently has a 1/21/2 chance of landing in that semicircle. There are NN such events. If we could just add them up, we'd get N/2N1N / 2^{N-1}.

But can we? Adding probabilities only works when events are mutually exclusive (if one event happens, it automatically excludes the other from happening). The key claim is:

Mutual Exclusivity of Semicircle Events

The events E1,E2,,ENE_1, E_2, \ldots, E_N are mutually exclusive. At most one point can serve as the anchor of a semicircle containing all other points.

Why the events can't overlap

Suppose event EiE_i occurs: all points lie in the clockwise semicircle starting at point ii, meaning the arc from ii clockwise to the point just before ii covers at most 180 degrees. Place some points and click one to see its semicircle and the gap:

Event E_i Visualizer
Place 4 points, then click any point to see its clockwise semicircle
place 4 points first

Notice the gap — when one anchor works, the counterclockwise arc back to it is at least 180°. That gap is exactly what prevents any other point from being an anchor. Step through the proof below to see why:

Proof: Mutual Exclusivity
Step 1 of 8
Setup: 4 points on a circle
1P12P23P34P4
Here are 4 points placed on a circle. We'll check which point can serve as a valid anchor.

Here's the same argument written out formally:

Proof of Mutual Exclusivity
Assume Ei occurs\text{Assume } E_i \text{ occurs}
All N points fit in the clockwise semicircle starting at point i. Point i is at the 'leftmost' edge of this semicircle.
Step 1 of 5

Since the events are mutually exclusive:

P(all in some semicircle)=P(i=1NEi)=i=1NP(Ei)=N×12N1=N2N1P(\text{all in some semicircle}) = P\Large\left(\bigcup_{i=1}^{N} E_i\right) = \Large\sum_{i=1}^{N} P(E_i) = N \times \Large\frac{1}{2^{N-1}} = \Large\frac{N}{2^{N-1}}

The trick is that mutual exclusivity lets you add without worrying about double-counting. This is unusual. In most union problems, you need inclusion-exclusion, which alternates adding and subtracting. Here, the geometry of the circle guarantees no overlap.

Extending to smaller arcs

The same argument works for any arc, not just semicircles. If the arc has length xx times the circumference (where x1/2x \leq 1/2, and for semicircles x=1/2x = 1/2):

P(all N points in some arc of length x)=NxN1P(\text{all } N \text{ points in some arc of length } x) = N \cdot x^{N-1}

Adjust the arc size and number of points to see how the probability changes:

Arc Size Explorer
Theory: N · xN-1 = 4 · ½3 = 50.00%
180° arc
What do you think?
5 points on a circle. What's the probability they all fit in an arc covering 1/3 of the circumference?
decimal like 0.06

Competition appearances

This problem shows up frequently:

  • Putnam style: "N points chosen uniformly on a circle. Find the probability they lie within an arc of angle θ\theta."
  • IMO training: The mutual exclusivity argument is a model for how geometric symmetry simplifies counting
  • Quant interviews: Jane Street and Two Sigma use this as a warm-up to test geometric probability intuition
  • Generalization: The same technique applies to points on a sphere (what's the probability NN points fit in a hemisphere? Answer: N/2N1N / 2^{N-1} in 2D; the 3D case is harder)
3 random points on a circle. P(all in a semicircle)? (decimal like 0.75)
1/4

The takeaway

This problem demonstrates the technique of decomposing a complex event into simpler pieces and checking whether those pieces overlap. When they don't (mutual exclusivity), you just add. The geometric insight that "only one point can anchor a covering semicircle" is what makes the addition valid. In competition math, whenever you can decompose a probability into NN identical, non-overlapping cases, the formula N×pN \times p gives you the answer instantly.