RE (complexity)

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

In computability theory and computational complexity theory, RE (recursively enumerable) is the class of decision problems for which a 'yes' answer can be verified by a Turing machine in a finite amount of time.[1] Informally, it means that if the answer to a problem instance is 'yes', then there is some procedure which takes finite time to determine this, and this procedure never falsely reports 'yes' when the true answer is 'no'. However, when the true answer is 'no', the procedure is not required to halt; it may go into an "infinite loop" for some 'no' cases. Such a procedure is sometimes called a semi-algorithm, to distinguish it from an algorithm, defined as a complete solution to a decision problem.[2]

Equivalently, RE is the class of decision problems for which a Turing machine can list all the 'yes' instances, one by one (this is what 'enumerable' means). Each member of RE is a recursively enumerable set and therefore a Diophantine set.

Similarly, co-RE is the set of all languages that are complements of a language in RE. In a sense, co-RE contains languages of which membership can be disproved in a finite amount of time, but proving membership might take forever.

Relations to other classes

The set of recursive languages (R) is a subset of both RE and co-RE.[3] In fact, it is the intersection of those two classes, because we can decide any problem for which there exists a recogniser and also a co-recogniser by simply interleaving them until one obtains a result. Therefore:

\mbox{R} = \mbox{RE}\cap\mbox{co-RE}.

RE-complete

RE-complete is the set of decision problems that are complete for RE. In a sense, these are the "hardest" recursively enumerable problems. All such problems are nonrecursive. Generally, no constraint is placed on the reductions used except that they must be many-one reductions.

Examples of RE-complete problems:

  1. Halting problem: Whether a program given a finite input finishes running or will run forever.
  2. By Rice's Theorem, deciding membership in any nontrivial subset of the set of recursive functions is RE-hard. It will be complete whenever the set is recursively enumerable.
  3. John Myhill (1955)[4] has proven that all creative sets are RE-complete.
  4. The uniform word problem for groups or semigroups. [Indeed, the word problem for some individual groups is RE-complete.]
  5. Deciding membership in a general unrestricted formal grammar. [Again, certain individual grammars have RE-complete membership problem.]
  6. The validity problem for first-order logic.
  7. Post correspondence problem: Given a finite set of strings, determine if there is a string that can be factored into a composition of the strings (allowing repeats) in two different ways.
  8. Determining if a Diophantine equation has any integer solutions.

co-RE-complete

co-RE-complete is the set of decision problems that are complete for co-RE. In a sense, these are the complements of the hardest recursively enumerable problems.

Examples of co-RE-complete problems:

  1. The Domino Problem for Wang tiles.
  2. The satisfiability problem for first-order logic

See also

References

  1. Complexity Zoo: Class RE
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Complexity Zoo: Class co-RE
  4. Lua error in package.lua at line 80: module 'strict' not found..