7 Qs · since 2014 · 13 marks · 0.5 marks/paperStandard yield
GATE questions on this topic heavily emphasize structural properties and theoretical invariants of Minimum Spanning Trees (MSTs) rather than raw algorithmic execution traces. Recur… Guide
Topic guide
GATE questions on this topic heavily emphasize structural properties and theoretical invariants of Minimum Spanning Trees (MSTs) rather than raw algorithmic execution traces. Recurring themes include the Cut Property, the Cycle Property, distinct vs. non-distinct edge weights, and the invariance of MSTs under linear weight transformations compared to Shortest Paths. A typical problem presents either a small concrete graph (often with an unknown parameter or repeated weights) or a set of theoretical assertions evaluated across graph classes.
Parameter Constrained MST Inclusion
occasional · NAT · 2 marks · 2025
A weighted graph is given with one edge weight specified as a variable . Students must find the maximum or minimum integer value of such that the edge is included in every (or some) MST using cut/cycle properties.
Counting Distinct MSTs
occasional · NAT · 2 marks · 2014
A weighted graph with non-distinct edge weights is provided. Students determine the total number of distinct spanning trees that achieve the minimum weight by evaluating independent choices in Kruskal's algorithm.
MST Reconstruction and Cycle Property Bounds
occasional · NAT · 2 marks · 2015
Given a subset of edges forming an MST with distinct weights, students determine the minimum (or maximum) possible total sum of all edge weights in the graph by applying for all non-tree edges.
MST vs. Shortest Path Invariant Properties
common · mixed · 2 marks · 2022, 2017, 2016, 2015
Theoretical assertions comparing how graph transformations (e.g., adding a constant to all edge weights) or edge weight constraints (e.g., distinct weights) affect MST uniqueness and structure versus shortest paths.
Spanning Tree Edge Count
Used to compute the new MST weight after adding a constant scalar to all edge weights: .
Cycle Property of MST
Determines the lower bound on the weight of a non-tree edge when edge weights are distinct and is the MST.
Cut Property for Strict MST Inclusion
Ensures an edge crossing a non-trivial cut is strictly required in EVERY MST.
Shift from simple uniform weight modification NATs and conceptual MCQs toward multi-concept MSQs and optimization/parameter-bounding NATs.
2025, 2022, 2017, 2016, 2015, 2014
Increased focus on testing fundamental MST properties (Cut Property, Cycle Property, Kruskal step logic) via edge rank statements and parameter bounds rather than standard execution traces.
2025, 2022
Easy: Direct calculation of MST weight change under a uniform shift , or standard 1-statement properties. Medium: Applying cycle property to deduce missing non-tree edge weights, evaluating Cut/Cycle properties in MSQs, finding parameter bounds for MST inclusion, or counting distinct MSTs across multiple disjoint edge choices. Hard: Combinations of multiple parameter inequalities or complex topological cuts with overlapping cycles.