Prove that if a graph $G$ has a Hamilton path then for every $S \subseteq V(G)$ the number of components of $G - S$ is at most $|S| + 1$.
I have tested this numerically with some examples and can picture why this works but I am unsure how I would go about proving this mathematically. Any help is appreciated.
First, consider the case where your graph is a path. If you remove $|S|$ vertices, then the connected components will be at most $|S| + 1$. You can think about how best to write that up; I suggest strong induction on the length of the path.
Once you establish the path case, you can address the general case. In general, your graph will contain a subgraph $P$ that is a path. From the path case, removing the vertices from $S$ and the edges other than the ones in $P$ will produce at most $|S| + 1$ components. Then you just need to justify why adding in extra edges will never increase the number of connected components (if a path exists between two vertices in the subgraph, then the same path will exist in the whole graph).