/-
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 FormalConjecturesUtilWritten on the Wall II - Conjecture 33
namespace WrittenOnTheWallII.GraphConjecture33
open Classical SimpleGraph
variable {α : Type*} [Fintype α] [DecidableEq α] [Nontrivial α]
WOWII Conjecture 33
For a simple connected graph G, path(G) ≥ ⌈2 · dist_avg(M, V)⌉, where path(G)
is the floor of the average distance of G, M is the set of maximum-degree vertices,
and dist_avg(M, V) is the average distance from all vertices to M.
@[category research solved, AMS 5]
theorem conjecture33 : answer(False) ↔
∀ (α : Type) [Fintype α] [DecidableEq α] [Nontrivial α]
(G : SimpleGraph α) [DecidableRel G.Adj] (h : G.Connected),
let M : Set α := {v | G.degree v = G.maxDegree}
Int.ceil (2 * distavg G M) ≤ (path G : ℤ) := ⊢ False ↔
∀ (α : Type) [inst : Fintype α] [inst_1 : DecidableEq α] [Nontrivial α] (G : SimpleGraph α)
[inst_3 : DecidableRel G.Adj],
G.Connected →
let M := {v | G.degree v = G.maxDegree};
⌈2 * G.distavg M⌉ ≤ ↑G.path
All goals completed! 🐙
-- Sanity checks
/-- The `path G` invariant cast to ℤ is nonneg. -/
@[category test, AMS 5]
example (G : SimpleGraph (Fin 3)) : 0 ≤ (path G : ℤ) := Int.natCast_nonneg _
/-- In `K₃`, the max degree is 2. -/
@[category test, AMS 5]
example : (⊤ : SimpleGraph (Fin 3)).maxDegree = 2 := α:Type u_1inst✝²:Fintype αinst✝¹:DecidableEq αinst✝:Nontrivial α⊢ ⊤.maxDegree = 2 All goals completed! 🐙
end WrittenOnTheWallII.GraphConjecture33