The Problem is:
Prove that graph $G=(V,E)$ has at least $|V|-|E|$ components. I've seen the solution here https://math.stackexchange.com/a/492183:
This is a part of the proof:
"Take a graph with $n$ vertices and $k+1$ edges. Pick any edge and look at the graph without that edge. The reduced graph has $n$ vertices and $k$ edges, and so by the inductive hypothesis, has at least $n-k$ components. Placing the edge back in can reduce the number of components by at most one, meaning the original graph has at least $n−k−1=n−(k+1)$ components. "
I dont understand why the proof by induction work here, till now i just had to use induction with sums. I somehow miss the logical step why it still work for $k+1$ edges, how it is a proof just by saying "the original graph has at least $n−k−1=n−(k+1)$ components"
Induction is a general proof technique, which is not specific to sums. Suppose you want to proof some property holds for all $n$. If you know that it holds for $n=0$ (or $1$ if you like) and that, assuming it holds for a given $n$, you can reduce the problem of proofing it for $n+1$ to the requirement that it holds forn $n$, then you are done. Thinking of induction as some kind of proof-step-domino made it clear for me once and for all. I mean, building a chain of dominos, you have to make sure that if one falls (induction hypothesis), the next one does too (induction step), so when the first falls (induction base), the whole chain collapses (proof for all $n$).