I know that this is a repeat of a previous question asked with a similar title, but I didn't want to revive an old thread.
The solution presented in that thread seems to be the common one, but I was wondering if the alternate I came up with holds up and satisfies the claim.
The claim:
If $G$ is a graph on $n$ nodes, where $n$ is an even number, then if every node of $G$ has a degree of at least $n/2$ then $G$ is connected.
My proof:
Assume that $G$ is connected. Since it is connected, then by definition there exists a path between any two vertices, and there must be at least $n = 2$ vertices in $G$. Each vertex in $G$ has a degree of at least one.
Adding edges to a graph that is already connected (in order to satisfy the requirement that every node has a degree of at least $n/2$) does not destroy its connectivity, and so the claim is true.
I'm assuming that n can only be positive. The examples I drew to support my proof all look like singly-linked linked lists, eg 1-2-3-4-5-6 (undirected, of course).
Besides not being sure if the logic holds, I'm also not sure if it's acceptable to start by assuming that what we're supposed to be proving is true and then working backwards from that.
Thanks!
Let G be a graph with n vertices.
Assume, G is not connected, so there are at least two connecting components. Denote the number of vertices of the components with u und v.
Then the number of edges is at most $\frac{(u-1)(u-2)}{2}+\frac{(v-1)(v-2)}{2}$ Since $u+v=n$, we have at most $\frac{n^2-(2u+3)n+(2u^2+4)}{2}=\frac{n^2-2u(n-u)-(3n-4)}{2}$ edges.
Because of $1<u<n$, this is clearly smaller than $\frac{n^2}{2}$.
If every vertex has degree at least $\frac{n}{2}$, then the number of edges must be at least $\ \frac{n^2}{2}\ $
So, there must be a vertex with a degree less than $\frac{n}{2}\ $.
Remark : In fact, if every vertex has degree at least $\frac{n}{2}$, G must even contain a hamilton cycle.