Problem 104 — Visual explainer (undergrad) ========================================== Problem statement --------------- Given $n$ points in $\mathbb{R}^2$ the number of distinct unit circles containing at least three points is $o(n^2)$. Picture ------- Unit circle picture (radius 1): o .-'''-. o( ( ) )o points on the same unit circle '-...-' o Conjecture / Task: what to look at ------------------------ - Restate the problem as: given the constraint, what asymptotic bound or structure must follow? - Use the comments as benchmarks (best known bounds / constructions). Context ------- Area hint: incidence geometry / combinatorial geometry. Notation (if it appears above) ----------------------------- - `o(g(n))` means "grows strictly smaller than g(n)" (ratio → 0 as nā†’āˆž). Benchmarks / known results (from comments) ---------------------------------------- - In Erd\H{o}s proved that $\gg n$ many circles is possible, and that there cannot be more than $O(n^2)$ many circles. - The argument is very simple: every pair of points determines at most $2$ unit circles, and the claimed bound follows from double counting. - Erd\H{o}s claims in a number of places this produces the upper bound $n(n-1)$, but Harborth and Mengerson note that in fact this delivers an upper bound of $\frac{n(n-1)}{3}$. - Elekes has a simple construction of a set with $\gg n^{3/2}$ such circles.