Documentation

Mathlib.Combinatorics.SimpleGraph.Finite

Definitions for finite and locally finite graphs #

This file defines finite versions of edgeSet, neighborSet and incidenceSet and proves some of their basic properties. It also defines the notion of a locally finite graph, which is one whose vertices have finite degree.

The design for finiteness is that each definition takes the smallest finiteness assumption necessary. For example, SimpleGraph.neighborFinset v only requires that v have finitely many neighbors.

Main definitions #

Naming conventions #

If the vertex type of a graph is finite, we refer to its cardinality as CardVerts or card_verts.

Implementation notes #

@[reducible, inline]
abbrev SimpleGraph.edgeFinset {V : Type u_1} (G : SimpleGraph V) [Fintype G.edgeSet] :

The edgeSet of the graph as a Finset.

Equations
theorem SimpleGraph.edgeFinset_inj {V : Type u_1} {G₁ G₂ : SimpleGraph V} [Fintype G₁.edgeSet] [Fintype G₂.edgeSet] :
theorem SimpleGraph.edgeFinset_mono {V : Type u_1} {G₁ G₂ : SimpleGraph V} [Fintype G₁.edgeSet] [Fintype G₂.edgeSet] :

Alias of the reverse direction of SimpleGraph.edgeFinset_subset_edgeFinset.

theorem SimpleGraph.edgeFinset_strict_mono {V : Type u_1} {G₁ G₂ : SimpleGraph V} [Fintype G₁.edgeSet] [Fintype G₂.edgeSet] :

Alias of the reverse direction of SimpleGraph.edgeFinset_ssubset_edgeFinset.

@[simp]
@[simp]
@[simp]
theorem SimpleGraph.disjoint_edgeFinset {V : Type u_1} {G₁ G₂ : SimpleGraph V} [Fintype G₁.edgeSet] [Fintype G₂.edgeSet] :

The complete graph on n vertices has n.choose 2 edges.

Any graph on n vertices has at most n.choose 2 edges.

def SimpleGraph.DeleteFar {V : Type u_1} (G : SimpleGraph V) {𝕜 : Type u_2} [OrderedRing 𝕜] [Fintype G.edgeSet] (p : SimpleGraph VProp) (r : 𝕜) :

A graph is r-delete-far from a property p if we must delete at least r edges from it to get a graph with the property p.

Equations
theorem SimpleGraph.deleteFar_iff {V : Type u_1} {G : SimpleGraph V} {𝕜 : Type u_2} [OrderedRing 𝕜] [Fintype G.edgeSet] {p : SimpleGraph VProp} {r : 𝕜} [Fintype (Sym2 V)] :
G.DeleteFar p r ∀ ⦃H : SimpleGraph V⦄ [inst : DecidableRel H.Adj], H Gp Hr G.edgeFinset.card - H.edgeFinset.card
theorem SimpleGraph.DeleteFar.le_card_sub_card {V : Type u_1} {G : SimpleGraph V} {𝕜 : Type u_2} [OrderedRing 𝕜] [Fintype G.edgeSet] {p : SimpleGraph VProp} {r : 𝕜} [Fintype (Sym2 V)] :
G.DeleteFar p r∀ ⦃H : SimpleGraph V⦄ [inst : DecidableRel H.Adj], H Gp Hr G.edgeFinset.card - H.edgeFinset.card

Alias of the forward direction of SimpleGraph.deleteFar_iff.

theorem SimpleGraph.DeleteFar.mono {V : Type u_1} {G : SimpleGraph V} {𝕜 : Type u_2} [OrderedRing 𝕜] [Fintype G.edgeSet] {p : SimpleGraph VProp} {r₁ r₂ : 𝕜} (h : G.DeleteFar p r₂) (hr : r₁ r₂) :
G.DeleteFar p r₁

Finiteness at a vertex #

This section contains definitions and lemmas concerning vertices that have finitely many adjacent vertices. We denote this condition by Fintype (G.neighborSet v).

We define G.neighborFinset v to be the Finset version of G.neighborSet v. Use neighborFinset_eq_filter to rewrite this definition as a Finset.filter expression.

def SimpleGraph.neighborFinset {V : Type u_1} (G : SimpleGraph V) (v : V) [Fintype (G.neighborSet v)] :

G.neighbors v is the Finset version of G.Adj v in case G is locally finite at v.

Equations
@[simp]
theorem SimpleGraph.mem_neighborFinset {V : Type u_1} (G : SimpleGraph V) (v : V) [Fintype (G.neighborSet v)] (w : V) :
def SimpleGraph.degree {V : Type u_1} (G : SimpleGraph V) (v : V) [Fintype (G.neighborSet v)] :

G.degree v is the number of vertices adjacent to v.

Equations
@[simp]
theorem SimpleGraph.degree_pos_iff_exists_adj {V : Type u_1} (G : SimpleGraph V) (v : V) [Fintype (G.neighborSet v)] :
0 < G.degree v ∃ (w : V), G.Adj v w
theorem SimpleGraph.degree_compl {V : Type u_1} (G : SimpleGraph V) (v : V) [Fintype (G.neighborSet v)] [Fintype (G.neighborSet v)] [Fintype V] :
def SimpleGraph.incidenceFinset {V : Type u_1} (G : SimpleGraph V) (v : V) [Fintype (G.neighborSet v)] [DecidableEq V] :

This is the Finset version of incidenceSet.

Equations
@[simp]
@[simp]
@[reducible, inline]
abbrev SimpleGraph.LocallyFinite {V : Type u_1} (G : SimpleGraph V) :
Type u_1

A graph is locally finite if every vertex has a finite neighbor set.

Equations

A locally finite simple graph is regular of degree d if every vertex has degree d.

Equations
@[simp]
theorem SimpleGraph.bot_degree {V : Type u_1} [Fintype V] (v : V) :

The minimum degree of all vertices (and 0 if there are no vertices). The key properties of this are given in exists_minimal_degree_vertex, minDegree_le_degree and le_minDegree_of_forall_le_degree.

Equations

There exists a vertex of minimal degree. Note the assumption of being nonempty is necessary, as the lemma implies there exists a vertex.

The minimum degree in the graph is at most the degree of any particular vertex.

theorem SimpleGraph.le_minDegree_of_forall_le_degree {V : Type u_1} (G : SimpleGraph V) [Fintype V] [DecidableRel G.Adj] [Nonempty V] (k : ) (h : ∀ (v : V), k G.degree v) :

In a nonempty graph, if k is at most the degree of every vertex, it is at most the minimum degree. Note the assumption that the graph is nonempty is necessary as long as G.minDegree is defined to be a natural.

The maximum degree of all vertices (and 0 if there are no vertices). The key properties of this are given in exists_maximal_degree_vertex, degree_le_maxDegree and maxDegree_le_of_forall_degree_le.

Equations

There exists a vertex of maximal degree. Note the assumption of being nonempty is necessary, as the lemma implies there exists a vertex.

The maximum degree in the graph is at least the degree of any particular vertex.

theorem SimpleGraph.maxDegree_le_of_forall_degree_le {V : Type u_1} (G : SimpleGraph V) [Fintype V] [DecidableRel G.Adj] (k : ) (h : ∀ (v : V), G.degree v k) :

In a graph, if k is at least the degree of every vertex, then it is at least the maximum degree.

The maximum degree of a nonempty graph is less than the number of vertices. Note that the assumption that V is nonempty is necessary, as otherwise this would assert the existence of a natural number less than zero.

theorem SimpleGraph.Adj.card_commonNeighbors_lt_degree {V : Type u_1} [Fintype V] {G : SimpleGraph V} [DecidableRel G.Adj] {v w : V} (h : G.Adj v w) :

If the condition G.Adj v w fails, then card_commonNeighbors_le_degree is the best we can do in general.