How to determine if a simple graph of $7$ vertices where the degree of each vertex is at least $3$ is connected?
According to this answer we need to check that $|E|>{7-1\choose 2}=15$. If the degree of each vertex is at least $3$ then $\sum_{v\in V}deg(v)=21$. But $\sum_{v\in V}deg(v)$ cannot be odd so there must be at least one vertex with degree $4$ therefore $\sum_{v\in V}deg(v)=22$ at least. In such case $|E|=11$.
We see that $|E|<{7-1\choose 2}$ therefore the graph cannot be connected.
But on the other hand because the degree of one of the vertices is $4$ then there's a subgraph which has $5$ vertices. Suppose the other $2$ vertices are not connected but this cannot be because the degree of each vertex is at least $3$.
What am I doing wrong?