I'm trying to get some true/false questions done. I'm getting worried when I'm answering many of them with true... Please assume that all graphs are undirected and do not have distinct weights. Negative weights should be fine.

Qa) If G has a cycle with a unique heaviest edge e, then e cannot be part of any MST.

My answer is true. For example, we have a graph with nodes A, B, C, D, E.

AB = 1
BC = 2
BD = 3
CD = 100
DE = 4

As you can see, BCD is a cycle. My argument is that since it is a cycle, we can always avoid the unique heaviest edge CD by taking other routes. Therefore it is true. Is my argument sound (enough)?

Qb) The shortest-path tree computed by Dijkstra's algorithm is necessarily an MST.

My answer is true, but my instinct tells me something's wrong. Well... Disjkstra's and Prim's are both greedy algorithms. They both go for the lightest weighted edge every time. Are there any cases that a shortest-path tree is NOT a minimum spanning tree? I actually have a hard time understanding the difference between these two guys.

Qc) Prim's algorithm works with negative weighted edges.

My answer is true. Because that's what wiki said... :p The algorithm is about finding the lowest-cost edge among all edges. So a negative weighted edge shouldn't matter, is it? But what about negative weighted cycle?

Qd) If G has a cycle with a unique lightest edge e, then e must be part of every MST.

My answer is true. We have to access all nodes in an MST. In a cycle of length 3, for instance, we can always traverse all nodes in that cycle with 2 steps. If there is a unique lightest edge, we'll most certainly choose it in our MST.

Are my claims sound? Perhaps they are insufficient? So are there any suggestions? Hm...

Thanks in advance. Felastine.

link|improve this question
dijstra is for compute the shortest path between A to B. It's not a MST. Prim is MST. – Chibox Oct 29 '11 at 11:03
Yes, but after Dijkstra's is executed, we get the shortest path to every node, if we don't stop when we reach the target. And sometimes, questions don't even give a target, meaning we continue iterations until all nodes are traversed. After that, we have the shortest-path tree. The problem is whether or not this shortest-path tree is in the MST of the same graph? – Felastine Oct 29 '11 at 11:14
That's true but there is also multiple MST in a graph. – Chibox Oct 29 '11 at 11:24
Yes, there are multiple MSTs in this case as edge weights are not distinct. So whether or not the output of Dijkstra's is or can be ONE of those MSTs is the question. – Felastine Oct 29 '11 at 12:31
feedback

1 Answer

Suggestion for b): Your instinct says it's wrong, so try to construct a counterexample. If you find one, it's settled, otherwise you can often see why a claim is true by analysing why your construction of a counterexample failed. I'm not telling you whether your answer or your instinct is right, though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.