Let be a graph of vertices and 21 edges. The degree of each vertex is at most 5. Find the minimum value of .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Let G = ( V , E ) be the graph. Let d ( x ) be the degree function defined on V . Note the identity ∑ x ∈ V d ( x ) = 2 ∗ ∣ E ∣ , as each edge in E contributes to the degree functions of each of its two vertices.
We are told the maximum value of d ( x ) is at most 5 . Thus 2 ∗ ∣ E ∣ = 4 2 = ∑ x ∈ V d ( x ) ≤ 5 ∗ ∣ V ∣ = 5 n . This simplifies to 5 4 2 ≤ n . Since n is an integer, n ≥ 9 .
It is not difficult to fit 2 1 edges into a graph with 9 vertices while respecting the upper bound on d ( x ) .