|
| 1 | +/- |
| 2 | +Copyright 2025 The Formal Conjectures Authors. |
| 3 | +
|
| 4 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +you may not use this file except in compliance with the License. |
| 6 | +You may obtain a copy of the License at |
| 7 | +
|
| 8 | + https://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | +Unless required by applicable law or agreed to in writing, software |
| 11 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +See the License for the specific language governing permissions and |
| 14 | +limitations under the License. |
| 15 | +-/ |
| 16 | + |
| 17 | +import FormalConjectures.Util.ProblemImports |
| 18 | + |
| 19 | +/-! |
| 20 | +# Erdős Problem 740: Infinitary version of chromatic number and odd cycles |
| 21 | +
|
| 22 | +*Reference:* [erdosproblems.com/740](https://erdosproblems.com/740) |
| 23 | +-/ |
| 24 | + |
| 25 | +namespace Erdos740 |
| 26 | + |
| 27 | +variable {V : Type*} |
| 28 | + |
| 29 | +/-- A graph avoids odd cycles of length ≤ r if it contains no odd cycles of length at most r -/ |
| 30 | +def avoidsOddCyclesOfLength (G : SimpleGraph V) (r : ℕ) : Prop := |
| 31 | + ∀ (n : ℕ) (v : V) (c : G.Walk v v), c.length = n → n ≤ r → Odd n → ¬c.IsCycle |
| 32 | + |
| 33 | +/-- |
| 34 | +Does every graph $G$ with $\chi(G) = \infty$ contain, for every $r \in \mathbb{N}$, a subgraph |
| 35 | +$H \subseteq G$ such that $\chi(H) = \infty$ and $H$ contains no odd cycle of length $\le r$? |
| 36 | +-/ |
| 37 | +@[category research open, AMS 5] |
| 38 | +theorem erdos_740 : |
| 39 | + answer(sorry) ↔ |
| 40 | + ∀ (r : ℕ) (G : SimpleGraph V), |
| 41 | + G.chromaticNumber = ⊤ → |
| 42 | + ∃ (H : G.Subgraph), H.coe.chromaticNumber = ⊤ ∧ avoidsOddCyclesOfLength H.coe r := by |
| 43 | + sorry |
| 44 | + |
| 45 | +end Erdos740 |
0 commit comments