Consider a simple undirected weighted graph G, all of whose edge weights are distinct. Which of the following statements about the minimum spanning trees of G is/are TRUE ?
Consider a simple undirected weighted graph G, all of whose edge weights are distinct. Which of the following statements about the minimum spanning trees of G is/are TRUE ? Correct Answer <span style="">The edge with the second smallest weight is always part of any minimum spanning tree of G</span>, <span style="">One or both of the edges with the third smallest and the fourth smallest weights are part of any minimum spanning tree of G</span>, <span style="">Suppose S ⊆ V be such that S ≠ ϕ and S ≠ V. Consider the edge with the minimum weight such that one of its vertices is in S and the other in V \ S . Such an edge will always be part of any minimum spanning tree of G</span>
The correct answer is option 1, option 2, and option 3.
Concept:
Option 1:The edge with the second smallest weight is always part of any minimum spanning tree of G.
True, Consider the following graph,
[ alt="F1 Savita Engineering 28-3-22 D17" src="//storage.googleapis.com/tb-img/production/22/03/F1_Savita_Engineering__28-3-22_D17.png" style="width: 141px; height: 122px;">
The Second minimum cost edge is always in the minimum spanning tree because the second minimum does not form a cycle in the minimum spanning tree.
Option 2: One or both of the edges with the third smallest and the fourth smallest weights are part of any minimum spanning tree of G.
True, One or both of the edges with the third smallest and the fourth smallest weights are part of any minimum spanning tree of Graph. One of the third or fourth minimum costs in the minimum spanning tree. If the third cost forms a cycle in the minimum spanning tree then the fourth minimum must be in the minimum spanning tree.
Option 3:Suppose S ⊆ V be such that S ≠ ϕ and S ≠ V. Consider the edge with the minimum weight such that one of its vertices is in S and the other in V \ S . Such an edge will always be part of any minimum spanning tree of G.
True,
Given a cut (S, V−S) of G, recall that an edge (u,v) ∈ E is said to cross the cut if exactly one of u and v is in S. An edge e = (u,v) is a minimum weight edge crossing the cut (S, V−S) if its weight is the smallest of any edge crossing (S, V − S). Then e = (u,v) must be included in the minimum spanning trees of G.
Let G = (V, E,w) be a connected undirected weighted graph with distinct edge weights. For any cut (U, V − U) of G, the minimum weight edge that crosses the cut is in the minimum spanning tree MST(G) of G.
Option 4:G can have multiple minimum spanning trees.
False, G can not have multiple minimum spanning trees when all the edges are distinct.
Hence the correct answer is option 1, option 2, and option 3.