Isolation lemma

In theoretical computer science, the term isolation lemma (or isolating lemma) refers to randomized algorithms that reduce the number of solutions to a problem to one, should a solution exist. This is achieved by constructing random constraints such that, with non-negligible probability, exactly one solution satisfies these additional constraints if the solution space is not empty. Isolation lemmas have important applications in computer science, such as the Valiant–Vazirani theorem and Toda's theorem in computational complexity theory.

The first isolation lemma was introduced by Valiant & Vazirani (1986), albeit not under that name. Their isolation lemma chooses a random number of random hyperplanes, and has the property that, with non-negligible probability, the intersection of any fixed non-empty solution space with the chosen hyperplanes contains exactly one element. This suffices to show the Valiant–Vazirani theorem: there exists a randomized polynomial-time reduction from the satisfiability problem for Boolean formulas to the problem of detecting whether a Boolean formula has a unique solution. Mulmuley, Vazirani & Vazirani (1987) introduced an isolation lemma of a slightly different kind: Here every coordinate of the solution space gets assigned a random weight in a certain range of integers, and the property is that, with non-negligible probability, there is exactly one element in the solution space that has minimum weight. This can be used to obtain a randomized parallel algorithm for the maximum matching problem.

Stronger isolation lemmas have been introduced in the literature to fit different needs in various settings. For example, the isolation lemma of Chari, Rohatgi & Srinivasan (1993) has similar guarantees as that of Mulmuley et al., but it uses fewer random bits. In the context of the exponential time hypothesis, Calabro et al. (2008) prove an isolation lemma for k-CNF formulas.

The isolation lemma of Mulmuley, Vazirani, and Vazirani

Any linear program with a randomly chosen linear cost function has a unique optimum with high probability. The isolation lemma of Mulmuley, Vazirani, and Vazirani extends this fact to arbitrary sets and a random cost function that is sampled using few random bits.
Lemma. Let n and N be positive integers, and let \mathcal F be an arbitrary family of subsets of the universe \{1,\dots,n\}. Suppose each element x\in\{1,\dots,n\} in the universe receives an integer weight w(x), each of which is chosen independently and uniformly at random from \{1,\dots,N\}. The weight of a set S in \mathcal F is defined as
w(S) = \sum_{x \in S} w(x)\,.
Then, with probability at least 1-n/N, there is a unique set in \mathcal F that has the minimum weight among all sets of \mathcal F.


It is remarkable that the lemma assumes nothing about the nature of the family \mathcal F: for instance \mathcal F may include all 2^n-1 nonempty subsets. Since the weight of each set in \mathcal F is between 1 and nN on average there will be (2^n-1) / (nN) sets of each possible weight. Still, with high probability, there is a unique set that has minimum weight.

Examples/applications

Notes

References

External links