Question 12
Recall that in the vertex cover problem, we are trying to find a smallest subset of vertices in a graph such that is an independent set; in other words, for every edges in the graph , we have that is non-empty.
Consider the algorithm that repeats the following steps as long as the graph has at least one edge available: select a vertex of maximum degree (say ), and include in the solution; thereafter, delete and all edges incident to .
Based on the above data, answer the given subquestions.
Recall that the size of an optimal vertex cover is at most twice the size of a maximum matching of a graph G. Are there examples of graphs where the size of the optimal vertex cover is exactly equal to twice the size of its maximum matching? For example, this is not true for a path on three vertices: the size of both the maximum matching and minimum vertex cover is 1.
Yes
No