Minimum Spanning Tree: Difference between revisions

From Rice Wiki
No edit summary
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Category:Algorithms]]
= Description =
A '''minimum spanning tree''' is
A '''minimum spanning tree''' is
* a tree, meaning it has no cycle
* a tree, meaning it has no cycle
Line 8: Line 4:
* spanning, meaning it connects all nodes
* spanning, meaning it connects all nodes


The input is an undirected, weighted graph <math>G</math>. The output is
The '''MST problem''' takes a connected graph <math>G</math> and outputs an MST for that graph.
a tree that
 
Algorithm that solves this problem includes [[Kruskal's Algorithm]] and [[Prims Algorithm]].


* connects all vertices
= Suboptimality =
* has minimum weight
 
The MST problem exhibits the optimal substructure property.
 
Given MST tree for the graph G
 
<math>
OPT = \text{set of edges}
</math>
 
where the number of edges is <math>n - 1</math>, the weight of edges is
minimum, and the tree is spanning.
 
Consider <math>(x,y)</math>, where X is a leaf node.
 
Prove that <math>A = OPT - (x, y)</math> is a MST for the subproblem
<math>G - X</math>
 
By contradiction, assume that <math>A</math> is not optimal. There must
be <math>B</math> such that
 
<math>
w(B) < w(A)
</math>
 
Adding the edge (x, y) back to both graphs
 
<math>B + (x, y)</math> is a viable tree.
 
<math>
w(B + w(x,y)) < w(A + w(x,y)) = w(OPT)
</math>
 
Therefore, OPT is not the optimal solution.
 
By contradiction, <math>A</math> must be optimal.
 
 
 
[[Category:Algorithms]]

Latest revision as of 17:40, 20 March 2024

A minimum spanning tree is

  • a tree, meaning it has no cycle
  • minimum, meaning it has minimum weight
  • spanning, meaning it connects all nodes

The MST problem takes a connected graph and outputs an MST for that graph.

Algorithm that solves this problem includes Kruskal's Algorithm and Prims Algorithm.

Suboptimality

The MST problem exhibits the optimal substructure property.

Given MST tree for the graph G

where the number of edges is , the weight of edges is minimum, and the tree is spanning.

Consider , where X is a leaf node.

Prove that is a MST for the subproblem

By contradiction, assume that is not optimal. There must be such that

Adding the edge (x, y) back to both graphs

is a viable tree.

Therefore, OPT is not the optimal solution.

By contradiction, must be optimal.