Reconstruction Conjecture — Cut Vertices and Component Structure #
This module connects the cut-vertex predicate from Reconstruction.Separator
to the connected-component structure of the vertex-deleted graph.
A cut vertex v of G is, by definition, a singleton separator: deleting v
leaves a nonempty, disconnected remainder G.deleteVert v. Here we record the
two consequences of this definition that downstream reconstruction arguments
actually consume — the deleted graph is disconnected and its vertex type is
nonempty — and then upgrade them into a quantitative statement about the number
of connected components.
Main results #
SimpleGraph.IsCutVertex.not_connected_deleteVert— the vertex-deleted graphG.deleteVert vis disconnected. This is just the separator conditionh.2.2read through the definitional equalityG.deleteVert v = G.induce {v}ᶜ.SimpleGraph.IsCutVertex.nonempty_deleteVert— the vertex-deleted graph has at least one vertex (the separator complement{v}ᶜis nonempty).SimpleGraph.IsCutVertex.two_le_card_components— over a finite vertex type, removing a cut vertex leaves at least two connected components. This is the quantitative form of "a cut vertex disconnects the graph": a nonempty graph whose connected-component quotient is a subsingleton is preconnected (hence connected), so a disconnected nonempty graph must have two or more components.SimpleGraph.twoConnected_iff_forall_deleteVert_connected— on more than one vertex,Gis 2-connected iffGis connected and every card is connected. The cards are exactly the vertex-deleted subgraphs, so this characterizes 2-connectivity by card-level data alone.SimpleGraph.SameDeck.twoConnected_iff— 2-connectedness is deck-recognizable (folklore; implicit in Bondy 1969): connectivity ofGis reconstructible, and connectivity of each card is visible in the deck up to isomorphism, so same-deck graphs agree on 2-connectivity. This is the recognition half of rung 1 of the separator programme: it lets a deck argument split into the 2-connected case and the cut-vertex case.
References #
- Bondy, J. A. (1969). "On Ulam's conjecture for separable graphs".
The vertex-deleted graph at a cut vertex is disconnected.
By definition a cut vertex is a singleton separator IsSeparator G {v}, whose
third component asserts ¬ (G.induce {v}ᶜ).Connected. Since G.deleteVert v is
definitionally G.induce {w | w ≠ v} = G.induce {v}ᶜ, this is exactly the
statement we want, modulo bridging that definitional equality.
The vertex-deleted graph at a cut vertex has at least one vertex.
The separator condition requires the complement {v}ᶜ to be nonempty; the
vertex type of G.deleteVert v is {w // w ≠ v}, which is definitionally the
coercion of {v}ᶜ, so a complement witness supplies the required vertex.
Removing a cut vertex from a finite graph leaves at least two connected components.
This is the quantitative reading of the cut-vertex definition. We argue by
contradiction: if the component quotient had fewer than two elements, then —
being nonempty (the deleted graph has a vertex) — it would be a subsingleton.
A graph whose connected-component quotient is a subsingleton is preconnected
(any two vertices share a component, hence are reachable), and a preconnected
nonempty graph is connected. That contradicts
IsCutVertex.not_connected_deleteVert.
2-connectedness is deck-recognizable #
A vertex v of a connected graph (with at least one other vertex) is a cut
vertex exactly when the card G - v is disconnected. Quantifying over v
characterizes 2-connectivity by data visible in the deck: G itself is
connected (reconstructible, SameDeck.connected) and every card is connected
(an isomorphism invariant of each card). This is the recognition half of
rung 1 of the separator-decomposition programme.
In a connected graph with a vertex other than v, v is a cut vertex iff
the card G - v is disconnected. Both directions are the definition of
IsSeparator {v} read through G.deleteVert v = G.induce {v}ᶜ.
On more than one vertex, G is 2-connected iff G is connected and
every vertex-deleted card is connected.
2-connectedness is deck-recognizable (one direction): if G and H
have the same deck on at least three vertices and G is 2-connected, so is
H. Connectivity of H comes from SameDeck.connected; connectivity of each
card of H comes from the matched isomorphic card of G.
2-connectedness is deck-recognizable: same-deck graphs on at least three vertices agree on 2-connectivity.