Reconstruction Conjecture — Disconnected Graphs #
Kelly (1942) proved that disconnected graphs are reconstructible: if G is
disconnected and has the same deck as H, then G ≅ H.
Main results #
SimpleGraph.SameDeck.iso_of_not_connected— disconnected graphs are reconstructible
Proof outline #
If G is disconnected with connected components of sizes n₁ ≥ n₂ ≥ ⋯ ≥ nₖ
where k ≥ 2:
- Since
n₂ ≤ n/2 < n, all components except possibly the largest have fewer thannvertices. - The number of copies of each "small" component can be counted via Kelly's
Lemma, since these components have strictly fewer vertices than
G. - The largest component is determined as the complement of the union of the smaller components in the vertex set.
- This determines the full multiset of components, so
G ≅ H.
References #
- Kelly, P. J. (1942). "On isometric transformations".
theorem
SimpleGraph.SameDeck.iso_of_not_connected
{V : Type u_1}
[Fintype V]
[DecidableEq V]
{G H : SimpleGraph V}
[DecidableRel G.Adj]
[DecidableRel H.Adj]
(h : G.SameDeck H)
(hV : 3 ≤ Fintype.card V)
(hdisc : ¬G.Connected)
:
Disconnected graphs are reconstructible (Kelly 1942).
If G is disconnected (not connected) and has the same deck as H on ≥ 3
vertices, then G ≅ H. The proof proceeds by identifying all connected
components via Kelly's Lemma: components with fewer than n vertices are
counted directly, and the largest component is determined as the remainder.