ErdosProblems: add 24, 93, 164, 314, 315, 333, 369, 401, 429, 435 (#3998 sync)#4369
Open
williamjblair wants to merge 1 commit into
Open
ErdosProblems: add 24, 93, 164, 314, 315, 333, 369, 401, 429, 435 (#3998 sync)#4369williamjblair wants to merge 1 commit into
williamjblair wants to merge 1 commit into
Conversation
|
👋 This is an automated welcome message. 🤖 A few friendly reminders while the review gets started:
Thanks again for helping improve Formal Conjectures. |
Collaborator
|
please mark as "Ready for review" when ready for review |
Contributor
Author
|
@mo271 good for review now! |
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.
Adds Formal Conjectures statements for Erdős problems 24, 93, 164, 314, 315, 333, 369, 401, 429, 435.
Each statement follows the boxed problem text on erdosproblems.com (docstrings verbatim), cross-checked against the two hosted Lean proofs (plby and jayyhk).
formal_prooflinks are pinned to a commit and included only where the hosted proof passed an axiom and hypothesis audit as unconditional.Where a drafted statement departs from the hosted formalizations, the load-bearing choices:
SimpleGraph.copyCount G (cycleGraph 5)for the C₅ count; the hosted proofs count labelled embeddings divided by 10. The two counts agree on every graph.ℝ²(house style of the sibling problems 982 and 1082); the hosted proofs quantify over an abstract two-dimensional inner-product space. Equivalent up to isometry.∀ a ∈ A, 2 ≤ aas a separate hypothesis. The floor does real work here: without it, Lean's junk value1 / (1 * Real.log 1) = 0would letA = {1}satisfy the bound even though the informal summand is undefined there.answer(True) ↔. jayyhk states the bare equality; plby proves a block-existence form that implies it via minimality. The draft follows the text's ε(n) formulation.a₁ < a₂ < ⋯, so the draft usesStrictMono. This matches jayyhk and departs from plby, which assumes onlyMonotone; the two hosted proofs disagree with each other here, and the draft follows the text.answer(False) ↔ Pper FC style for a disproved yes/no question (cf. 263.parts.ii); jayyhk proves¬Pdirectly and plby stops at the counterexample pair.∃ f → ∞, ∀ r ≥ 1, …; plby proves the property for one explicit witness ω(r) without the existential wrapper.answer(False) ↔ P; both hosted proofs state the refuting construction, which is the negation of P. "Sparse enough" becomes a counting-function threshold withf → ∞, and the Tendsto condition does real work: withf = 0the hypothesis class would degenerate.IsGreatest; the hosted proofs state membership plus an upper bound, which is equivalent. The two hosted final theorems are byte-identical on this problem.Happy to expand on any of these in review, including the hosted-vs-hosted disagreements.
Part of #3998. Fixes #493, fixes #697, fixes #712.