Samiksha Jaiswal (Editor)

Function problem

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In computational complexity theory, a function problem is a computational problem where a single output (of a total function) is expected for every input, but the output is more complex than that of a decision problem, that is, it isn't just YES or NO.

Contents

Formal definition

A functional problem P is defined as a relation R ( x , y ) over a cartesian product over strings of an arbitrary alphabet Σ :

R Σ × Σ

An algorithm solves P if for every input x such that there exists a y satisfying ( x , y ) R , the algorithm produces one such y .

Examples

A well-known function problem is given by the Functional Boolean Satisfiability Problem, FSAT for short. The problem, which is closely related to the SAT decision problem can be formulated as follows:

Given a boolean formula φ with variables x 1 , , x n , find an assignment x i { TRUE , FALSE } such that φ evaluates to TRUE or decide that no such assignment exists.

In this case the relation R ( x , y ) is given by tuples of suitably encoded boolean formulas and satisfying assignments.

Other notable examples include the travelling salesman problem, which asks for the route taken by the salesman, and the integer factorization problem, which asks for the list of factors.

Relationship to other complexity classes

Consider an arbitrary decision problem in the class NP. By definition each problem instance x which are answered 'yes' have a certificate y which serves as a proof for the 'yes' answer. Thus, the set of these tuples ( x , y ) forms a relation. The complexity class derived from this transformation is denoted by F ( N P ) or FNP for short. The mapping of the complexity class P is denoted by FP. The class FP is the set of function problems which can be solved by a deterministic Turing machine in polynomial time, whereas FNP is the set of function problems which can be solved by a non-deterministic Turing machine in polynomial time.

Self-reducibility

Observe that the problem FSAT introduced above can be solved using only polynomially many calls to a subroutine which decides the SAT problem: An algorithm can first ask whether the formula φ is satisfiable. After that the algorithm can fix variable x 1 to TRUE and ask again. If the resulting formula is still satisfiable the algorithm keeps x 1 fixed to TRUE and continues to fix x 2 , otherwise it decides that x 1 has to be FALSE and continues. Thus, FSAT is solvable in polynomial time using an oracle deciding SAT. In general, a problem in NP is called self-reducible if its function variant can be solved in polynomial time using an oracle deciding the original problem. Every NP-complete problem is self-reducible. It is conjectured that the integer factorization problem is not self-reducible.

Reductions and complete problems

Function problems can be reduced much like decision problems: Given function problems Π R and Π S we say that Π R reduces to Π S if there exists polynomially-time computable functions f and g such that for all instances x of R and possible solutions y of S , it holds that

  • If x has an R -solution, then f ( x ) has an S -solution.
  • ( f ( x ) , y ) S ( x , g ( x , y ) ) R .
  • It is therefore possible to define FNP-complete problems analogous to the NP-complete problem:

    A problem Π R is FNP-complete if every problem in FNP can be reduced to Π R . The complexity class of FNP-complete problems is denoted by FNP-C or FNPC. It coincides with F ( N P ) . Hence the problem FSAT is also an FNP-complete problem, and it holds that P = N P if and only if F P = F N P .

    Total function problems

    The relation R ( x , y ) used to define function problems has the drawback of being incomplete: Not every input x has a counterpart y such that ( x , y ) R . Therefore the question of computability of proofs is not separated from the question of their existence. To overcome this problem it is convenient to consider the restriction of function problems to total relations yielding the class TFNP as a subclass of FNP. This class contains problems such as the computation of pure Nash equilibria in certain strategic games where a solution is guaranteed to exist. It has been shown that T F N P = F ( N P co-NP ) . In addition, if TFNP contains any FNP-complete problem it follows that N P = co-NP .

    References

    Function problem Wikipedia