Documentation

FormalConjectures.ErdosProblems.«123»

Erdős Problem 123 #

References:

A set A of natural numbers is d-complete if every sufficiently large integer is the sum of distinct elements of A such that no element divides another.

Reference: [ErLe96] Erdős, P. and Lewin, M., $d$-complete sequences of integers. Math. Comp. (1996).

Equations
Instances For
    def Erdos123.IsSnug (ε : ) (A : Finset ) :

    Characterizes a "snug" finite set of natural numbers: all elements are within a multiplicative factor $(1 + ε)$ of the minimum. Specifically, for a finite set $A$ and $ε > 0$, all $a ∈ A$ satisfy $a < (1 + ε) · min(A)$.

    Equations
    Instances For

      Predicate for pairwise coprimality of three integers. Requires all three input values to be pairwise coprime to each other.

      Equations
      Instances For
        theorem Erdos123.erdos_123 :
        sorry a > 1, b > 1, c > 1, PairwiseCoprime a b cIsDComplete ((Submonoid.powers a) * (Submonoid.powers b) * (Submonoid.powers c))

        Erdős Problem #123

        Let $a, b, c$ be three integers which are pairwise coprime. Is every large integer the sum of distinct integers of the form $a^k b^l c^m$ ($k, l, m ≥ 0$), none of which divide any other?

        Equivalently: is the set $\{a^k b^l c^m : k, l, m \geq 0\}$ d-complete?

        Note: For this not to reduce to the two-integer case, we need the integers to be greater than one and distinct.

        Erdős and Lewin proved this conjecture when $a = 3$, $b = 5$, and $c = 7$.

        Reference: [ErLe96] Erdős, P. and Lewin, Mordechai, $d$-complete sequences of integers. Math. Comp. (1996), 837-840.

        A simpler case: the set of numbers of the form $2^k 3^l$ ($k, l ≥ 0$) is d-complete.

        This was initially conjectured by Erdős in 1992, who called it a "nice and difficult" problem, but it was quickly proven by Jansen and others using a simple inductive argument:

        • If $n = 2m$ is even, apply the inductive hypothesis to $m$ and double all summands.
        • If $n$ is odd, let $3^k$ be the largest power of $3$ with $3^k ≤ n$, and apply the inductive hypothesis to $n - 3^k$ (which is even).

        Reference: [Er92b] Erdős, Paul, Some of my favourite problems in various branches of combinatorics. Matematiche (Catania) (1992), 231-240.

        theorem Erdos123.erdos_123.variants.powers_2_3_5_snug :
        sorry ε > 0, ∀ᶠ (n : ) in Filter.atTop, ∃ (A : Finset ), A (Submonoid.powers 2) * (Submonoid.powers 3) * (Submonoid.powers 5) IsSnug ε A xA, x = n

        A stronger conjecture for numbers of the form $2^k 3^l 5^j$.

        For any $ε > 0$, all large integers $n$ can be written as the sum of distinct integers $b_1 < ... < b_t$ of the form $2^k 3^l 5^j$ where $b_t < (1 + ϵ) b_1$.