I\'m studying graph theory and I have a question about the connection between minimum spanning trees and shortest path trees.
Let G be an undirected, co
I think that this statement is actually true, so I doubt you can find a counterexample.
Here's a hint - take any node in the graph and find a shortest path tree for that node. Now consider what would happen if you were to run Prim's algorithm starting from that node - can you guarantee that at least one edge from the MST will find its way into the shortest path tree?
Hope this helps!