/- 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 FormalConjecturesUtil

Written on the Wall II - Conjecture 61

Reference: E. DeLaVina, Written on the Wall II, Conjectures of Graffiti.pc

namespace WrittenOnTheWallII.GraphConjecture61 open Classical SimpleGraph variable {α : Type*} [Fintype α] [DecidableEq α] [Nontrivial α]

WOWII Conjecture 61

For a simple connected graph $G$, the size $f(G)$ of a largest induced forest satisfies $f(G) \ge \mathrm{residue}(G) + \lceil \mathrm{diam}(G) / 3 \rceil$, where $\mathrm{residue}(G)$ is the Havel-Hakimi residue and $\mathrm{diam}(G)$ is the diameter of $G$.

See: Favaron, Mahéo, Saclé (1991) for the residue; DeLaVina's Graffiti.pc for the conjecture.

@[category research open, AMS 5] theorem declaration uses 'sorry'conjecture61 (G : SimpleGraph α) [DecidableRel G.Adj] (h : G.Connected) : (residue G : ) + (G.diam : ) / 3 (G.largestInducedForestSize : ) := α:Type u_1inst✝³:Fintype αinst✝²:DecidableEq αinst✝¹:Nontrivial αG:SimpleGraph αinst✝:DecidableRel G.Adjh:G.ConnectedG.residue + G.diam / 3 G.largestInducedForestSize All goals completed! 🐙 -- Sanity checks /-- The `largestInducedForestSize` is nonneg. -/ @[category test, AMS 5] example (G : SimpleGraph (Fin 3)) : 0 G.largestInducedForestSize := Nat.zero_le _ /-- The residue of $K_2$ equals $1$: degree sequence is $[1, 1]$; one Havel-Hakimi step gives $[0]$, leaving a single zero. -/ @[category test, AMS 5] example : residue ( : SimpleGraph (Fin 2)) = 1 := α:Type u_1inst✝²:Fintype αinst✝¹:DecidableEq αinst✝:Nontrivial α.residue = 1 α:Type u_1inst✝²:Fintype αinst✝¹:DecidableEq αinst✝:Nontrivial αresidueAux ((Multiset.map (fun v => .degree v) Finset.univ.val).sort fun x1 x2 => x1 x2) = 1; All goals completed! 🐙 end WrittenOnTheWallII.GraphConjecture61