Simplify Sections 8 and 9 to endpoint AM--GM, all deficits, and q-only residuals - #38
Draft
SamPetkov wants to merge 34 commits into
Draft
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This is a stacked review follow-up to PR #36. It develops a shorter replacement route for manuscript Sections 8 and 9. No canonical manuscript, PDF, or theorem statement is changed.
The proposed architecture is:
2^U <= m^3versus its complement.Section 8 simplification I: AM--GM instead of Cauchy
From
use termwise AM--GM:
Each half is summed by dropping only one family of margin constraints and applying the multinomial theorem. This yields directly
removing the table-family Cauchy inequality,
(sum sqrt D)^2, and the polynomial margin-count loss.Section8SquareFreeAMGM.leanisolates the ordered-real implicationand its weighted version, so the formal endpoint route does not need to introduce square roots.
Section 8 simplification II: one all-high-deficit sum
A high multiplicity
j=m-esatisfies2e<m. The formalization-first exponent budget isConsequently
Uniformly over the four endpoint sizes,
All high multiplicities are summed by one geometric series. Their total cost is
This removes the near/middle split,
N(S),E_mid(S),Xi_4, and the residual large/small split from Section 8. Section 8 becomes a purely exposed-skeleton calculation.Section 9 simplification
The concise replacement records PR #37's q-only route:
in the intrinsic regime
2^U <= m^3, with the complementary exact boundwhen that regime fails.
Files
625/proofs/SECTIONS8_9_CONCISE_REPLACEMENT.md625/proofs/SECTIONS8_9_SIMPLIFIED_ROUTE.md625/proofs/SECTION8_FORMALIZATION_FIRST_ALL_DEFICIT.md625/formalization/Erdos625/Section8SquareFreeAMGM.lean625/formalization/Erdos625/Section8AllHighDeficitArithmetic.lean625/formalization/Erdos625/Section8SimplificationCore.lean625/experiments/sections8_9_simplification_check.py.github/workflows/erdos625-sections8-9-simplification-check.ymlFinite formal targets
The simplification core is intended to prove:
2e<m;Exact verification
The standard-library checker uses exact
Fractionarithmetic and explicit exceptions underpython -O. It verifies:n=10^10through10^200.The phase scans are diagnostics, not substitutes for the manuscript's phase asymptotics.
Validation status and scope boundary
The latest focused workflow builds the aggregate
Section8SimplificationCoreunder Lean 4.31 and--wfail; current jobs are queued. Keep this PR draft until that run is green.Before canonical replacement, independent review must still verify:
ENNReallanguage;PR #36 supplies the square-free endpoint transport core; PR #37 supplies the q-only attained-profile residual route.