Title: Degree sequences in triangle-free graphs Authors: P. Erdős, S. Fajtlowicz and W. Staton, Published in Discrete Mathematics 92 (1991) 85–88.
The number of vertices of G having degree d.
Equations
- G.degreeFreq d = {v : α | G.degree v = d}.card
Instances For
The degree sequence of a graph, sorted in nondecreasing order.
Equations
- G.degreeSequence = Multiset.sort (fun (x1 x2 : ℕ) => x1 ≤ x2) (Multiset.map (fun (v : α) => G.degree v) Finset.univ.val)
Instances For
The degree sequence of G is compact if it satisfies
IsCompactSequenceOn for all valid indices k such that k + 2 < Fintype.card α.
Equations
- G.HasCompactdegreeSequence = IsCompactSequenceOn (fun (k : ℕ) => G.degreeSequence.getD k 0) {k : ℕ | k + 2 < Fintype.card α}
Instances For
Theorem 1. If a triangle-free graph has f = 2,
then it is bipartite, has minimum degree 1, and
its degree sequence is compact.
Lemma 3. For every n there exists a bipartite graph with
8 n vertices, minimum degree n + 1, and f = 3.
Lemma 4. Let G be a triangle-free graph with n vertices and let v be a vertex of G.
There exists a triangle-free graph H containing G as an induced subgraph such that:
(i) the degree of v in H is one more than its degree in G;
(ii) for every vertex w of G other than v the degree of w in H is the same as its degree in G;
(iii) if J is the subgraph of H induced by the vertices not in G, then f(J)=3 and δ(J) ≥ 2n.
Theorem 2. Every triangle-free graph is an induced subgraph of one
with f = 3.
F n is the smallest number of vertices of a triangle-free graph
with chromatic number n and f = 3.
Equations
- SimpleGraph.F n = sInf {p : ℕ | ∃ (G : SimpleGraph (Fin p)) (x : DecidableRel G.Adj), G.CliqueFree 3 ∧ G.chromaticNumber = ↑n ∧ G.f = 3}