Theorem (König): Every graph with maximum degree is an induced subgraph of some -regular graph .
Proof Idea (Constructive):
The proof constructs the -regular graph iteratively.
-
Base Case: If the given graph is already -regular, then , and is an induced subgraph of itself. We are done.
-
Inductive Step: If is not -regular, it must contain at least one vertex with degree . (Specifically, the minimum degree ).
- Take two identical copies of the current graph (let’s call it , starting with ). Call the copies and .
- For every vertex in such that , add an edge between in and its corresponding vertex in .
- Call the resulting graph . Note that the original is an induced subgraph of .
- The degrees of the vertices that had degree in increase by 1 in . Vertices that already had degree remain unchanged.
- If is -regular, we stop, and .
- If is still not -regular (meaning its new minimum degree is still ), repeat this step with .
-
Termination: This process must terminate because, in each step, we increase the degrees of the lowest-degree vertices. Eventually, all vertices will reach degree . The video suggests this occurs after iterations, resulting in a graph which is -regular and contains the original as an induced subgraph.