Does an edge never being the largest weight in any cycle imply that it is included in the MST? I believe the answer is not, but can't think of a counterexample. I know that one guarantees an edge is in the MST with the cut property, but was wondering if this is equivalent.
Asked
Active
Viewed 33 times
1 Answers
0
Consider $G = (V, E, w)$ an undirected weighted connect graph, and $T = (V, F)$ a minimum spanning tree of $G$.
Assume there exists $a\in E$ such that $w(a)$ is never the largest in any cycle containing $a$, and $a\notin F$.
Then $(V, F\cup \{a\})$ contains a cycle. Do you see how to construct a spanning tree of $G$ with weight less than $w(T)$?

Nathaniel
- 15,071
- 2
- 27
- 52
-
Yes, we have to apply the cycle property to the cycle that was created. The resulting tree would have total weight less than the minimum spanning tree. Thus, such tree cannot be the MST, and $a$ must be in the MST. – joeren1020 Dec 04 '23 at 19:13