Questions: Fixed-Parameter Tractability: Advanced Topics

4 questions to test your understanding

Score: 0 / 4
Question 1 Multiple Choice

Courcelle's theorem states that for every property P expressible in Monadic Second-Order Logic (MSO) and every graph of treewidth at most w, checking whether a graph satisfies P is FPT in w and n. However, the dependence on w is non-elementary (a tower of exponentials). Is Courcelle's theorem still practically useful despite this super-exponential dependence?

ANo, because the super-exponential dependence makes the algorithm impractical for any reasonable treewidth
BNo, but the theorem is theoretically important for showing which problems are FPT; for practice, explicit algorithms (like DP on tree decompositions) yield much better bounds
CYes, because the tower-exponential is in w, not n, and many real-world graphs have small treewidth (under 5)
DCourcelle's theorem is only applicable to very restricted graph classes and has no relevance to general graphs
Question 2 Short Answer

Iterative compression is an FPT technique: to find a solution of size k, first find any solution of size k+1, then 'compress' it to size k by removing vertices and re-optimizing. Why does this yield FPT algorithms, and for which problems is it particularly effective?

Think about your answer, then reveal below.
Question 3 True / False

The lower bounds for kernelization state that certain problems (like Clique, parameterized by clique size) do not admit polynomial kernels (i.e., kernel of size poly(k)) under complexity assumptions. This suggests there is a fundamental gap between FPT algorithms and 'small' kernels.

TTrue
FFalse
Question 4 Short Answer

The algebraic techniques in FPT use rank arguments to prove lower bounds on kernel size. For instance, some parameterized problems are shown to have no small kernels by exhibiting a 'hard family' of instances whose kernel size lower-bounds are proved via matrix rank. What is the intuition for why rank-based arguments work?

Think about your answer, then reveal below.