The r = 3 case of the "13/9 theorem" (Erdős #367 r-full extension) #
This file formalizes an unconditional, elementary lower-bound construction (the r = 3
case of a new lower bound for the r-full extension of Erdős problem #367).
rFullPart r m is the "r-full part" of m: the product of the prime powers p ^ v
occurring in the factorization of m for which r ≤ v_p(m). We write B₃ m := rFullPart 3 m.
The construction fixes a prime s ≠ 3, a "seed" t₀ with 1 ≤ t₀ ≤ s^3 such that
s^3 ∣ g t₀, and sets t := t₀ + s^3, n := (t^3 - 1)^3. The three main results are:
T1:B₃ n = n;T2:t^3 * s^3 ∣ B₃ (n+1);T3:512 * (B₃ n * B₃ (n+1))^9 > n^13, the integer form ofB₃ n · B₃ (n+1) > n^{13/9}/2.
The "prime supply" (the existence of infinitely many suitable pairs (s, t₀)) is kept as a
hypothesis and is not part of this development.
The r-full part of m: the product of prime powers p ^ v_p(m) with r ≤ v_p(m).
Equations
- Core139.rFullPart r m = (Finsupp.filter (fun (p : ℕ) => r ≤ m.factorization p) m.factorization).prod fun (p v : ℕ) => p ^ v
Instances For
The factorization of rFullPart r M is the filtered factorization.
The construction #
The constructed integer n = (t^3 - 1)^3.
Equations
- Core139.nval s t₀ = (Core139.tval s t₀ ^ 3 - 1) ^ 3
Instances For
The three theorems #
(T1) The 3-full part of n is n. Since n = (t^3-1)^3 is a perfect cube with
t^3 - 1 ≥ 1, this is rFullPart_pow.
(The hypotheses hs3 and hroot are part of the construction's hypothesis structure but
turn out to be unnecessary for this particular statement.)
(T2) t^3 * s^3 divides the 3-full part of n + 1. Both t^3 and s^3 divide n+1
(via n+1 = t^3 g t and s^3 ∣ g t), each survives into B₃ by pow_dvd_rFullPart, and
they are coprime since s ∤ t.
(T3) The integer form of B₃(n) B₃(n+1) > n^{13/9} / 2:
512 * (B₃ n * B₃ (n+1))^9 > n^13.
Proof chain: B₃ n = n and t^3 s^3 ≤ B₃ (n+1), with t ≤ 2 s^3 giving
2 (B₃ n · B₃ (n+1)) ≥ n t^4; raising to the 9-th power and using t^9 > n (so
t^36 > n^4) yields 512 (B₃ n · B₃ (n+1))^9 ≥ n^9 t^36 > n^13.