edited by
36,337 views
86 votes
86 votes
Let $G$ be a complete undirected graph on $4$ vertices, having $6$ edges with weights being $1, 2, 3,  4, 5,$ and $6$. The maximum possible weight that a minimum weight spanning tree of $G$ can have is __________
edited by

18 Answers

Best answer
146 votes
146 votes
Many people here have not understood the question itself. Consider a complete graph of $4$ vertices. We have a total of $6$ edges of given weights but we do not have the exact graph. Many different graphs are possible each having a different structure. Consider these $2$ graphs, both of them are different. We do not know the exact structure of the graph, so what the question wants is to find the MST of all such structures and out of these tell the weight of the MST having maximum weight. The point about the MST of a graph with unique edge weights is valid for a given structure of the graph. With the same set of edge weights more than $1$ graph is possible and all of them can have different MSTs.

My solution: Draw a complete graph of $4$ vertices. Sort given edges $y$ weight in increasing order. Just like Kruskal's algorithm sort the edges by weight. MST of graph with $4$ vertices and $6$ edges will have $3$ edges. Now in any case we will have to include edges with weights $1$ and $2$ as they are minimum and Kruskal's algorithm includes minimum weight edge if it does not form a cycle. We can not have a cycle with $2$ edges. In Kruskals algorithm, an edge will be rejected if it forms a cycle with the edges already selected. To increase the weight of our MST we will try to reject the edge with weight $3.$ This can be done by forming a cycle. The graph in pic1 shows this case. This implies, the total weight of this graph will be $1+2+4 = 7.$
edited by
79 votes
79 votes

Graph $G$ can be like this:

edited by
30 votes
30 votes
ans is 7.

it is said maximum weight pssbl.

draw a triangle. 3 sides weight 1 2 3. and 4th point is in center. join it with tringle vertices.. got more 3 sides. new side weight 4 5 6. now draw mst. take 1 take 2. cant take 3, so take 4. 1+2+4=7
edited by
18 votes
18 votes

Corrections or suggestions are welcomed.

Answer:

Related questions

26.8k
views
6 answers
117 votes
Sandeep Singh asked Feb 12, 2016
26,758 views
$G=(V, E)$ is an undirected simple graph in which each edge has a distinct weight, and $e$ is a particular edge of $G$. Which of the following statements about the ... of $G$ excludes $e$.I only.II only.Both I and II.Neither I nor II.
23.1k
views
8 answers
62 votes
Sandeep Singh asked Feb 12, 2016
23,128 views
Let $G$ be a weighted connected undirected graph with distinct positive edge weights. If every edge weight is increased by the same value, then which of the following statements is/ ... .$P$ only$Q$ onlyNeither $P$ nor $Q$Both $P$ and $Q$
29.4k
views
5 answers
63 votes
Sandeep Singh asked Feb 12, 2016
29,429 views
Consider the following directed graph:The number of different topological orderings of the vertices of the graph is _____________.
24.7k
views
9 answers
65 votes
Sandeep Singh asked Feb 12, 2016
24,741 views
Consider the weighted undirected graph with $4$ vertices, where the weight of edge $\{i,j\}$ is given by the entry $W_{ij}$ in the matrix $W$. ... path between some pair of vertices will contain the edge with weight $x$ is ___________.