103 questions · 18 question types identified
A question is this type if and only if it asks you to apply Prim's algorithm starting from a specified vertex on a network given as a diagram or table.
| \(\boldsymbol { P }\) | \(\boldsymbol { Q }\) | \(\boldsymbol { R }\) | \(\boldsymbol { S }\) | \(\boldsymbol { T }\) | \(\boldsymbol { U }\) | |
| \(\boldsymbol { P }\) | - | 14 | 7 | 11 | 6 | 12 |
| \(\boldsymbol { Q }\) | 14 | - | 8 | 10 | 9 | 10 |
| \(\boldsymbol { R }\) | 7 | 8 | - | 12 | 13 | 15 |
| \(\boldsymbol { S }\) | 11 | 10 | 12 | - | 5 | 11 |
| \(\boldsymbol { T }\) | 6 | 9 | 13 | 5 | - | 10 |
| \(\boldsymbol { U }\) | 12 | 10 | 15 | 11 | 10 | - |
| \(\boldsymbol { P }\) | \(Q\) | \(\boldsymbol { R }\) | \(\boldsymbol { S }\) | \(T\) | \(\boldsymbol { U }\) | \(V\) | |
| \(\boldsymbol { P }\) | - | 14 | 7 | 11 | 6 | 12 | 15 |
| \(Q\) | 14 | - | 8 | 10 | 9 | 10 | 18 |
| \(\boldsymbol { R }\) | 7 | 8 | - | 12 | 13 | 15 | 14 |
| \(\boldsymbol { S }\) | 11 | 10 | 12 | - | 5 | 11 | 14 |
| \(T\) | 6 | 9 | 13 | 5 | - | 10 | 17 |
| \(\boldsymbol { U }\) | 12 | 10 | 15 | 11 | 10 | - | 12 |
| \(V\) | 15 | 18 | 14 | 14 | 17 | 12 | - |
A question is this type if and only if it asks you to apply Kruskal's algorithm to find a minimum spanning tree, listing edges in order of consideration.
| \(\mathbf { A }\) | \(\mathbf { B }\) | \(\mathbf { C }\) | \(\mathbf { D }\) | \(\mathbf { E }\) | \(\mathbf { F }\) | |
| \(\mathbf { A }\) | - | 24 | - | - | 23 | 22 |
| \(\mathbf { B }\) | 24 | - | 18 | 19 | 17 | 20 |
| \(\mathbf { C }\) | - | 18 | - | 11 | 14 | - |
| \(\mathbf { D }\) | - | 19 | 11 | - | 13 | - |
| \(\mathbf { E }\) | 23 | 17 | 14 | 13 | - | 21 |
| \(\mathbf { F }\) | 22 | 20 | - | - | 21 | - |
| A | \(B\) | C | D | E | \(F\) | G | \(H\) | |
| A | - | 10 | - | 9 | 10 | - | - | - |
| B | 10 | - | 8 | 5 | - | - | - | - |
| C | - | 8 | - | 9 | - | 10 | - | - |
| D | 9 | 5 | 9 | - | 6 | 7 | 8 | - |
| E | 10 | - | - | 6 | - | δΈ€ | 9 | 7 |
| F | - | - | 10 | 7 | - | - | 5 | - |
| G | - | - | - | 8 | 9 | 5 | - | 8 |
| H | - | - | - | - | 7 | - | 8 | - |
A question is this type if and only if it asks you to apply Prim's algorithm using the tabular/matrix form on a distance table, crossing out rows and selecting from columns.
| A | B | \(C\) | D | E | \(F\) | |
| A | - | 5 | 7 | 9 | 8 | 12 |
| B | 5 | - | 4 | 6 | 5 | 10 |
| C | 7 | 4 | - | 7 | 6 | 8 |
| D | 9 | 6 | 7 | - | 5 | 10 |
| E | 8 | 5 | 6 | 5 | - | 10 |
| F | 12 | 10 | 8 | 10 | 10 | - |
| A | B | C | D | E | F | |
| A | 6 | 7 | 12 | 3 | ||
| B | 6 | 10 | 8 | |||
| C | 7 | 10 | 2 | |||
| D | 12 | 2 | 9 | 8 | ||
| E | 8 | 9 | ||||
| F | 3 | 8 |
| A | B | C | D | E | F | |
| A | - | 10 | 7 | - | 9 | 5 |
| B | 10 | - | - | 1 | - | 4 |
| C | 7 | - | - | - | 3 | - |
| D | - | 1 | - | - | 2 | - |
| E | 9 | - | 3 | 2 | - | - |
| F | 5 | 4 | - | - | - | - |
A question is this type if and only if it asks you to define terms such as tree, spanning tree, minimum spanning tree, or connected graph.
A question is this type if and only if it asks you to state the number of edges in a minimum spanning tree for a network with n vertices.
A question is this type if and only if it asks you to apply both Prim's and Kruskal's algorithms to the same network and compare results or identify differences.
A question is this type if and only if it asks you to state or calculate the total length, weight, or cost of the minimum spanning tree.
A question is this type if and only if it asks you to identify which specific edge (e.g., final edge, seventh edge) would be added at a particular stage of an MST algorithm.
A question is this type if and only if it asks you to find a minimum spanning tree when certain edges must be included or are already in place.
A question is this type if and only if it asks you to draw the minimum spanning tree after finding it, typically using vertices provided in a diagram.
A question is this type if and only if it asks you to find a minimum spanning tree when a specific vertex or edge is removed or cannot be used.
A question is this type if and only if it asks you to state differences between Prim's algorithm and Kruskal's algorithm.
A question is this type if and only if it involves finding constraints on a variable edge weight (e.g., find range of x) based on MST algorithm behavior.
A question is this type if and only if it asks you to find a maximum spanning tree (selecting edges to maximize rather than minimize total weight).
A question is this type if and only if it asks you to calculate actual monetary cost based on MST length and a given cost per unit length.
| From/To | Henhouse (H) | Goatshed (G) | Kennels (K) | Cattery (C) |
| Rainwater collection site (R) | 840 | 810 | 520 | 370 |
| Cattery (C) | - | 680 | 610 | \multirow{3}{*}{} |
| Duckpond (D) | 480 | 310 | ||
| Goatshed (G) | 150 |
A question is this type if and only if it asks you to explain why certain edges are always/never included in an MST or which algorithm to choose in a given scenario.
A question is this type if and only if it asks you to state the number of other minimum spanning trees of the same length.
A question is this type if and only if it asks you to find minimum or maximum possible length of an MST given constraints on edge weights.