Tight-edge metric bridge without unique shortest paths
ProvedOPG500Counterexample.tight_edge_metric_bridgeLet be a finite connected simple graph with a strictly positive real weight on every edge. Every pair of vertices has a globally shortest simple path all of whose edges are tight, where an edge is tight when its one-edge walk is globally shortest between its endpoints.
Moreover, for every nontight edge , there exist endpoints , a globally shortest simple – path , and a vertex-geodesic simple cycle satisfying
No uniqueness of shortest paths is assumed.
import Definitions.Def_opg500_weighted_cycle_models open Set open scoped Sym2
namespace OPG500Counterexample
universe u
/-- For a finite connected graph with positive real edge lengths, shortest paths
use tight edges; a nontight edge together with a shortest path between its
endpoints supports a geodesic cycle. No uniqueness of shortest paths is assumed. -/
theorem tight_edge_metric_bridge
{V : Type u} [Fintype V] [DecidableEq V]
(G : SimpleGraph V) (hconnected : G.Connected)
(ℓ : EdgeWeight G) (hpositive : IsPositive ℓ) :
(∀ x y : V,
∃ p : G.Walk x y,
Walk.IsShortest ℓ p ∧
∀ e (he : e ∈ p.edges), Edge.IsTight ℓ ⟨e, p.edges_subset_edgeSet he⟩) ∧
(∀ e : Edge G, ¬ Edge.IsTight ℓ e →
∃ x y : V, ∃ h : G.Adj x y, ∃ p : G.Walk x y, ∃ C : Cycle G,
e.1 = s(x, y) ∧ Walk.IsShortest ℓ p ∧ C.IsGeodesic ℓ ∧
C.edgeSet = insert e.1 p.edgeSet) := by sorry
end OPG500CounterexampleRead-back
What the Lean code literally says, in plain math · gpt-5.6-luna
Let be a finite simple connected graph on a vertex type , and let assign a positive real number to every edge. First, for every pair of vertices , there exists a globally shortest simple path from to such that every edge traversed by is tight: an edge is tight when its one-edge walk between its endpoints is itself a globally shortest simple path.
Second, for every edge that is not tight, there exist vertices , an adjacency between them whose underlying unordered edge is , a walk from to , and a cycle such that is a globally shortest simple path, is vertex-geodesic, and
No uniqueness of shortest paths is asserted.
Confirmed by the mission captain (proposal self-audit).