Reconstruction Conjecture — Connected Components #
The number of connected components and the property of being connected are reconstructible graph invariants.
Main results #
SimpleGraph.SameDeck.connected— connectivity is reconstructibleSimpleGraph.SameDeck.numComponents_eq— number of components is reconstructible
References #
- Kelly, P. J. (1942). "On isometric transformations".
The number of connected components of a graph.
Equations
Instances For
Connectivity is reconstructible. If G is connected and has the same
deck as H (on ≥ 3 vertices), then H is connected.
The proof finds a non-cut vertex v in G (which exists in any connected
graph on ≥ 2 vertices). The deck isomorphism gives G - v ≅ H - σ(v), so
H - σ(v) is connected. Since every vertex of H has positive degree
(degree sequence is reconstructible), σ(v) has a neighbor in H, and
we can extend connectivity of H - σ(v) to all of H.
Number of connected components is reconstructible.
If G and H on ≥ 3 vertices share the same deck, they have the same number of
connected components.
Proof strategy (three-way case split):
- If
Gis connected, thenHis connected (bySameDeck.connected), so both have 1 component. - If
Ghas an isolated vertexv, the deck isoG - v ≃g H - σ vgives(G-v).numComponents = (H - σ v).numComponents. Since degrees match underσ,σ vis isolated inH. ThusG.numComponents = (G-v).numComponents + 1 = (H - σ v).numComponents + 1 = H.numComponents. - Otherwise every vertex has positive degree in both graphs. Pick any vertex
v; thenG.numComponents ≤ (G-v).numComponents = (H - σ v).numComponents, and symmetrically for the reverse. So both are equal to(G-v).numComponents.