Erdős Problem 1085 #
Let f_d(n) be minimal such that, in any set of n points in ℝ^d, there exist at most f_d(n) pairs of points which are distance 1 apart. Estimate f_d(n).
Reference: erdosproblems.com/1085
The maximal number of pairs of points which are distance 1 apart that a set of n points in
ℝ^d make.
Equations
- Erdos1085.f d n = ⨆ (s : Finset (EuclideanSpace ℝ (Fin d))), ⨆ (_ : s.card = n), unitDistNum s
Instances For
Spencer, Szemerédi, and Trotter showed $f_2(n) = O(n^{4/3})$.
Erdős showed that, for $d \ge 4$, $f_d(n) \le \left(\frac{p - 1}{2p} + o(1)\right) n^2$ where $p = \lfloor\frac d2\rfloor$.
Erdős and Pach showed that, for $d \ge 5$ odd, there exist constants $c_1(d), c_2(d) > 0$ such that $\frac{p - 1}{2p} n^2 - c_1 n^{4/3} ≤ f_d(n) \le \frac{p - 1}{2p} n^2 + c_2 n^{4/3}$ where $p = \lfloor\frac d2\rfloor$.