How could I induction-prove that
If a simple graph of $n$ vertices has at least $n$ edges, then the graph must have a circuit (=cycle, tour)
How should I do this proof? I would prefer simpler solutions, as I am a beginner at graph theory.
How could I induction-prove that
If a simple graph of $n$ vertices has at least $n$ edges, then the graph must have a circuit (=cycle, tour)
How should I do this proof? I would prefer simpler solutions, as I am a beginner at graph theory.
Induction: Base case is $n=3$, when the only possible simple graph with $3$ edges is the triangle which has a cycle.
Inductive hypothesis for $n>3$: The claim is true for all graphs with $v$ vertices, $3 \le v \le n{-}1$.
Consider a simple graph $G$ with $n$ vertices and $n$ edges. If $G$ is not connected, then there is some connected component of $G$ with $k Otherwise for connected $G$, since the sum of vertex degrees is twice the number of edges, $\sum \delta_i = 2n$, we have two cases: Case 1: All vertices are of degree $2$. Then $G$ is a cycle graph $C_n$ and has a cycle. Case 2: There is some vertex with degree $\delta_i > 2$ and thus there is some other vertex $j$ with degree $\delta_j =1$. This degree-1 vertex and its associated edge can be removed without disconnecting $G$ or affecting any cycles in $G$ and produces a graph $G-j$ which has a cycle by the hypothesis. For simple graphs with $n$ vertices and more than $n$ edges, we can remove edges to produce a graph for the above consideration and any cycles in the reduced graph will also be present in the original graph. Thus by induction the claim is true.