Erdős Problem 507 #
References:
- erdosproblems.com/507
- [CPZ23] Cohen, Alex, Cosmin Pohoata, and Dmitrii Zakharov. "A new upper bound for the Heilbronn triangle problem." arXiv preprint arXiv:2305.18253 (2023).
- [CPZ24] Cohen, Alex, Cosmin Pohoata, and Dmitrii Zakharov. "Lower bounds for incidences." Inventiones mathematicae (2025): 1-74.
- [KPS82] Komlós, János, János Pintz, and Endre Szemerédi. "A lower bound for Heilbronn's problem." Journal of the London Mathematical Society 2.1 (1982): 13-24.
- [KPS81] Komlós, János, János Pintz, and Endre Szemerédi. "On Heilbronn's triangle problem." Journal of the London Mathematical Society 2.3 (1981): 385-396.
The minimum area of a triangle determined by three distinct points in a set S.
Equations
- One or more equations did not get rendered due to their size.
Instances For
$\alpha(n)$ is the supremum of minTriangleArea S over all sets S of $n$ points in the unit disk.
Equations
Instances For
The "Barrier" function: n^(-7/6) used for the best upper bound [CPZ24].
Equations
- Erdos507.upperBarrier n = 1 / ↑n ^ (7 / 6)
Instances For
Let $\alpha(n)$ be such that every set of $n$ points in the unit disk contains three points which determine a triangle of area at most $\alpha(n)$. Estimate $\alpha(n)$.
theorem
Erdos507.erdos_507.lower :
have ans := sorry;
lowerBest =o[Filter.atTop] ans ∧ ans =O[Filter.atTop] α
Estimate a lower bound for$\alpha(n)$.
theorem
Erdos507.erdos_507.upper :
have ans := sorry;
α =O[Filter.atTop] ans ∧ ans =o[Filter.atTop] upperBarrier
Estimate an upper bound for$\alpha(n)$.
It is trivial that $\alpha(n) \ll 1/n$.
Erdős observed that $\alpha(n) \gg 1/n^2$.
Current best lower bound [KPS82].
theorem
Erdos507.erdos_507.variants.upper_cpz24 :
∃ (o : ℕ → ℝ), Filter.Tendsto o Filter.atTop (nhds 0) ∧ α =O[Filter.atTop] fun (n : ℕ) => upperBarrier n * ↑n ^ o n
Current best upper bound [CPZ24]: $\alpha(n) \ll n^{-7/6 + o(1)}$.