Documentation

FormalConjectures.ErdosProblems.«92»

Erdős Problem 92 #

Reference: erdosproblems.com/92

noncomputable def Erdos92.maxEquidistantPointsAt (x : EuclideanSpace (Fin 2)) (points : Finset (EuclideanSpace (Fin 2))) :

For a given point x and a set of other points, this function finds the maximum number of points that lie on a single circle centered at x. It does this by grouping the other points by their distance to x and finding the size of the largest group.

Equations
  • One or more equations did not get rendered due to their size.
Instances For

    This property holds for a set of points A if every point x in A has at least k other points from A that are equidistant from x.

    Equations
    Instances For
      noncomputable def Erdos92.possible_f_values (n : ) :

      The set of all possible values k for which there exists a set of n points satisfying the hasMinEquidistantProperty k. The function f(n) will be the supremum of this set.

      Equations
      Instances For

        A sanity check to ensure the set of possible f(n) values is bounded above. A trivial bound is n-1, since any point can have at most n-1 other points equidistant from it. This ensures sSup is well-defined.

        noncomputable def Erdos92.f (n : ) :

        Let $f(n)$ be maximal such that there exists a set $A$ of $n$ points in $\mathbb^2$ in which every $x \in A$ has at least $f(n)$ points in $A$ equidistant from $x$.

        Equations
        Instances For
          theorem Erdos92.erdos_92.variants.weak :
          (∃ (o : ), o =o[Filter.atTop] 1 ∀ (n : ), (f n) n ^ o n) sorry

          Is it true that $f(n)\leq n^{o(1)}$?

          theorem Erdos92.erdos_92.variants.strong :
          (∃ c > 0, ∀ (n : ), (f n) n ^ (c / Real.log (Real.log n))) sorry

          Or even $f(n) < n^{c/\log\log n}$ for some constant $c > 0$?