is there an MST from G that does not contain a maximum weighted edge?
Maybe, but not necessary. Consider a 4-vertex graph as follows:
[A]--{2}--[B] | | | | {1} {3} | | | | [C]-{50}--[D]
A minimal spanning tree consists of a set of edges {CA, AB, BD}. The maximum edge weight is 50, {CD}, but it is not part of the MST. But if G was already equal to its own MST, then, obviously, it will contain its own maximum edge.
each MST of group G contains a minimum weighted edge
Yes. MST has a slice property. A cut is simply a partition of the vertices of a graph into two disjoint sets. For any section, you can do it if the weight of the edge in this section is less than the weight of other edges in the section, then this edge belongs to all MSTs in the graph. Since you guaranteed that the weights of the edges are different, you also guaranteed that there is an edge that is smaller than all the other edges.
In addition, I am more grateful if someone can give a hint of the key things to keep in mind when dealing with such MST issues.
Itβs best to talk about things using the properties of MST in general, and try to build specific counterexamples that, in your opinion, will confirm your case. I gave an example of each line of reasoning above. Due to the properties of the cut and the loop, you can always determine exactly which edges are in the MST, so you can systematically test each edge to determine if it is in the MST.
John feminella
source share