Minimum Spanning Trees 2
Try VividMath Premium to unlock full access
Time limit: 0
Quiz summary
0 of 5 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
Information
–
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Loading...
- 1
- 2
- 3
- 4
- 5
- Answered
- Review
-
Question 1 of 5
1. Question
Find the length of the minumum spanning tree of this network.- (42)
Hint
Help VideoCorrect
Correct!
Incorrect
Need TextPlayCurrent Time 0:00/Duration Time 0:00Remaining Time -0:00Stream TypeLIVELoaded: 0%Progress: 0%0:00Fullscreen00:00MutePlayback Rate1x- 2x
- 1.5x
- 1.25x
- 1x
- 0.75x
- 0.5x
Subtitles- subtitles off
Captions- captions off
- English
Chapters- Chapters
Kruskal’s Algorithm is a method of finding a minimum spanning tree by selecting the edges by least to most.First, draw a diagram to plot the vertices of the network.Next, list down the edges with the values going from least to most. Since we only need 55 edges to make a spanning tree for this network, pick the 55 edges with the least value.ABAB == 77 AEAE == 88 CDCD == 88 BFBF == 99 CECE == 1010 BCBC == 1212 FCFC == 1313 EDED == 1414 FEFE == 1515 Now draw the 55 edges with the lowest values in the diagramNotice that all the vertices are now connected and we have 55 edges, one less than the number of vertices.This diagram fits the criteria of a spanning tree and is also using the edges with the minimum weights.Finally, get the sum of the edges of the spanning tree.minimum length == 7+8+8+9+107+8+8+9+10 == 4242 4242 -
Question 2 of 5
2. Question
Find the length of the minimum spanning tree of this network.- (82)
Hint
Help VideoCorrect
Great Work!
Incorrect
Need TextPlayCurrent Time 0:00/Duration Time 0:00Remaining Time -0:00Stream TypeLIVELoaded: 0%Progress: 0%0:00Fullscreen00:00MutePlayback Rate1x- 2x
- 1.5x
- 1.25x
- 1x
- 0.75x
- 0.5x
Subtitles- subtitles off
Captions- captions off
- English
Chapters- Chapters
Kruskal’s Algorithm is a method of finding a minimum spanning tree by selecting the edges by least to most.First, draw a diagram to plot the vertices of the network.Next, list down the edges with the values going from least to most. Since we only need 66 edges to make a spanning tree for this network, pick the 66 edges with the least value.EFEF == 1010 FGFG == 1010 GCGC == 1212 BGBG == 1414 AEAE == 1616 BCBC == 1616 FDFD == 2020 EDED == 2222 EBEB == 3838 DCDC == 4040 Notice that AEAE has a lower value than FDFD, but since using AEAE will create a cycle, we will be using the next least valued edge, which is FDFDNow draw the 66 edges with the lowest values in the diagramNotice that all the vertices are now connected and we have 55 edges, one less than the number of vertices.This diagram fits the criteria of a spanning tree and is also using the edges with the minimum weights.Finally, get the sum of the edges of the spanning tree.minimum length == 10+10+12+14+16+2010+10+12+14+16+20 == 8282 8282 -
Question 3 of 5
3. Question
This network shows the lengths of the pipes needed to connect each location in metres. What is the smallest connection distance between all these points in metres?- (220) mm
Hint
Help VideoCorrect
Nice Job!
Incorrect
Need TextPlayCurrent Time 0:00/Duration Time 0:00Remaining Time -0:00Stream TypeLIVELoaded: 0%Progress: 0%0:00Fullscreen00:00MutePlayback Rate1x- 2x
- 1.5x
- 1.25x
- 1x
- 0.75x
- 0.5x
Subtitles- subtitles off
Captions- captions off
- English
Chapters- Chapters
Kruskal’s Algorithm is a method of finding a minimum spanning tree by selecting the edges by least to most.We can use Kruskal’s Algorithm to find the minimum spanning tree of this network.Start by drawing a diagram to plot the vertices of the network.Next, list down the edges with the values going from least to most. Since we only need 66 edges to make a spanning tree for this network, pick the 66 edges with the least value.10 m10 m 10 m10 m 30 m30 m 50 m50 m 60 m60 m 60 m60 m 70 m70 m 80 m80 m 85 m85 m 90 m90 m 100 m100 m Now draw the 66 edges with the lowest values in the diagramNotice that all the vertices are now connected and we have 66 edges, one less than the number of vertices.This diagram fits the criteria of a spanning tree and is also using the edges with the minimum weights.Finally, get the sum of the edges of the spanning tree.minimum length == 10+10+30+50+60+6010+10+30+50+60+60 == 220 m220 m Therefore, the least length of pipes that can be used to connect all the locations is 220 m220 m.220 m220 m -
Question 4 of 5
4. Question
This network shows the cost of each fiber optic cable used to connect each location in dollars. What is the minimal cost to connect all of these locations?- $$ (7500)
Hint
Help VideoCorrect
Correct!
Incorrect
Need TextPlayCurrent Time 0:00/Duration Time 0:00Remaining Time -0:00Stream TypeLIVELoaded: 0%Progress: 0%0:00Fullscreen00:00MutePlayback Rate1x- 2x
- 1.5x
- 1.25x
- 1x
- 0.75x
- 0.5x
Subtitles- subtitles off
Captions- captions off
- English
Chapters- Chapters
Kruskal’s Algorithm is a method of finding a minimum spanning tree by selecting the edges by least to most.We can use Kruskal’s Algorithm to find the minimum spanning tree of this network.Start by drawing a diagram to plot the vertices of the network.Next, list down the edges with the values going from least to most. Since we only need 66 edges to make a spanning tree for this network, pick the 66 edges with the least value.$800$800 $900$900 $1000$1000 $1100$1100 $1400$1400 $1800$1800 $1900$1900 $3200$3200 $3500$3500 $4000$4000 $5600$5600 $5900$5900 Notice that the edge with the value of $1400$1400 has a lower cost that the edges costing $1800$1800 and $1900$1900, but since using the edge costing $1400$1400 will create a cycle, we will be using the next two least valued edges instead.Now draw the 66 edges with the lowest values in the diagramNotice that all the vertices are now connected and we have 66 edges, one less than the number of vertices.This diagram fits the criteria of a spanning tree and is also using the edges with the minimum weights.Finally, get the sum of the edges of the spanning tree.minimum length == 800+900+1000+1100+1800+1900800+900+1000+1100+1800+1900 == $7500$7500 Therefore, the least cost of fiber optic cables that can be used to connect all the locations is $7500$7500.$7500$7500 -
Question 5 of 5
5. Question
The diagram shows a plan for a golf course including a pump PP to distribute the water to the whole course. What is the minimum length of hose in metres that can be used to distribute the water from the pump to all the locations?- (670) mm
Hint
Help VideoCorrect
Fantastic!
Incorrect
Need TextPlayCurrent Time 0:00/Duration Time 0:00Remaining Time -0:00Stream TypeLIVELoaded: 0%Progress: 0%0:00Fullscreen00:00MutePlayback Rate1x- 2x
- 1.5x
- 1.25x
- 1x
- 0.75x
- 0.5x
Subtitles- subtitles off
Captions- captions off
- English
Chapters- Chapters
Kruskal’s Algorithm is a method of finding a minimum spanning tree by selecting the edges by least to most.We can use Kruskal’s Algorithm to find the minimum spanning tree of this network.Start by drawing a diagram to plot the vertices of the network.Next, list down the edges with the values going from least to most. Since we only need 66 edges to make a spanning tree for this network, pick the 66 edges with the least value.80 m80 m 90 m90 m 100 m100 m 105 m105 m 110 m110 m 115 m115 m 120 m120 m 140 m140 m 170 m170 m 185 m185 m 195 m195 m 210 m210 m Notice that the edges with the lengths of 115115, 120120, 140140 and 170170 metres has a lower lengths than than the edge that is 185185 metres long, but since using the edges with the lengths of 115115, 120120, 140140 and 170170 metres will create a cycle, we will be using the edge that is 185185 metres long instead.Now draw the 66 edges with the lowest values in the diagramNotice that all the vertices are now connected and we have 66 edges, one less than the number of vertices.This diagram fits the criteria of a spanning tree and is also using the edges with the minimum weights.Finally, get the sum of the edges of the spanning tree.minimum length == 80+90+100+105+110+18580+90+100+105+110+185 == 670 m670 m Therefore, the least length of water hose that can be used to provide water to all the locations is 670 metres670 metres long.670 m670 m
Quizzes
- Vertices and Edges
- Degrees 1
- Degrees 2
- Degrees 3
- Drawing A Network 1
- Drawing A Network 2
- Completing a Table from a Network Diagram
- Network from Maps and Plans
- Identifying Paths and Cycles
- Eulerian Trails and Circuits 1
- Eulerian Trails and Circuits 2
- Identifying Spanning Trees
- Minimum Spanning Trees 1
- Minimum Spanning Trees 2
- Shortest Path 1
- Shortest Path 2