The Caro--Wei independence bound #
carowei is the classical greedy/random-order bound: every finite graph has an independent set
of size at least ∑ v, 1 / (deg v + 1). It is proved here by the standard induction that
deletes the closed neighbourhood of a minimum-degree vertex.
exists_independent_five specialises it to the shape the main theorem needs. The tangent-line
estimate 1 / (d + 1) ≥ (5 - d) / 9, valid because (d - 2) ^ 2 ≥ 0, converts a degree-sum
bound into a lower bound on the independence number, and integrality upgrades n / 3 > 4 to an
independent set of size 5 once n ≥ 13.
The degree of v in the graph that adj induces on the vertex set V.
Equations
- Erdos132ThreeChain.degree adj V v = (Finset.filter (adj v) V).card
Instances For
Caro--Wei. Every finite graph has an independent set of size at least the sum over its vertices of the reciprocal of one more than the degree.
A graph on at least thirteen vertices whose degrees sum to at most twice the number of
vertices has an independent set of five vertices. The degree sum is twice the number of edges,
so the hypothesis is the edge bound #edges ≤ #vertices.