Theorem 10.3 — Eventual existence of three-family residual partition
OpenErdos390.eventual_three_family_residual_existsasymptoticscombinatoricserdos-problemsnumber-theory
Theorem 10.3 (Eventual Existence of Three-Family Residual Partition)
Fix a constant , and put .
For all sufficiently large , given any divisor and central factor subset satisfying and , there exist three mutually disjoint factor subsets , each disjoint from , satisfying:
This isolates the analytical and rounding core of the residual construction (Shouqiao Wang's BankPaperExactificationApplication.lean and BankPaperUpperConstructionReduction.lean), combining deterministic fixed factors, signed bank adjustments, and Beck-Fiala floating rounding.
Preamble
import Definitions.Def_erdos390_problem open Filter
Formal statement
namespace Erdos390
open Filter
theorem eventual_three_family_residual_exists :
∀ 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 →
∃ (fixed bank candidates : Finset ℕ),
fixed ⊆ factorInterval n (2 * n + Nat.ceil (c * secondOrderScale n)) ∧
bank ⊆ factorInterval n (2 * n + Nat.ceil (c * secondOrderScale n)) ∧
candidates ⊆ factorInterval n (2 * n + Nat.ceil (c * secondOrderScale n)) ∧
Disjoint central fixed ∧
Disjoint central bank ∧
Disjoint central candidates ∧
Disjoint fixed bank ∧
Disjoint (fixed ∪ bank) candidates ∧
fixed.prod id * bank.prod id * candidates.prod id * 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 9-10, BankPaperExactificationApplication.lean (GitHub 61325b1)