Let $G = (V,E)$ be a connected, undirected graph with a real-valued weight function $w$ defined on $E$. Let $A subseteq E$ that is included in some minimum spanning tree for $G$, let $(S,V -S)$ be any cut of $G$ that respects $A$, and let $(u,v)$ be a safe edge for $A$ crossing $(S, V – S)$. Then, $(u,v)$ is a light edge for the cut.
Show that the professor’s conjecture is incorrect by giving a counterexample. Theorem 23.1:
Let $G = (V,E)$ be a connected, undirected graph with a real-valued weight function $w$ defined on $E$. Let $A$ be a subset of $E$ that is included in some minimum spanning tree for $G$, let $(S, V – S)$ be any cut of $G$ that respects $A$, and let $(u,v)$ be a light edge crossing $(S, V – S)$. Then, edge $(u,v)$ is safe for $A$.
Can anybody please give a proof or a counterexample to the conjecture also because I used to think that all safe edges added to the graph are light edges.
DEFINITIONS :
1. Cut (S ,V-S) : of an undirected graph G = (V,E) is a partition of V(as defined in CLRS Book) .You can think it as a line that divides graph into two disjoint sets of vertices on its either side.
2. Light edge:Any edge crossing a cut is light edge if its weight is the minimum of all the edge crossing the cut.Light edge is defined with respect to a particular Cut.
3. A cut Respects a set A of edges if no edge in A crosses the cut.
4. Safe edge is the edge which we can add to MST without any violation of MST’s property.These are those edges which are the part of final MST.
I have written most of the definition but for more queries you can also refer to CLRS chapter 23.
Asked By : RYO
Answered By : D.W.
Best Answer from StackOverflow
Question Source : http://cs.stackexchange.com/questions/13008