Let $G = (V, E)$ be a graph, and let $e \in E$ be a cut edge. Show that the removal of $e$ increases the number of connected components by exactly $1$, i.e.,
$$ c(G - e) - c(G) = 1. $$
My Proof:
Suppose $e = \{u,v\} \in E$ and that it is a cut edge. By definition, a cut edge is an edge whose removal increases the number of connected components.
Thus, removing $e$ from $G$ results in a graph $G - e$ where $u$ and $v$ are no longer connected, leading to the formation of two distinct connected components where there was previously one. This implies that the number of connected components strictly increases, giving:
$$ c(G - e) > c(G). $$
Now, consider the graph $G - e$. If we add back the edge $e$, the two disconnected components merge into a single connected component, decreasing the total count by exactly $1$. That is,
$$ c(G) = c(G - e) - 1. $$
Rearranging, we obtain the desired result:
$$ c(G - e) - c(G) = 1. $$
Is this proof sufficiently rigorous? Can someone make it even more formal? I want to avoid any loose terminology and ensure that the argument is mathematically precise.
