Theorem 10.3 — Central anchor existence and tail divisibility
ProvedErdos390.eventual_central_anchor_certificateasymptoticscombinatoricserdos-problemsnumber-theory
Theorem 10.3 (Central Anchor Existence and Tail Divisibility)
Fix a constant , and put .
For all sufficiently large , there exist a positive integer divisor and a central factor subset such that:
and divides the literal product of the upper tail:
This isolates the existence of the three-family routed central anchor set (Shouqiao Wang's CentralAnchorExistence.lean), ensuring that the promotion powers of two and large central cofactors divide the upper tail product.
Preamble
import Definitions.Def_erdos390_problem open Filter
Formal statement
namespace Erdos390
open Filter
/-- Theorem 10.3 (Central anchor certificate):
For every constant `c > C0`, for sufficiently large `n`, there exists an auxiliary
divisor `D` and a central subset of `(n, 2n]` whose product is `binom(2n, n) * D`,
such that `D` divides the full upper tail product on `(2n, 2n + ⌈c n / log n⌉]`. -/
theorem eventual_central_anchor_certificate :
∀ c : ℝ, C0 < c →
∀ᶠ n : ℕ in atTop,
∃ (D : ℕ) (central : Finset ℕ),
central ⊆ factorInterval n (2 * n) ∧
central.prod id = Nat.choose (2 * n) n * D ∧
D ∣ (factorInterval (2 * n) (2 * n + Nat.ceil (c * secondOrderScale n))).prod id := by sorry
end Erdos390Source
Shouqiao Wang, A Proposed Solution to Erdős Problem 390, Section 10, CentralAnchorExistence.lean (GitHub 61325b1)