edited by
319 views
6 votes
6 votes

Which of the following statements regarding Minimum Spanning Tree (MST) is/are TRUE? (Mark all the appropriate choices)

  1. If $e$ is the maximum weight edge in a connected graph $G,$ then there is always a MST of $G$ that does not include $e$
  2. If all the edge weights of a graph $G$ are positive, then any subset of edges that connects all the vertices and has minimum total weight forms a tree
  3. If we decrease the weight of an edge in MST, it still remains a MST
  4. If all the edge weights of a graph are increased by a value $k,$ the MST remains the same
edited by

2 Answers

4 votes
4 votes
A is false as $e$ will be in the MST if it is a cut edge.
1 votes
1 votes
Option A: what if e is not a cut edge.

Option B: subset of edges connecting all vertices forms a tree: MST

Option C: decreasing edge strengthens the fact that edge will remain in MST. increase in edge weight will not ensure its presence.

Option D: increase or decrease all edge edges will not change MST.
Answer:

Related questions