-
Notifications
You must be signed in to change notification settings - Fork 277
Add 10 WOWII open conjectures (batch 2) #3796
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
9
commits into
google-deepmind:main
Choose a base branch
from
henrykmichalewski:wowii-batch-2
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.
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
cf16c4a
feat(WrittenOnTheWallII): add 10 open conjectures (batch 2)
henrykmichalewski 58ef039
Address review: correct WOWII status labels per current website
henrykmichalewski e19d0c4
docs: add verbatim source statement to module docstring
henrykmichalewski 990bee6
fix(WOWII): correct conjecture 23/24 numbering shift (re #3823, #3824)
henrykmichalewski 80c04c5
fix(WOWII): GraphConjecture84 denominator + GraphConjecture189 σ docs…
henrykmichalewski 0418c4d
fix(WOWII): move α/instance quantification under answer(False) in con…
henrykmichalewski 510a95d
fix(WOWII): σ(G) is the second-smallest degree, not the 2-domination …
henrykmichalewski c388e18
Merge upstream/main into wowii-batch-2
henrykmichalewski 03948e3
fix(WOWII/conjecture85): drop unused hypothesis on Real.sqrt sanity c…
henrykmichalewski 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
81 changes: 81 additions & 0 deletions
81
FormalConjectures/WrittenOnTheWallII/GraphConjecture189.lean
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,81 @@ | ||
| /- | ||
| Copyright 2025 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 | ||
|
|
||
| /-! | ||
| # Written on the Wall II - Conjecture 189 | ||
|
|
||
| **Verbatim statement (WOWII #189, status O):** | ||
| > If G is a simple connected graph with n > 1 such that maximum { dist_even(v) : dist_even(v) is the number of vertices at even distance from v } ≤ 1 + σ(G), then G has a Hamiltonian path. | ||
|
|
||
| **Source:** http://cms.uhd.edu/faculty/delavinae/research/wowII/all.html#conj189 | ||
|
|
||
|
|
||
| *Reference:* | ||
| [E. DeLaVina, Written on the Wall II, Conjectures of Graffiti.pc](http://cms.dt.uh.edu/faculty/delavinae/research/wowII/) | ||
| -/ | ||
|
|
||
| namespace WrittenOnTheWallII.GraphConjecture189 | ||
|
|
||
| open Classical SimpleGraph | ||
|
|
||
| variable {α : Type*} [Fintype α] [DecidableEq α] [Nontrivial α] | ||
|
|
||
| /-- `distEven G v` counts the number of vertices at even distance from `v` in `G`. -/ | ||
| noncomputable def distEven (G : SimpleGraph α) (v : α) : ℕ := | ||
| (Finset.univ.filter (fun w => Even (G.dist v w))).card | ||
|
|
||
| /-- The **second-smallest degree** of `G`'s degree sequence — DeLaVina's | ||
| `σ(G)` per the WOWII definitions popup (defEntry 65): "order the degree | ||
| sequence in nondecreasing order `d_1 ≤ d_2 ≤ … ≤ d_n`, the second smallest | ||
| degree of the sequence is the 2nd entry". For graphs with `n ≤ 1` we | ||
| conventionally return `0`. -/ | ||
| noncomputable def secondSmallestDegree (G : SimpleGraph α) [DecidableRel G.Adj] : ℕ := | ||
| (degreeSequence G).getD 1 0 | ||
|
|
||
| /-- | ||
| WOWII [Conjecture 189](http://cms.uhd.edu/faculty/delavinae/research/wowII/all.html#conj189) | ||
| (status O): | ||
|
|
||
| For a simple connected graph `G`, if `max_v distEven(v) ≤ 1 + σ(G)`, | ||
| then `G` has a Hamiltonian path. | ||
|
|
||
| Here `distEven(v)` is the number of vertices at even distance from `v`, and | ||
| `σ(G)` is the **second-smallest degree** of `G`'s degree sequence (per | ||
| WOWII defEntry 65). | ||
| -/ | ||
| @[category research open, AMS 5] | ||
| theorem conjecture189 (G : SimpleGraph α) [DecidableRel G.Adj] (h : G.Connected) | ||
| (hσ : (Finset.univ.image (distEven G)).max' (by simp) ≤ 1 + secondSmallestDegree G) : | ||
| ∃ a b : α, ∃ p : G.Walk a b, p.IsHamiltonian := by | ||
| sorry | ||
|
|
||
| -- Sanity checks | ||
|
|
||
| /-- The second-smallest degree is nonneg. -/ | ||
| @[category test, AMS 5] | ||
| example (G : SimpleGraph (Fin 3)) [DecidableRel G.Adj] : | ||
| 0 ≤ secondSmallestDegree G := Nat.zero_le _ | ||
|
|
||
| /-- `distEven G v` is positive for any vertex `v`. -/ | ||
| @[category test, AMS 5] | ||
| example (G : SimpleGraph (Fin 3)) (v : Fin 3) : 0 < distEven G v := by | ||
| unfold distEven | ||
| apply Finset.card_pos.mpr | ||
| exact ⟨v, Finset.mem_filter.mpr ⟨Finset.mem_univ _, ⟨0, by simp [SimpleGraph.dist_self]⟩⟩⟩ | ||
|
|
||
| end WrittenOnTheWallII.GraphConjecture189 |
75 changes: 75 additions & 0 deletions
75
FormalConjectures/WrittenOnTheWallII/GraphConjecture199.lean
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,75 @@ | ||
| /- | ||
| Copyright 2025 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 | ||
|
|
||
| /-! | ||
| # Written on the Wall II - Conjecture 199 | ||
|
|
||
| **Verbatim statement (WOWII #199, status O):** | ||
| > If G is a simple connected graph with n > 1 such that tree(G) - 2 ≤ κ(G), then G has a Hamiltonian path. | ||
|
|
||
| **Source:** http://cms.uhd.edu/faculty/delavinae/research/wowII/all.html#conj199 | ||
|
|
||
|
|
||
| *Reference:* | ||
| [E. DeLaVina, Written on the Wall II, Conjectures of Graffiti.pc](http://cms.dt.uh.edu/faculty/delavinae/research/wowII/) | ||
| -/ | ||
|
|
||
| namespace WrittenOnTheWallII.GraphConjecture199 | ||
|
|
||
| open Classical SimpleGraph | ||
|
|
||
| variable {α : Type*} [Fintype α] [DecidableEq α] [Nontrivial α] | ||
|
|
||
| /-- `largestInducedTreeSize G` is the number of vertices in a largest induced subtree of `G`. -/ | ||
| noncomputable def largestInducedTreeSize (G : SimpleGraph α) : ℕ := | ||
| sSup { n | ∃ s : Finset α, s.card = n ∧ (G.induce (s : Set α)).IsTree } | ||
|
|
||
| /-- The vertex connectivity `κ(G)`: the minimum number of vertices whose removal | ||
| disconnects the graph (or `n - 1` when the graph is complete). | ||
| Vertex connectivity is not yet in Mathlib; we define it here as the minimum size of | ||
| a vertex separator, where removing `S` leaves the induced subgraph on `Sᶜ` disconnected. | ||
| -- TODO: replace with a Mathlib definition when one becomes available. -/ | ||
| noncomputable def vertexConnectivity (G : SimpleGraph α) : ℕ := | ||
| if Fintype.card α ≤ 1 then 0 | ||
| else sInf { k | ∃ S : Finset α, S.card = k ∧ | ||
| (¬(G.induce (↑Sᶜ : Set α)).Connected ∨ S.card = Fintype.card α - 1) } | ||
|
|
||
| /-- | ||
| WOWII [Conjecture 199](http://cms.dt.uh.edu/faculty/delavinae/research/wowII/) | ||
|
|
||
| For a simple connected graph `G`, if `tree(G) - 2 ≤ κ(G)`, then `G` has a Hamiltonian path. | ||
| Here `tree(G)` is the number of vertices in a largest induced tree and | ||
| `κ(G) = vertexConnectivity G` is the vertex connectivity of `G`. | ||
| -/ | ||
| @[category research open, AMS 5] | ||
| theorem conjecture199 (G : SimpleGraph α) (h : G.Connected) | ||
| (hκ : largestInducedTreeSize G - 2 ≤ vertexConnectivity G) : | ||
| ∃ a b : α, ∃ p : G.Walk a b, p.IsHamiltonian := by | ||
| sorry | ||
|
|
||
| -- Sanity checks | ||
|
|
||
| /-- The `largestInducedTreeSize` is nonneg. -/ | ||
| @[category test, AMS 5] | ||
| example (G : SimpleGraph (Fin 3)) : 0 ≤ largestInducedTreeSize G := Nat.zero_le _ | ||
|
|
||
| /-- The vertex connectivity is nonneg. -/ | ||
| @[category test, AMS 5] | ||
| example (G : SimpleGraph (Fin 3)) : 0 ≤ vertexConnectivity G := Nat.zero_le _ | ||
|
|
||
| end WrittenOnTheWallII.GraphConjecture199 |
78 changes: 78 additions & 0 deletions
78
FormalConjectures/WrittenOnTheWallII/GraphConjecture24.lean
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,78 @@ | ||
| /- | ||
| Copyright 2025 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 | ||
|
|
||
| /-! | ||
| # Written on the Wall II - Conjecture 24 | ||
|
|
||
| **Verbatim statement (WOWII #24, status F):** | ||
| > If G is a simple connected graph, then b(G) ≥ λ(G) + CEIL[minimum of dist_even(v)/3] | ||
|
|
||
| **Source:** http://cms.uhd.edu/faculty/delavinae/research/wowII/all.html#conj24 | ||
|
|
||
| This conjecture is **disproved** on the WOWII page (status F). Following the | ||
| upstream pattern established in #3823 for the closely related Conjecture 23, | ||
| we record the disproof using `answer(False) ↔ ...`. | ||
|
|
||
| *Reference:* | ||
| [E. DeLaVina, Written on the Wall II, Conjectures of Graffiti.pc](http://cms.dt.uh.edu/faculty/delavinae/research/wowII/) | ||
| -/ | ||
|
|
||
| namespace WrittenOnTheWallII.GraphConjecture24 | ||
|
|
||
| open Classical SimpleGraph | ||
|
|
||
| /-- `distEven G v` counts the number of vertices at even distance from `v` in `G`. | ||
| Distance 0 (the vertex itself) is even, so `distEven G v ≥ 1`. -/ | ||
| noncomputable def distEven {α : Type*} [Fintype α] | ||
| (G : SimpleGraph α) (v : α) : ℕ := | ||
| (Finset.univ.filter (fun w => Even (G.dist v w))).card | ||
|
|
||
| /-- | ||
| WOWII [Conjecture 24](http://cms.uhd.edu/faculty/delavinae/research/wowII/all.html#conj24) | ||
| (status F, disproved): | ||
|
|
||
| For every finite simple connected graph `G`, | ||
| `b(G) ≥ λ(G) + ⌈(min_v dist_even(v)) / 3⌉` | ||
| where `b(G)` is the size of a largest induced bipartite subgraph, | ||
| `λ(G) := max_v l(v)` is the maximum over all vertices of the independence | ||
| number of the open neighbourhood of `v`, and `dist_even(v)` is the number of | ||
| vertices at even distance from `v`. | ||
| -/ | ||
| @[category research solved, AMS 5] | ||
| theorem conjecture24 : answer(False) ↔ | ||
| ∀ {α : Type*} [Fintype α] [DecidableEq α] [Nontrivial α], | ||
| ∀ (G : SimpleGraph α) (_ : G.Connected), | ||
| let maxL := (Finset.univ.image (fun v => indepNeighborsCard G v)).max' (by simp) | ||
| let minDistEven := (Finset.univ.image (distEven G)).min' (by simp) | ||
| (maxL : ℝ) + ⌈(minDistEven : ℝ) / 3⌉ ≤ b G := by | ||
| sorry | ||
|
|
||
| -- Sanity checks | ||
|
|
||
| /-- `distEven G v` is always positive, since `v` itself is at distance 0 (even) from itself. -/ | ||
| @[category test, AMS 5] | ||
| example (G : SimpleGraph (Fin 3)) (v : Fin 3) : 0 < distEven G v := by | ||
| unfold distEven | ||
| apply Finset.card_pos.mpr | ||
| exact ⟨v, Finset.mem_filter.mpr ⟨Finset.mem_univ _, ⟨0, by simp [SimpleGraph.dist_self]⟩⟩⟩ | ||
|
|
||
| /-- The invariant `b G` is nonneg. -/ | ||
| @[category test, AMS 5] | ||
| example (G : SimpleGraph (Fin 3)) : 0 ≤ b G := Nat.cast_nonneg _ | ||
|
|
||
| end WrittenOnTheWallII.GraphConjecture24 | ||
75 changes: 75 additions & 0 deletions
75
FormalConjectures/WrittenOnTheWallII/GraphConjecture25.lean
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,75 @@ | ||
| /- | ||
| Copyright 2025 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 | ||
|
|
||
| /-! | ||
| # Written on the Wall II - Conjecture 25 | ||
|
|
||
| **Verbatim statement (WOWII #25, status F):** | ||
| > If G is a simple connected graph, then b(G) ≥ 2 CEIL[(1 + minimum of dist_even(v))/3] | ||
|
|
||
| **Source:** http://cms.uhd.edu/faculty/delavinae/research/wowII/all.html#conj25 | ||
|
|
||
| This conjecture is **disproved** on the WOWII page (status F; "same | ||
| counterexample as in #24"). Following the upstream pattern established in | ||
| #3823 for Conjecture 23, we record the disproof using `answer(False) ↔ ...`. | ||
|
|
||
| *Reference:* | ||
| [E. DeLaVina, Written on the Wall II, Conjectures of Graffiti.pc](http://cms.dt.uh.edu/faculty/delavinae/research/wowII/) | ||
| -/ | ||
|
|
||
| namespace WrittenOnTheWallII.GraphConjecture25 | ||
|
|
||
| open Classical SimpleGraph | ||
|
|
||
| /-- `distEven G v` counts the number of vertices at even distance from `v` in `G`. | ||
| Distance 0 (the vertex itself) is even, so `distEven G v ≥ 1`. -/ | ||
| noncomputable def distEven {α : Type*} [Fintype α] | ||
| (G : SimpleGraph α) (v : α) : ℕ := | ||
| (Finset.univ.filter (fun w => Even (G.dist v w))).card | ||
|
|
||
| /-- | ||
| WOWII [Conjecture 25](http://cms.uhd.edu/faculty/delavinae/research/wowII/all.html#conj25) | ||
| (status F, disproved): | ||
|
|
||
| For every finite simple connected graph `G`, | ||
| `b(G) ≥ 2 · ⌈(1 + min_v dist_even(v)) / 3⌉` | ||
| where `b(G)` is the size of a largest induced bipartite subgraph and | ||
| `dist_even(v)` is the number of vertices at even distance from `v`. | ||
| -/ | ||
| @[category research solved, AMS 5] | ||
| theorem conjecture25 : answer(False) ↔ | ||
|
Paul-Lez marked this conversation as resolved.
|
||
| ∀ {α : Type*} [Fintype α] [DecidableEq α] [Nontrivial α], | ||
| ∀ (G : SimpleGraph α) (_ : G.Connected), | ||
| let minDistEven := (Finset.univ.image (distEven G)).min' (by simp) | ||
| 2 * ⌈(1 + (minDistEven : ℝ)) / 3⌉ ≤ b G := by | ||
| sorry | ||
|
|
||
| -- Sanity checks | ||
|
|
||
| /-- `distEven G v` is always at least 1, since `v` itself is at distance 0 (even) from itself. -/ | ||
| @[category test, AMS 5] | ||
| example (G : SimpleGraph (Fin 4)) (v : Fin 4) : 1 ≤ distEven G v := by | ||
| unfold distEven | ||
| apply Finset.card_pos.mpr | ||
| exact ⟨v, Finset.mem_filter.mpr ⟨Finset.mem_univ _, ⟨0, by simp [SimpleGraph.dist_self]⟩⟩⟩ | ||
|
|
||
| /-- The invariant `b G` is nonneg. -/ | ||
| @[category test, AMS 5] | ||
| example (G : SimpleGraph (Fin 3)) : 0 ≤ b G := Nat.cast_nonneg _ | ||
|
|
||
| end WrittenOnTheWallII.GraphConjecture25 | ||
70 changes: 70 additions & 0 deletions
70
FormalConjectures/WrittenOnTheWallII/GraphConjecture63.lean
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,70 @@ | ||
| /- | ||
| Copyright 2025 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 | ||
|
|
||
| /-! | ||
| # Written on the Wall II - Conjecture 63 | ||
|
|
||
| **Verbatim statement (WOWII #63, status O):** | ||
| > If G is a simple connected graph, then f(G) ≥ CEIL[(minimum of dist_even(v) + b(G) + 1)/3] | ||
|
|
||
| **Source:** http://cms.uhd.edu/faculty/delavinae/research/wowII/all.html#conj63 | ||
|
|
||
|
|
||
| *Reference:* | ||
| [E. DeLaVina, Written on the Wall II, Conjectures of Graffiti.pc](http://cms.dt.uh.edu/faculty/delavinae/research/wowII/) | ||
| -/ | ||
|
|
||
| namespace WrittenOnTheWallII.GraphConjecture63 | ||
|
|
||
| open Classical SimpleGraph | ||
|
|
||
| variable {α : Type*} [Fintype α] [DecidableEq α] [Nontrivial α] | ||
|
|
||
| /-- `distEven G v` counts the number of vertices at even distance from `v` in `G`. -/ | ||
| noncomputable def distEven (G : SimpleGraph α) (v : α) : ℕ := | ||
| (Finset.univ.filter (fun w => Even (G.dist v w))).card | ||
|
|
||
| /-- | ||
| WOWII [Conjecture 63](http://cms.dt.uh.edu/faculty/delavinae/research/wowII/) | ||
|
|
||
| For a simple connected graph `G`, | ||
| `f(G) ≥ ⌈(min_v distEven(v) + b(G) + 1) / 3⌉` | ||
| where `f(G) = largestInducedForestSize G` is the size of a largest induced forest, | ||
| `b(G)` is the largest induced bipartite subgraph size, and | ||
| `distEven(v)` is the number of vertices at even distance from `v`. | ||
| -/ | ||
| @[category research open, AMS 5] | ||
| theorem conjecture63 (G : SimpleGraph α) (h : G.Connected) : | ||
| let minDistEven := (Finset.univ.image (distEven G)).min' (by simp) | ||
| ⌈((minDistEven : ℝ) + b G + 1) / 3⌉ ≤ (G.largestInducedForestSize : ℝ) := by | ||
| sorry | ||
|
|
||
| -- Sanity checks | ||
|
|
||
| /-- The largest induced forest size is a natural number (nonneg). -/ | ||
| @[category test, AMS 5] | ||
| example (G : SimpleGraph (Fin 3)) : 0 ≤ G.largestInducedForestSize := Nat.zero_le _ | ||
|
|
||
| /-- `distEven` of any vertex is positive. -/ | ||
| @[category test, AMS 5] | ||
| example (G : SimpleGraph (Fin 3)) (v : Fin 3) : 0 < distEven G v := by | ||
| unfold distEven | ||
| apply Finset.card_pos.mpr | ||
| exact ⟨v, Finset.mem_filter.mpr ⟨Finset.mem_univ _, ⟨0, by simp [SimpleGraph.dist_self]⟩⟩⟩ | ||
|
|
||
| end WrittenOnTheWallII.GraphConjecture63 |
Oops, something went wrong.
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.