-
Notifications
You must be signed in to change notification settings - Fork 274
Add Erdős Problem 1171 (ω₁² multicolor partition) #3789
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
henrykmichalewski
wants to merge
3
commits into
google-deepmind:main
Choose a base branch
from
henrykmichalewski:add-problem-1171
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+162
−0
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,162 @@ | ||
| /- | ||
| Copyright 2026 The Formal Conjectures Authors. | ||
|
|
||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
|
|
||
| https://www.apache.org/licenses/LICENSE-2.0 | ||
|
|
||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| -/ | ||
|
|
||
| import FormalConjectures.Util.ProblemImports | ||
|
|
||
| /-! | ||
| # Erdős Problem 1171 | ||
|
|
||
| **Verbatim statement (Erdős #1171, status O):** | ||
| > Is it true that, for all finite $k<\omega$,\[\omega_1^2\to (\omega_1\omega, 3,\ldots,3)_{k+1}^2?\] | ||
|
|
||
| **Source:** https://www.erdosproblems.com/1171 | ||
|
|
||
| **Notes:** OPEN | ||
|
|
||
|
|
||
| *Reference:* [erdosproblems.com/1171](https://www.erdosproblems.com/1171) | ||
|
|
||
| *References for known results:* | ||
| - [Va99, 7.84] Vardi, Menachem, *Partition Relations, Problem Collection*, available online. | ||
| - [EH74] Erdős, Paul and Hajnal, András, Unsolved and solved problems in set theory. Proceedings | ||
| of the Tarski symposium (1974), 269-287. | ||
| - [Ba89b] Baumgartner, James E., Partition relations for countable topological spaces. J. Combin. | ||
| Theory Ser. A (1986), 38-54. | ||
|
|
||
| ## Problem Statement | ||
|
|
||
| Is it true that, for all finite $k$ (with $k < \omega$), | ||
| $$\omega_1^2 \to (\omega_1 \cdot \omega, \underbrace{3, \ldots, 3}_{k})^2_{k+1}?$$ | ||
|
|
||
| This is a multicolor generalization of the Erdős–Hajnal theorem. It asks whether every | ||
| $(k+1)$-coloring of the pairs (edges) of the complete graph on $\omega_1^2$ either: | ||
| - produces a monochromatic set of order type $\omega_1 \cdot \omega$ in color 0, or | ||
| - produces a monochromatic triangle $K_3$ in some non-zero color $i \in \{1, \ldots, k\}$. | ||
|
|
||
| ## Known Results | ||
|
|
||
| - **Erdős–Hajnal** [EH74]: $\omega_1^2 \to (\omega_1 \cdot \omega, 3)^2$ (the $k = 1$ case). | ||
| This is the binary partition relation with one "large" color and one "triangle" color. | ||
| - **Baumgartner** [Ba89b]: Under a form of Martin's axiom (MA), the binary relation | ||
| $\omega_1 \cdot \omega \to (\omega_1 \cdot \omega, 3)^2$ holds. | ||
|
|
||
| ## Overview | ||
|
|
||
| The key novelty here is `OrdinalMultiColorRamsey`: a $(k+1)$-color generalization of the | ||
| binary ordinal Ramsey relation. In `OrdinalMultiColorRamsey α β γ k`: | ||
| - `α` is the ordinal whose pairs are colored (the vertex set), | ||
| - `β` is the ordinal type required for a color-0 clique, | ||
| - `γ` is the clique size (as a cardinal) required for each non-zero color, | ||
| - `k` is the number of non-zero colors (so there are `k+1` colors total). | ||
|
|
||
| The open question `erdos_1171` asks whether this holds for all finite `k` with | ||
| `α = ω₁²`, `β = ω₁ · ω`, `γ = 3`. | ||
| -/ | ||
|
|
||
| open Cardinal Ordinal SimpleGraph | ||
|
|
||
| namespace Erdos1171 | ||
|
|
||
| universe u | ||
|
|
||
| /- ### The multicolor ordinal partition relation -/ | ||
|
|
||
| /-- | ||
| `OrdinalMultiColorRamsey α β γ k` asserts the multicolor partition relation | ||
| `α → (β, γ, γ, …, γ)²_{k+1}` (with `k` copies of `γ`). | ||
|
|
||
| It states: for any function `col : Sym2 α.ToType → Fin (k + 1)` assigning one of `k+1` colors | ||
| to each pair from `α`, one of the following holds: | ||
| * Color 0: there is a set `s ⊆ α.ToType` of order type `β` that is monochromatic in color 0 | ||
| (i.e. every pair in `s` gets color 0), or | ||
| * Color i (for some `i : Fin k`): there is a set `s ⊆ α.ToType` with `#s = γ` that is | ||
| monochromatic in color `i.succ` (i.e. every pair in `s` gets color `i.succ`). | ||
|
|
||
| When `k = 1` this reduces to the binary partition relation `α → (β, γ)²`. | ||
| -/ | ||
| def OrdinalMultiColorRamsey (α β : Ordinal.{u}) (γ : Cardinal.{u}) (k : ℕ) : Prop := | ||
| ∀ col : Sym2 α.ToType → Fin (k + 1), | ||
| -- Either color-0 clique of order type β ... | ||
| (∃ s : Set α.ToType, | ||
| (∀ x ∈ s, ∀ y ∈ s, x ≠ y → col s(x, y) = 0) ∧ | ||
| typeLT s = β) ∨ | ||
| -- ... or for some non-zero color i, a clique of cardinality γ. | ||
| (∃ (i : Fin k) (s : Set α.ToType), | ||
| (∀ x ∈ s, ∀ y ∈ s, x ≠ y → col s(x, y) = i.succ) ∧ | ||
| #s = γ) | ||
|
|
||
| /- ### The main open problem -/ | ||
|
|
||
| /-- | ||
| **OPEN**: Is it true that for all finite $k < \omega$, | ||
| $$\omega_1^2 \to (\omega_1 \cdot \omega, \underbrace{3, \ldots, 3}_{k})^2_{k+1}?$$ | ||
|
|
||
| In any $(k+1)$-coloring of the pairs of the complete graph on $\omega_1^2$, either: | ||
| * there is a color-0 set of order type $\omega_1 \cdot \omega$, or | ||
| * there is a monochromatic triangle $K_3$ in some non-zero color. | ||
|
|
||
| The case $k = 1$ (binary, `erdos_1171.variants.k_one`) is the Erdős–Hajnal theorem. | ||
|
|
||
| **Status**: OPEN. | ||
| -/ | ||
| @[category research open, AMS 5] | ||
| theorem erdos_1171 : | ||
| answer(sorry) ↔ | ||
| ∀ k : ℕ, OrdinalMultiColorRamsey (ω_ 1 ^ 2) (ω_ 1 * ω) 3 k := by | ||
| sorry | ||
|
|
||
| /- ### Variants and known results -/ | ||
|
|
||
| namespace erdos_1171.variants | ||
|
|
||
| /-- | ||
| **Erdős–Hajnal theorem**: The case $k = 1$. | ||
|
|
||
| $\omega_1^2 \to (\omega_1 \cdot \omega, 3)^2$: in any 2-coloring of the pairs of $K_{\omega_1^2}$, | ||
| there is either a color-0 set of order type $\omega_1 \cdot \omega$, or a color-1 triangle. | ||
|
|
||
| This is the binary Ramsey relation `OrdinalRamsey (ω_ 1 ^ 2) (ω_ 1 * ω) 3`, which can be | ||
| seen as the $k = 1$ instance of `OrdinalMultiColorRamsey (ω_ 1 ^ 2) (ω_ 1 * ω) 3 1`. | ||
|
|
||
| **Status**: Proved (Erdős–Hajnal [EH74]). | ||
| -/ | ||
| @[category research solved, AMS 5] | ||
| theorem k_one : OrdinalMultiColorRamsey (ω_ 1 ^ 2) (ω_ 1 * ω) 3 1 := by | ||
| sorry | ||
|
|
||
| /-- | ||
| **Reduction**: `OrdinalMultiColorRamsey` is monotone in the number of non-zero colors. | ||
|
|
||
| If the `k`-color version `OrdinalMultiColorRamsey α β γ k` holds, then the `j`-color version | ||
| holds for all `j ≤ k`. A `j+1`-coloring can be embedded into a `k+1`-coloring by composing | ||
| with the inclusion `Fin (j+1) ↪ Fin (k+1)`, so a witness for the `k`-color version | ||
| provides a witness for the `j`-color version. | ||
| -/ | ||
| @[category API, AMS 5] | ||
| theorem mono_k {j k : ℕ} (hjk : j ≤ k) | ||
|
Paul-Lez marked this conversation as resolved.
|
||
| (hk : OrdinalMultiColorRamsey (ω_ 1 ^ 2) (ω_ 1 * ω) 3 k) : | ||
| OrdinalMultiColorRamsey (ω_ 1 ^ 2) (ω_ 1 * ω) 3 j := by | ||
| sorry | ||
|
|
||
| /- **Baumgartner under MA (currently deferred)**: Assuming a form of Martin's Axiom, | ||
| the binary partition relation `ω₁·ω → (ω₁·ω, 3)²` holds [Ba89b]. We omit the Lean | ||
| statement for now because faithfully encoding the exact form of MA requires more work; | ||
| stating the result as `True → ...` would effectively make it unconditional. To be | ||
| restored once an appropriate MA predicate is available in the formalization. -/ | ||
|
|
||
| end erdos_1171.variants | ||
|
|
||
| end Erdos1171 | ||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.