Documentation

Reconstruction.DegreeSequence

Reconstruction Conjecture — Degree Sequence #

We prove that the degree sequence (as a multiset) is a reconstructible graph invariant: if two graphs on ≥ 3 vertices have the same deck, they have the same degree multiset.

Main results #

References #

The degree multiset of a graph: the multiset of all vertex degrees.

Equations
Instances For

    If two graphs have equal edge counts and isomorphic vertex-deleted subgraphs at vertices v and w, then deg(v) = deg(w).

    theorem SimpleGraph.SameDeck.degree_eq {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) :
    ∃ (σ : V V), ∀ (v : V), G.degree v = H.degree (σ v)

    Degrees are reconstructible. If two graphs on ≥ 3 vertices have the same deck via bijection σ, then deg_G(v) = deg_H(σ v) for all v.

    Degree multiset is reconstructible. If two graphs on ≥ 3 vertices have the same deck, their degree multisets are equal.