For a graph with $n$ vertices, what is the minimum number of edges such that each vertex is connected to atleast $3$ other vertices? How to find such a configuration?
I assume this to be a well known problem in graph theory, but since I'm not familiar with it I need some help figuring it out.
Hint: if you sum the orders of each vertices (i.e. how many edges they are connected to), and each order is $\ge 3$, then your sum is $\ge 3n$. We have counted each edge twice, once for each vertex it is connected to, so that means we have at least $3n/2$ vertices (and for odd $n$, that means at least $(3n+1)/2$ as the number of vertices is an integer).
Now you know what bound you're looking for, have a go at finding a configuration. You might want to split your answer into cases, depending on the value of $n$ modulo particular integers.