Documentation

FormalConjectures.ErdosProblems.«539»

Erdős Problem 539 #

In this problem, a function $h : \mathbb{N} \to\mathbb{N}$ is defined maximally by a specified counting property.

The problem asks to estimate $h(n)$. This has been interpreted here as asking for $\Theta(h(n))$. The principal version includes answer(sorry) for an unknown function. On the other hand, the best known upper bound is $n^{2/3}$ and the best known lower bound is $\sqrt{n}$ so we also provide these candidates as variants. Moreover, it suffices to show $O(h(n))$ and $O(\sqrt{n})$ respectively for each, so further variants are provided for those.

In the source paper [Er73], Erdős also remarks that it should not be too difficult to determine $\lim_{n\to\infty}\log(h(n))/\log(n)$. This does not appear on the website, and it is not clear whether this remains open, but we include it here either way.

References:

We say that $m$ is a cofactor lower bound for a given $n$ if, for every set $A$ of $n$ non-negative integers, there are at least $m$ cofactors $a / (a, b)$, where $a, b\in A$.

Equations
  • One or more equations did not get rendered due to their size.
Instances For
    noncomputable def Erdos539.cofactorThreshold (n : ) :

    The cofactor threshold $h(n)$, for every positive $n$, is the largest cofactor lower bound for $n$.

    Equations
    Instances For
      theorem Erdos539.erdos_539 :
      (fun (n : ) => (cofactorThreshold n)) =Θ[Filter.atTop] sorry

      Let $h(n)$ be maximal such that, for any set $A\subseteq \mathbb{N}$ of size $n$, the set$$\left{ \frac{a}{(a,b)}: a,b\in A\right}$$has size at least $h(n)$. Estimate $h(n)$.

      theorem Erdos539.erdos_539.variants.sq :
      (fun (n : ) => (cofactorThreshold n)) =Θ[Filter.atTop] fun (n : ) => n

      Let $h(n)$ be maximal such that, for any set $A\subseteq \mathbb{N}$ of size $n$, the set$$\left{ \frac{a}{(a,b)}: a,b\in A\right}$$has size at least $h(n)$. Is $h(n) = \Theta(\sqrt{n})$?

      theorem Erdos539.erdos_539.variants.sq_isBigO :
      (fun (n : ) => n) =O[Filter.atTop] fun (n : ) => (cofactorThreshold n)

      Erdős and Szemerédi proved that$$n^{1/2} \ll h(n)$$.

      theorem Erdos539.erdos_539.variants.isBigO_sq :
      (fun (n : ) => (cofactorThreshold n)) =O[Filter.atTop] fun (n : ) => n

      To prove erdos_539.variants.sq it suffices to show $$ h(n)\ll n^{1/2}$$.

      theorem Erdos539.erdos_539.variants.sq_cube_root :
      (fun (n : ) => (cofactorThreshold n)) =Θ[Filter.atTop] fun (n : ) => n ^ (2 / 3)

      Let $h(n)$ be maximal such that, for any set $A\subseteq \mathbb{N}$ of size $n$, the set$$\left{ \frac{a}{(a,b)}: a,b\in A\right}$$has size at least $h(n)$. Is $h(n) = \Theta(n^{2/3})$?

      theorem Erdos539.erdos_539.variants.isBigO_sq_cube_root :
      (fun (n : ) => (cofactorThreshold n)) =O[Filter.atTop] fun (n : ) => n ^ (2 / 3)

      Granville and Roesler [GR99] showed that $$h(n)\ll n^{2/3}$$.

      theorem Erdos539.erdos_539.variants.sq_cube_root_isBigO :
      (fun (n : ) => n ^ (2 / 3)) =O[Filter.atTop] fun (n : ) => (cofactorThreshold n)

      To prove erdos_539.variants.sq_cube_root it suffices to show $$n^{2/3}\ll h(n)$$.

      From [Er73]: The determination of $$ \lim_{n\to\infty}\frac{\log(h(n))}{\log(n)} $$ will perhaps be not too difficult.