MoMath Mindbender: Random Chords on a Circle

Posted on June 27, 2026

Source

Monthly Mindbenders (June 2026). A beautiful application of linearity of expectation.

Problem

Choose a random point on a circle (uniformly over the full circle), then choose a second random point, and join both points to make a chord. Do this 100 more times to get 100 random chords on the circle. What is the expected number of intersection points?

Answer

\[\boxed{1650}\]

Why

Step 1: When do two chords intersect?

Two chords intersect inside the circle if and only if their four endpoints alternate around the circle. Label chord 1's endpoints \(A, B\) and chord 2's endpoints \(C, D\). Going around the circle, the chords cross exactly when the cyclic order is \(A, C, B, D\) or \(A, D, B, C\) — that is, when \(C\) and \(D\) lie on opposite arcs cut out by \(A\) and \(B\).

Step 2: Probability that two random chords intersect

Given four i.i.d. uniform points on a circle labeled \(A, B, C, D\), there are exactly three ways to pair them into two chords:

For any fixed positions of the four points on the circle, exactly one of these three pairings produces crossing chords. Since the four points are i.i.d. uniform, any permutation of the labels is equally likely, so each pairing is equally likely to be the crossing one. In particular, the pairing \(\{A,B\},\{C,D\}\) is the crossing one with probability \(\frac{1}{3}\):

\[P(\text{two given chords cross}) = \frac{1}{3}.\]

Direct integration: Fix chord 1 with endpoints \(A, B\), splitting the circle into arcs of fractional length \(t\) and \(1-t\) where \(t \sim \mathrm{Uniform}(0,1)\). Chord 2 crosses chord 1 iff its two endpoints land on opposite arcs. Given \(t\), this probability is \(2t(1-t)\). Averaging over \(t\):

\[\int_0^1 2t(1-t)\,dt = 2\left[\frac{t^2}{2} - \frac{t^3}{3}\right]_0^1 = 2\!\left(\frac{1}{2} - \frac{1}{3}\right) = \frac{1}{3}.\]

Step 3: Linearity of expectation

With 100 chords, there are \(\binom{100}{2} = 4950\) pairs of chords. Because the endpoints are chosen continuously, the probability that three or more chords share a common point is zero, so each intersection point arises from exactly one pair. By linearity of expectation:

\[E[\text{\# intersection points}] = \binom{100}{2} \times \frac{1}{3} = \frac{4950}{3} = \boxed{1650}.\]

Generalization

For \(n\) random chords, the expected number of intersection points is

\[\binom{n}{2} \cdot \frac{1}{3} = \frac{n(n-1)}{6}.\]

This is exactly one-third of the maximum possible intersections \(\binom{n}{2}\). The factor of \(\frac{1}{3}\) is pure geometry: among the three ways to pair four uniform circle points into two chords, exactly one produces a crossing.

More MoMath Mindbenders: Previous | Next

Back to blog