Clustering on a ring
Drop 4 points randomly on a circle. What are the chances they all land in the same half?
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 chance of landing in that half, so .
Let's try it:
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:
Place points and check:
Try different values of . For , the answer is 100% (any two points fit in a semicircle). For , it's about 75%. As grows, the probability drops sharply.
| N | P(all in semicircle) | Decimal |
|---|---|---|
| 2 | 2/2 = 1 | 100% |
| 3 | 3/4 | 75% |
| 4 | 4/8 = 1/2 | 50% |
| 5 | 5/16 | 31.25% |
| 6 | 6/32 = 3/16 | 18.75% |
| 10 | 10/512 | 1.95% |
The counting argument
Label the points clockwise around the circle. For each point , define the event:
Each has probability : once we fix point as the anchor, each of the remaining points independently has a chance of landing in that semicircle. There are such events. If we could just add them up, we'd get .
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:
The events 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 occurs: all points lie in the clockwise semicircle starting at point , meaning the arc from clockwise to the point just before covers at most 180 degrees. Place some points and click one to see its semicircle and the gap:
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:
Here's the same argument written out formally:
Since the events are mutually exclusive:
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 times the circumference (where , and for semicircles ):
Adjust the arc size and number of points to see how the probability changes:
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 ."
- 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 points fit in a hemisphere? Answer: in 2D; the 3D case is harder)
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 identical, non-overlapping cases, the formula gives you the answer instantly.