Problem 101 — Visual explainer (undergrad) ========================================== Problem statement --------------- Given $n$ points in $\mathbb{R}^2$, no five of which are on a line, the number of lines containing four points is $o(n^2)$. Picture ------- Many points on a line: o---o---o---o---o \ o o 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) ---------------------------------------- - There are examples of sets of $n$ points with $\sim n^2/6$ many collinear triples and no four points on a line. - Such constructions are given by Burr, Gr\"{u}nbaum, and Sloane and F\"{u}redi and Pal\'{a}sti. - Gr\"{u}nbaum constructed an example with $\gg n^{3/2}$ such lines. - This is false: Solymosi and Stojakovi\'{c} have constructed a set with no five on a line and at least\[n^{2-O(1/\sqrt{\log n})}\]many lines containing exactly four points.