MoMath Mindbender: Disjoint Unit Disks

Posted on Apr 15, 2026

Source

Monthly Mindbenders (April 2026).

Problem

Your adversary chooses 10 points on the plane, and your mission is to cover them with disjoint unit disks.

If the points are close together, it is easy: one disk will cover them all. If they are far apart, you can cover each point with its own disk. Can you always do it?

Answer

Yes. No matter how the 10 points are placed, there is always a collection of pairwise disjoint unit disks whose union contains all 10 points.

Interactive Explorer

Click to add points, drag to move them, and shift-click a point to delete it. The solver searches for a translate of the standard hexagonal packing from the proof.

Ready

No points yet.

The theorem guarantees success for 10 or fewer points. The interactive solver looks for a matching hexagonal-packing translate numerically.

Why

Take the standard hexagonal packing of unit disks, the densest way to pack congruent disks in the plane without overlap. Its density is

\[ \frac{\pi}{\sqrt{12}} = \frac{\pi}{2\sqrt{3}} \approx 0.9069. \]

Now translate that entire packing by a random vector. For any fixed point in the plane, the chance that it lands inside one of the disks is exactly the packing density, so each chosen point is covered with probability \(p \approx 0.9069\).

Let \(X\) be the number of the 10 points that get covered. By linearity of expectation,

\[ \mathbb{E}[X] = 10p > 9. \]

If every translate of the packing missed at least one of the 10 points, then we would always have \(X \le 9\), which would force \(\mathbb{E}[X] \le 9\). That contradicts the inequality above.

So there must be some translate of the hexagonal packing that covers all 10 points at once. The disks in that packing are pairwise disjoint, and we can ignore all disks that do not contain one of the chosen points. Therefore 10 points can always be covered by disjoint unit disks.

More MoMath Mindbenders: Previous | Next

Back to blog