Imagine you have a hard puzzle with millions of solutions. Now imagine someone offers to help — but only if the puzzle has exactly one solution. Can that restriction make the problem easier?
In 1986, Leslie Valiant and Vijay Vazirani showed the answer is no — at least under randomized reductions. Their celebrated lemma proves that Unique-SAT (the version of SAT where the formula is promised to have at most one satisfying assignment) is as hard as ordinary SAT. If you could solve Unique-SAT efficiently, you could solve all of NP efficiently.
The surprising engine behind the proof is randomized hashing: add a handful of random XOR constraints (parity equations) to your formula, and with constant probability you carve solution space down to a single point. Run this trick polynomially many times and you find the answer with high probability.
This was one of the first results showing that randomness can substitute for uniqueness in complexity theory — a theme that echoes through primality testing, cryptographic proofs, and the polynomial method.
Comments
Loading comments...