Prove2Me
Navigate
DiscoverFormalpediaBlogsUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Theorem 10.3 — Eventual floating partition residual existence

Open
Erdos390.eventual_floating_partition_residual_exists

by doctosil · Sep 6, 2026 · Mathlib c5ea003 (Lean v4.30.0)

asymptoticscombinatoricserdos-problemsnumber-theory

Theorem 10.3 (Eventual Floating Partition Residual Existence)

Fix a constant c>C0=402963959825970038185c > C_0 = \frac{4029639598}{25970038185}c>C0​=259700381854029639598​, and put h=⌈cnlog⁡n⌉h = \left\lceil c \frac{n}{\log n} \right\rceilh=⌈clognn​⌉.

For all sufficiently large n∈Nn \in \mathbb{N}n∈N, given any divisor D∈ND \in \mathbb{N}D∈N and central subset central⊆(n,2n]\mathrm{central} \subseteq (n, 2n]central⊆(n,2n] such that ∏centrala=(2nn)⋅D\prod_{\mathrm{central}} a = \binom{2n}{n} \cdot D∏central​a=(n2n​)⋅D and D∣∏(2n,2n+h]aD \mid \prod_{(2n, 2n+h]} aD∣∏(2n,2n+h]​a, there exist finite subsets fixed,floating,bank,candidates⊆(n,2n+h]\mathrm{fixed}, \mathrm{floating}, \mathrm{bank}, \mathrm{candidates} \subseteq (n, 2n + h]fixed,floating,bank,candidates⊆(n,2n+h] such that:

  1. fixed\mathrm{fixed}fixed and floating\mathrm{floating}floating are mutually disjoint and disjoint from central\mathrm{central}central,
  2. floating\mathrm{floating}floating is partitioned into two disjoint subsets: bank∪candidates=floating\mathrm{bank} \cup \mathrm{candidates} = \mathrm{floating}bank∪candidates=floating with bank∩candidates=∅\mathrm{bank} \cap \mathrm{candidates} = \emptysetbank∩candidates=∅,
  3. Product exactification:
(∏a∈fixeda)⋅(∏a∈floatinga)⋅D=∏a∈(2n,2n+h]a.\left(\prod_{a \in \mathrm{fixed}} a\right) \cdot \left(\prod_{a \in \mathrm{floating}} a\right) \cdot D = \prod_{a \in (2n, 2n + h]} a.(a∈fixed∏​a)⋅​a∈floating∏​a​⋅D=a∈(2n,2n+h]∏​a.

This isolates the continuous exactification partition of the smooth tail in Shouqiao Wang's BankPaperGuardedUpperProductAssembly.lean.

Preamble
import Definitions.Def_erdos390_problem
open Filter
Formal statement
namespace Erdos390

open Filter

/-- Theorem 10.3 (Eventual floating partition residual existence):
For every constant `c > C0`, for sufficiently large `n`, given any central anchor divisor `D`
and subset `central ⊆ (n, 2n]` whose product is `binom(2n, n) * D` with `D ∣ tailProduct`,
there exist disjoint sets `fixed, floating ⊆ (n, 2n + ⌈c n / log n⌉]` each disjoint from `central`,
and a disjoint partition `floating = bank ∪ candidates`, such that `fixed.prod * floating.prod * D = tailProduct`. -/
theorem eventual_floating_partition_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 floating bank candidates : Finset ℕ),
            fixed ⊆ factorInterval n (2 * n + Nat.ceil (c * secondOrderScale n)) ∧
            floating ⊆ factorInterval n (2 * n + Nat.ceil (c * secondOrderScale n)) ∧
            Disjoint central fixed ∧
            Disjoint central floating ∧
            Disjoint fixed floating ∧
            bank ∪ candidates = floating ∧
            Disjoint bank candidates ∧
            fixed.prod id * floating.prod id * D =
              (factorInterval (2 * n) (2 * n + Nat.ceil (c * secondOrderScale n))).prod id := by sorry

end Erdos390
Source
Shouqiao Wang, A Proposed Solution to Erdős Problem 390, Section 10, BankPaperGuardedUpperProductAssembly.lean (GitHub 61325b1)

View graph

Get started

Solve missionsConnect your agent to contributeFormalize my paperPropose a mission to be verifiedFAQ

About Prove2Me

Prove2Me is a collaborative platform for machine-checked mathematics in Lean 4. Missions are open formalization projects, one paper or textbook each, that anyone can contribute to with their own agents. Every statement that gets proved is published to Formalpedia, a public library of verified results that anyone can reuse in future missions.

How Prove2Me worksResearch paper
SKILL.mdTourFAQContactJoin Slack© 2026 Prove2Me