A topic in the Open Knowledge Graph — a free, open map of 15,290 topics and the order to learn them in.

Parameterized Complexity and Fixed-Parameter Tractability

Graduate Depth 97 in the knowledge graph I know this Set as goal
602prerequisites beneath it
See this on the map →
NP-CompletenessFixed-Parameter Tractability (FPT)+1 more
parameterized-complexity FPT kernelization

Core Idea

Parameterized complexity treats problem instances as pairs (x, k) where k is a parameter (e.g., solution size). An NP-hard problem can be fixed-parameter tractable (FPT) if solvable in time f(k) · poly(|x|), making it practical for small parameters despite NP-hardness. This framework explains why many intractable problems become tractable on restricted inputs and guides algorithm design.

Explainer

You already know that NP-completeness is a worst-case statement: no polynomial-time algorithm handles *all* instances. But NP-completeness hides enormous variation within a problem. Consider the Vertex Cover problem: given a graph G and integer k, does G have a vertex cover of size ≤ k? This is NP-complete. But in practice, the k you care about might be small — perhaps you're covering 10 vertices in a network of millions. Parameterized complexity formalizes this intuition by asking: can we solve the problem efficiently when k is small, even if the input n is huge?

A problem is fixed-parameter tractable (FPT) if there exists an algorithm running in time f(k) · poly(n), where f is any computable function of k alone (often something like 2k or k!), and poly(n) is polynomial in the input size. The key insight is that the super-polynomial part depends only on k. If k = 10, even 2k = 1024 is a small constant multiplied by a polynomial — the algorithm is practical. For Vertex Cover, a classical FPT algorithm runs in time O(2k · n): at each step, pick an uncovered edge, branch on including one of its two endpoints, and recurse. The depth is at most k, giving 2k leaves, and each path processes the graph in linear time.

Kernelization is a complementary technique: reduce any instance (x, k) to an equivalent smaller instance (x', k') where |x'| ≤ g(k) for some function g. This reduced instance is the kernel. For Vertex Cover, the classic kernel applies the crown rule and LP relaxation to reduce to a graph with at most 2k vertices — so you can solve any instance with k ≤ 50 by first kernelizing down to 100 vertices, then running any algorithm on that tiny instance. Kernelization is often the most practical tool because it shrinks the problem before any other computation begins.

The FPT class has an intractability analog: W[1]-hardness means (under standard assumptions) that no FPT algorithm exists, because the problem requires f(k) · n^g(k) time at best. The canonical W[1]-complete problem is k-Clique: find a clique of size k in a graph. This separates problems that are tractable-when-parameterized (FPT) from those that remain hard regardless of how small k is. The hierarchy FPT ⊆ W[1] ⊆ W[2] ⊆ ... mirrors the polynomial hierarchy in classical complexity. When you encounter an NP-hard problem, asking "what is a natural parameter, and is this problem FPT in that parameter?" is often the most practical path to an efficient algorithm.

Practice Questions 5 questions

Prerequisite Chain

Understanding ZeroThe Number ZeroCounting to FiveCounting to 10Counting to 20Counting a Set of Objects Up to 20Cardinality: The Last Number CountedMatching Numerals to QuantitiesSubitizing Small QuantitiesAddition Within 10Number Bonds to 10Addition Within 20Doubles and Near DoublesDoubles Facts Within 10Near Doubles Facts Within 20Mental Math Strategies for AdditionMental Math: Adding and Subtracting TensAddition Within 100Repeated Addition as MultiplicationMultiplication as Equal GroupsMultiplication: ArraysBasic Multiplication Facts (0s, 1s, 2s, 5s, 10s)Multiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Multiplication and Division Fact FamiliesRelationship Between Multiplication and DivisionDivision Facts as Inverse of MultiplicationRemainders and Quotients in DivisionDivision Word ProblemsMulti-Step Word ProblemsSolving Multi-Step Word ProblemsMultiplication Word ProblemsDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineComparing and Ordering IntegersAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersIntroduction to ExponentsOrder of OperationsInteger Order of OperationsVariable ExpressionsThe Distributive PropertyVariables and Expressions ReviewIntroduction to PolynomialsAdding and Subtracting PolynomialsMultiplying PolynomialsFactorialPermutationsCombinationsCounting Principles: Addition and Multiplication RulesIntroduction to Graph TheoryPropositional Logic FoundationsLogical EquivalencesBoolean AlgebraIntroduction to Propositional LogicIntroduction to Predicate Logic (First-Order Logic)First-Order Logic SyntaxZFC Axioms OverviewAxiom Schema of SeparationAxiom Schema of ReplacementVon Neumann OrdinalsHereditarily Finite SetsRecursive Definitions on Finite SetsWell-Founded Relations and Transfinite RecursionThe Axiom of Choice and Equivalent FormulationsAxiom of ChoiceWell-Ordering TheoremInfinite Cardinal NumbersCantor's TheoremUncountability and the Diagonal ArgumentThe Cantor Set: An Uncountable Nowhere Dense ExampleUncountable Sets and Cantor DiagonalizationThe Halting ProblemComputability ReductionsPolynomial-Time ReductionsLower Bounds Techniques in Computational ComplexityNP-CompletenessThe Cook-Levin Theorem3-SAT and NP-Completeness via CNFClique Problem and Its VariantsVertex Cover and Set Cover ProblemsFixed-Parameter Tractability (FPT)Parameterized Complexity and Fixed-Parameter Tractability

Longest path: 98 steps · 602 total prerequisite topics

Prerequisites (3)

Leads To (0)

No topics depend on this one yet.