How many number of edges can be removed from a given completely connected graph, such that there is at least one vertex with degree D?
This is not a homework question.
My thoughts: Is the answer V - D?
How many number of edges can be removed from a given completely connected graph, such that there is at least one vertex with degree D?
This is not a homework question.
My thoughts: Is the answer V - D?
Copyright © 2021 JogjaFile Inc.
Degree of any vertex in a complete graph is $V-1$. We are removing edges. If all the edges are removed from different different vertices instead of a single vertex,then we will not get degree d of a single vertex in minimum number of removals.
So we will remove the edges from only a single vertex. Your answer is slightly wrong. Answer should be $$V-1-D$$.