Parameterized Complexity
Parameterized complexity refuses to accept NP-hardness as the final word. It measures a problem along a second axis, a parameter k, and asks whether the combinatorial explosion can be confined to k while the dependence on the input size n stays polynomial: fixed-parameter tractability, a running time f(k)*n^c with the exponential quarantined inside f(k). That is dramatically stronger than the brute-force n^(O(k)) (the class XP), where the exponent itself grows with k. Vertex Cover is the flagship, NP-hard in general yet solvable in O(2^k * n), so a small cover is findable even on an enormous graph. The parameter is a modeling choice (solution size, treewidth, a feature count), giving a two-dimensional view of hardness, and the series previews both the toolkit (bounded search trees, kernelization, tree-decomposition DP, color coding) and the wall (the W-hierarchy, where problems like k-Clique are believed not to be FPT).
Articles in this Series(showing 0 of 7)
No articles match your search criteria.