In MIT's 6.042J course, there is a question in assignment 5 problem 3 c.
An n-node graph is said to be mangled if there is an edge leaving every >set of n/2 or fewer vertices. Again, as a special case, the graph >consisting of a >single node is considered mangled. Prove the following >claim. Hint: Prove by contradiction. Claim. Every non-empty, mangled graph is connected.
I couldn't prove it by contradiction, so I attempted to prove it by induction. Is my proof correct? How can I prove it by contradiction?
Pf (By induction on number of nodes of the graph):
Base Case (P(1)): A 1-node graph is mangled and it is connected.
Inductive Step, assume P(n) to prove induction hypothesis:
Assuming an n-node mangled graph is connected. If we added one node to this graph, we get an n+1-node graph.
Now taking this added node as a group. Since the graph is mangled, therefore this group (containing only one node) must have an edge leaving it. So, this node is connected to the former n-node graph.
Proof by contradiction.
Suppose such a graph (with $n$ vertices) is not connected. Then it has at least two components. At least one component must have at most $\frac n2$ vertices. No edge is leaving this component. Contradiction.