What this quiz covers
This quiz focuses on Minimum Spanning Trees, giving you a quick way to practice the rules, question types, and explanations that matter most for Finite Mathematics.
In a weighted graph, Prim's algorithm is used starting from vertex S. After 3 iterations, vertices S, A, and B have been added to the minimum spanning tree with edges SA (weight 4) and AB (weight 7). The remaining vertices C, D, E have the following minimum distances to the current tree: C is 5 units from A, D is 3 units from B, and E is 8 units from S. Which vertex will be added in the 4th iteration?
Finite Mathematics Quiz
Practice Minimum Spanning Trees in Finite Mathematics with focused quiz questions that help you check what you know, review explanations, and build confidence with test-style prompts.
This quiz focuses on Minimum Spanning Trees, giving you a quick way to practice the rules, question types, and explanations that matter most for Finite Mathematics.
Try each quiz question before looking at the correct answer. Use the explanations to review missed ideas, then come back to similar questions until the pattern feels familiar.
In a weighted graph, Prim's algorithm is used starting from vertex S. After 3 iterations, vertices S, A, and B have been added to the minimum spanning tree with edges SA (weight 4) and AB (weight 7). The remaining vertices C, D, E have the following minimum distances to the current tree: C is 5 units from A, D is 3 units from B, and E is 8 units from S. Which vertex will be added in the 4th iteration?
Two different minimum spanning tree algorithms are applied to the same weighted graph. Algorithm X produces a spanning tree with total weight 50, while Algorithm Y produces a spanning tree with total weight 48. What can be concluded?
A minimum spanning tree of a connected graph with 6 vertices has total weight 45. If one edge of weight 8 is removed from this spanning tree, creating two separate components, what is the minimum possible weight of the lightest edge that could reconnect these components?
Let G be a connected, weighted graph with n vertices and distinctly weighted edges. Let Tmin be the unique minimum spanning tree and Tmax be the unique maximum spanning tree of G. Which of the following statements must be true?
A fiber-optic network connecting 5 data centers (A, B, C, D, E) is configured as a minimum spanning tree with a total cable length of 40 km. A new data center, F, is to be added to the network. The costs to lay new cable from F to the existing centers are: A=12 km, B=10 km, C=15 km, D=9 km, E=14 km. What will be the total cable length of the new minimum spanning tree that connects all six data centers?
A connected graph has 7 vertices and 12 edges. After running a minimum spanning tree algorithm, exactly how many edges are in the resulting spanning tree, and how many edges from the original graph are NOT included?
Let G be a connected, weighted graph with 10 vertices. A minimum spanning tree (MST) for G is found with a total weight of 120. It is then discovered that an edge e1 not in this MST has the same weight as an edge e2 that is in the MST. Adding e1 to the MST and removing e2 results in a new spanning tree. What can be definitively concluded about the minimum spanning trees of graph G?
In applying Kruskal's algorithm to a weighted graph, an edge of weight w is rejected (not added to the spanning tree). What can be concluded about this edge?