
CUUS063 main CUUS063 Goldreich 978 0 521 88473 0 March 31, 2008 18:49
P, NP, AND NP-COMPLETENESS
maximum value (resp., minimum cost). For simplicity, let us focus on the case of a
value that we wish to maximize. Still, there are two different objectives (i.e., exceeding
a threshold and optimizing), giving rise to two different (auxiliary) search problems
related to the same relation R. Specifically, for a binary relation R and a value function
f : {0, 1}
∗
×{0, 1}
∗
→ R, we consider two search problems.
1. Exceeding a threshold: Given a pair (x,v) the task is to find y ∈ R(x) such that
f (x, y) ≥ v, where R(x) ={y :(x, y) ∈R}. That is, we are actually referring to the
search problem of the relation
R
f
def
={(x,v, y):(x, y) ∈R ∧ f (x, y) ≥ v}, (2.1)
where x,v denotes a string that encodes the pair (x,v).
2. Maximization:Givenx the task is to find y ∈ R(x) such that f (x, y) = v
x
, where v
x
is the maximum value of f (x, y
)overally
∈ R(x). That is, we are actually referring
to the search problem of the relation
R
f
def
={(x, y)∈R : f (x, y) = max
y
∈R(x)
{ f (x, y
)}}. (2.2)
Examples of value functions include the size of a clique in a graph, the amount of flow in
a network (with link capacities), etc. The task may be to find a clique of size exceeding
a given threshold in a given g raph or to find a maximum-size clique in a given graph.
Note that, in these examples, the “base” search problem (i.e., the relation R) is quite easy
to solve, and the difficulty arises from the auxiliary condition on the value of a solution
(presented in R
f
and R
f
). Indeed, one may trivialize R (i.e., let R(x) ={0, 1}
poly(|x|)
for
every x), and impose all necessary structure by the function f (see Exercise 2.8).
We confine ourselves to the case that f is polynomial-time computable, which in
particular means that f (x, y) can be represented by a rational number of length polynomial
in |x|+|y|. We will show next that, in this case, the two aforementioned search problems
(i.e., of R
f
and R
f
) are computationally equivalent.
Theorem 2.13: For any polynomial-time computable f : {0, 1}
∗
×{0, 1}
∗
→R and
a polynomially bounded binary relation R, let R
f
and R
f
be as in Eq. (2.1) and
Eq. (2.2), respectively. Then the search problems of R
f
and R
f
are computationally
equivalent.
Note that, for R ∈ PC and polynomial-time computable f , it holds that R
f
∈ PC.Com-
bining Theorems 2.10 and 2.13, it follows that in this case both R
f
and R
f
are reducible
to NP. We note, however, that even in this case it does not necessarily hold that R
f
∈ PC.
See further discussion following the proof.
Proof: The search problem of R
f
is reduced to the search problem of R
f
by finding
an optimal solution (for the given instance) and comparing its value to the given
threshold value. That is, we construct an oracle machine that solves R
f
by making a
single query to R
f
. Specifically, on input (x,v), the machine issues the query x (to a
solver for R
f
), obtaining the optimal solution y (or an indication ⊥ that R(x) =∅),
computes f (x, y), and returns y if f (x, y) ≥ v. Otherwise (i.e., either y =⊥or
f (x, y) <v), the machine returns an indication that R
f
(x,v) =∅.
Turning to the opposite direction, we reduce the search problem of R
f
to the
search problem of R
f
by first finding the optimal value v
x
= max
y∈R(x)
{f (x, y)}
62