Add Erdős Problem 111 (bipartite edge deletion for uncountable chromatic graphs)#3785
Add Erdős Problem 111 (bipartite edge deletion for uncountable chromatic graphs)#3785henrykmichalewski wants to merge 4 commits into
Conversation
…matic graphs Formalises Problem 111 on how many edges must be deleted from an uncountably chromatic graph to make it bipartite, in terms of the function h_G(n). Adds definitions bipartiteDistance and hG, the main open theorem about h_G(n)/n → ∞, the Erdős-Hajnal-Szemerédi lower and upper bound variants, and records Erdős's conjectured sharper bound. Reference: https://www.erdosproblems.com/111 Assisted by Claude (Anthropic).
|
Closes #341 |
…e docstring Insert canonical statement text + source URL from sage/conjecturing/sources/erdos_statements.json into the module docstring, matching the Round C pass on the private repo. The theorem statements and references are unchanged.
| @[category research open, AMS 5] | ||
| theorem erdos_111 : answer(sorry) ↔ | ||
| ∀ (V : Type) (G : SimpleGraph V), G.chromaticCardinal = ℵ_ 1 → | ||
| ∀ C : ℝ, ∃ n : ℕ, 0 < n ∧ C * n < hG G n := by |
There was a problem hiding this comment.
Does ∀ C, ∃ n, C * n < hG G n quite capture h_G(n)/n → ∞? It gives unboundedness of the ratio, but not eventual growth along atTop. Could you state this using a filter/Tendsto formulation, or at least as ∀ C, ∀ N, ∃ n ≥ N, C * n < ...?
| become bipartite. | ||
| -/ | ||
| @[category research solved, AMS 5] | ||
| theorem erdos_111.variants.lower_bound : |
There was a problem hiding this comment.
Is this lower-bound variant meant to be the same assertion as the main open question? It appears to have essentially the same conclusion as erdos_111 but is marked solved. Could you either weaken it to the known theorem you want to record, or keep it open/omit it if the intended statement is exactly the conjecture?
…ariant (Paul-Lez review) Two fixes per Paul-Lez's review: - The headline previously stated `∀ C, ∃ n, C * n < hG G n`, which only gives unboundedness of the ratio rather than `h_G(n)/n → ∞` along atTop. Restated using `Filter.Tendsto … atTop atTop`. - The `lower_bound` variant had the same conclusion as the open headline but was marked `research solved`. Weakened it to the truly known fact: $h_G(n) \geq c \cdot n$ eventually for some `c > 0`.
|
Thanks for the review @PaulLez. Pushed 8b0c922 on |
mo271
left a comment
There was a problem hiding this comment.
Nice formalization with well-chosen definitions! A few issues:
- Erdős conjecture variant uses = ℵ₁ but source says ≥ ℵ₁
The erdos_conjecture variant (line 167) states the upper bound for graphs with chromaticCardinal = ℵ_ 1, but the source explicitly says "for every graph
- Misleading docstring for lower_bound
Line 53 says "$h_G(n) \gg n$: this holds (with
- Problem statement repeated
The problem appears in the verbatim quote (line 23) and again in the "Problem statement" section (lines 43–47). It should appear only once.
- Missing cross-reference to Problem 74
The source page explicitly says "See also [74]", but the file doesn't mention this related
…fy lower_bound docstring + dedupe statement + cross-ref to 74 (mo271 review)
|
Thanks @mo271 for the review. Pushed
Local |
fixes #341
Formalises Erdős Problem 111: for a graph$G$ with $\chi(G) = \aleph_1$ , study the function $h_G(n)$ measuring the minimum edges that must be deleted from a subgraph of order $n$ to render it bipartite.
Contents
bipartiteDistance(the minimum number of edges to delete to reach a bipartite graph) andhG.Assisted by Claude (Anthropic).