The four-core link-pattern rank gap
ProvedOPG500Counterexample.core_link_rank_gapcombinatoricsformalizationgeodesicsgraph-theory
Let be a triangle-free simple graph on . For each , let be a vertex set not containing . Assume that whenever and , the vertex has a neighbor in . Then
where is the subgraph induced by and counts its connected components. This is a finite four-vertex combinatorial statement.
Preamble
import Definitions.Def_opg500_weighted_cycle_models
Formal statement
namespace OPG500Counterexample
/-- The finite four-core combinatorial obstruction used by the all-ties route.
Every triangle-free core with four link sets avoiding their indexed vertices and
dominating all omitted vertices has a strictly positive cycle-rank gap. -/
theorem core_link_rank_gap
(F : SimpleGraph (Fin 4)) [DecidableRel F.Adj]
(N : Fin 4 → Finset (Fin 4))
(htriangleFree : ∀ ⦃a b c : Fin 4⦄,
a ≠ b → b ≠ c → a ≠ c →
¬ (F.Adj a b ∧ F.Adj b c ∧ F.Adj c a))
(havoids : ∀ i v, v ∈ N i → v ≠ i)
(hdominates : ∀ i j, j ≠ i → j ∉ N i →
∃ k, k ∈ N i ∧ F.Adj j k) :
7 < F.edgeFinset.card +
∑ i, Nat.card (F.induce {v | v ∈ N i}).ConnectedComponent := by sorry
end OPG500CounterexampleSource
Candidate C10, Sections T4 and T5: https://github.com/vibemathing/problem-opg-500-geodesic-cycles/blob/a41fe59b4535851ea55f6e868e938b9aaf81e924/research/artifacts/candidates/opg500-a01-c10/tight-rank.md
Read-back
What the Lean code literally says, in plain math · gpt-5.6-luna
Let be a simple graph on the four-element vertex set , with decidable adjacency, and let assign to each a finite set of vertices. Assume that no three pairwise distinct vertices form a triangle in ; every satisfies ; and, for every and every with , there exists adjacent to in . Then
where is the number of edges of , is the graph induced by , and is its number of connected components.
Human review
Confirmed by the mission captain (proposal self-audit).