Erdős Problem #367 (k = 3 case), conditional on abc #
We formalize:
- rad(m) — the radical (squarefree kernel) of m
- B₂(m) — the powerful (2-full) part of m
- LEMMA STAR: rad(m)² · B₂(m) ≤ m²
- Submultiplicativity of rad
- The abc conjecture (as a hypothesis)
- The main theorem: B₂(n) · B₂(n+1) · B₂(n+2) ≤ C'_ε · n^{2+ε}
Definitions #
The radical (squarefree kernel) of n: the product of distinct prime factors.
Equations
Instances For
The powerful (2-full) part of n: ∏_{p : v_p(n) ≥ 2} p^{v_p(n)}.
Equations
- Erdos367.Nat.powerfulPart n = ∏ p ∈ n.primeFactors with 2 ≤ n.factorization p, p ^ n.factorization p
Instances For
Basic properties of rad #
Basic properties of powerfulPart #
LEMMA STAR: rad(m)² · B₂(m) ≤ m² #
The key integer-arithmetic lemma. For every m > 0, rad(m)² * powerfulPart(m) ≤ m².
Proof sketch: Write m = ∏ p^{a_p}. Then rad(m)² * B₂(m) = ∏{a_p=1} p² · ∏{a_p≥2} p^{2+a_p} m² = ∏ p^{2a_p} Compare primewise: for a_p = 1, 2 ≤ 2; for a_p ≥ 2, 2+a_p ≤ 2a_p.
Submultiplicativity of rad #
rad(a * b) ≤ rad(a) * rad(b) for positive a, b. This follows because primeFactors(ab) = primeFactors(a) ∪ primeFactors(b), and the product over a union is ≤ the product of products (intersection terms ≥ 1).
The abc conjecture (stated as a hypothesis) #
The abc conjecture: for every ε > 0, there exists C > 0 such that for all coprime positive integers a, b with a + b = c, we have c ≤ C · rad(abc)^{1+ε}.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Key identity and the abc application step #
Main theorem: Erdős #367 (k=3), conditional on abc #
Theorem. Assume abc. For every ε > 0, there exists C' > 0 such that for all n ≥ 1, B₂(n) · B₂(n+1) · B₂(n+2) ≤ C' · n^{2+ε}.
The proof proceeds in two stages: (1) Integer core: Use the squaring trick + abc to get (n+1)² ≤ C_ε · rad(n(n+1)(n+2))^{1+ε}, then apply rad submultiplicativity and LEMMA STAR to bound the radical in terms of n and the powerful parts. (2) Real-analytic rearrangement: Rearrange the resulting inequality using real-valued exponents to isolate B₂(n)B₂(n+1)B₂(n+2) ≤ C'·n^{2+ε}.
Helper: product of three LEMMA STAR instances (pure ℕ) #
Main theorem (Erdős #367, k=3 case, conditional on abc). For every ε > 0, there exists C' > 0 such that for all n ≥ 1, B₂(n) · B₂(n+1) · B₂(n+2) ≤ C' · n^{2+ε}.