Theorem
In computability theory, Rice’s theorem states that all non-trivial, semantic properties of programs are undecidable. A semantic property is one about the program’s behavior (for instance, does the program terminate for all inputs), unlike a syntactic property (for instance, does the program contain an if-then-else statement). A property is non-trivial if it is neither true for every computable function, nor false for every computable function.
Rice’s theorem can also be put in terms of functions: for any non-trivial property of partial functions, no general and effective method can decide whether an algorithm computes a partial function with that property. Here, a property of partial functions is called trivial if it holds for all partial computable functions or for none, and an effective decision method is called general if it decides correctly for every algorithm.
The theorem is named after Henry Gordon Rice, who proved it in his doctoral dissertation of 1951 at Syracuse University.
Introduction[edit]
Another way of stating Rice’s theorem that is more useful in computability theory follows.
Let S be a set of languages that is nontrivial, meaning
- there exists a Turing machine that recognizes a language in S,
- there exists a Turing machine that recognizes a language not in S.
Then it is undecidable to determine whether the language recognized by an arbitrary Turing machine lies in S.
In practice, this means that there is no machine that can always decide whether the language of a given Turing machine has a particular nontrivial property. Special cases include the undecidability of whether a Turing machine accepts a particular string, whether a Turing machine recognizes a particular recognizable language, and whether the language recognized by a Turing machine could be recognized by a nontrivial simpler machine, such as a finite automaton.
It is important to note that Rice’s theorem does not say anything about those properties of machines or programs that are not also properties of functions and languages. For example, whether a machine runs for more than 100 steps on a particular input is a decidable property, even though it is non-trivial. Implementing exactly the same language, two different machines might require a different number of steps to recognize the same input. Similarly, whether a machine has more than 5 states is a decidable property of the machine, as the number of states can simply be counted. Where a property is of the kind that either of the two machines may or may not have it, while still implementing exactly the same language, the property is of the machines and not of the language, and Rice’s Theorem does not apply.
Using Rogers‘ characterization of acceptable programming systems, Rice’s Theorem may essentially be generalized from Turing machines to most computer programming languages: there exists no automatic method that decides with generality non-trivial questions on the behavior of computer programs.
As an example, consider the following variant of the halting problem. Let P be the following property of partial functions F of one argument: P(F) means that F is defined for the argument ‘1’. It is obviously non-trivial, since there are partial functions that are defined at 1, and others that are undefined at 1. The 1-halting problem is the problem of deciding of any algorithm whether it defines a function with this property,
i.e., whether the algorithm halts on input 1. By Rice’s theorem, the 1-halting problem is undecidable. Similarly the question of whether a Turing machine T terminates on an initially empty tape (rather than with an initial word w given as second argument in addition to a description of T, as in the full halting problem) is still undecidable.
Formal statement[edit]
Let
denote the natural numbers, and let
denote the class of unary (partial) computable functions. Let
admissible numbering of the computable functions. Denote by
be aneth (partial) computable function.
theWe identify each property that a computable function may have with the subset of
consisting of the functions with that property. Thus, given a set
, a computable function
has property
if and only if
. For each property there is an associated
e, whether
of determining, given.
Rice’s theorem states that the decision problem
decidable (also called recursive or computable) if and only if
isor
.
Examples[edit]
According to Rice’s theorem, if there is at least one computable function in a particular class C of computable functions and another computable function not in C then the problem of deciding whether a particular program computes a function in C is undecidable. For example, Rice’s theorem shows that each of the following sets of computable functions is undecidable:
- The class of computable functions that return 0 for every input, and its complement.
- The class of computable functions that return 0 for at least one input, and its complement.
- The class of computable functions that are constant, and its complement.
- The class of indices for computable functions that are total.[1]
- The class of indices for recursively enumerable sets that are cofinite.
- The class of indices for recursively enumerable sets that are recursive.
Proof by Kleene’s recursion theorem[edit]
A corollary to Kleene’s recursion theorem states that for every Gödel numbering
computable functions and every computable function
of the, there is an index
such that
returns
. (In the following, we say that
“returns”
if either
, or both
and
are undefined.) Intuitively,
quine, a function that returns its own source code (Gödel number), except that rather than returning it directly,
is apasses its Gödel number to
and returns the result.
Let
be a set of computable functions such that
. Then there are computable functions
and
. Suppose that the set of indices
such that
is decidable; then, there exists a function
that returns
if
, and
otherwise. By the corollary to the recursion theorem, there is an index
such that
returns
. But then, if
, then
is the same function as
, and therefore
; and if
, then
is
, and therefore
. In both cases, we have a contradiction.
Proof by reduction from the halting problem[edit]
Proof sketch[edit]
Suppose, for concreteness, that we have an algorithm for examining a program p and determining infallibly whether p is an implementation of the squaring function, which takes an integer d and returns d2. The proof works just as well if we have an algorithm for deciding any other nontrivial property of program behavior (i.e a semantic and non-trivial property), and is given in general below.
The claim is that we can convert our algorithm for identifying squaring programs into one that identifies functions that halt. We will describe an algorithm that takes inputs a and i and determines whether program a halts when given input i.
The algorithm for deciding this is conceptually simple: it constructs (the description of) a new program t taking an argument n, which (1) first executes program a on input i (both a and i being hard-coded into the definition of t), and (2) then returns the square of n. If a(i) runs forever, then t never gets to step (2), regardless of n. Then clearly, t is a function for computing squares if and only if step (1) terminates. Since we’ve assumed that we can infallibly identify programs for computing squares, we can determine whether t, which depends on a and i, is such a program, and that for every a and i; thus we have obtained a program that decides whether program a halts on input i. Note that our halting-decision algorithm never executes t, but only passes its description to the squaring-identification program, which by assumption always terminates; since the construction of the description of t can also be done in a way that always terminates, the halting-decision cannot fail to halt either.
halts (a,i) { define t(n) { a(i) return n×n } return is_a_squaring_function(t) }
This method doesn’t depend specifically on being able to recognize functions that compute squares; as long as some program can do what we’re trying to recognize, we can add a call to a to obtain our t. We could have had a method for recognizing programs for computing square roots, or programs for computing the monthly payroll, or programs that halt when given the input "Abraxas"; in each case, we would be able to solve the halting problem similarly.
Formal proof[edit]
For the formal proof, algorithms are presumed to define partial functions over strings and are themselves represented by strings. The partial function computed by the algorithm represented by a string a is denoted Fa. This proof proceeds by reductio ad absurdum: we assume that there is a non-trivial property that is decided by an algorithm, and then show that it follows that we can decide the halting problem, which is not possible, and therefore a contradiction.
Let us now assume that P(a) is an algorithm that decides some non-trivial property of Fa. Without loss of
generality we may assume that P(no-halt) = “no”, with no-halt being the representation of an algorithm that never halts. If this is not true, then this holds for the negation of the property. Since P decides a non-trivial property, it follows that there is a string b that represents an algorithm and P(b) = “yes”. We can then define an algorithm H(a, i) as follows:
- 1. construct a string t that represents an algorithm T(j) such that
- T first simulates the computation of Fa(i),
- then T simulates the computation of Fb(j) and returns its result.
- 2. return P(t).
We can now show that H decides the halting problem:
- Assume that the algorithm represented by a halts on input i. In this case Ft = Fb and, because P(b) = “yes” and the output of P(x) depends only on Fx, it follows that P(t) = “yes” and, therefore H(a, i) = “yes”.
- Assume that the algorithm represented by a does not halt on input i. In this case Ft = Fno-halt, i.e., the partial function that is never defined. Since P(no-halt) = “no” and the output of P(x) depends only on Fx, it follows that P(t) = “no” and, therefore H(a, i) = “no”.
Since the halting problem is known to be undecidable, this is a contradiction and the assumption that there is an algorithm P(a) that decides a non-trivial property for the function represented by a must be false.
Rice’s theorem and index sets[edit]
Rice’s theorem can be succinctly stated in terms of index sets:
Let
be a class of partial recursive functions with. Then
is recursive if and only if
or
.
Here
natural numbers, including zero.
is the set ofAn analogue of Rice’s theorem for recursive sets[edit]
One can regard Rice’s theorem as asserting the impossibility of effectively deciding for any recursively enumerable set
whether it has a certain nontrivial property.[2]
In this section, we give an analogue of Rice’s theorem for recursive sets, instead of recursively enumerable sets.[3]
Roughly speaking, the analogue says that if one can effectively determine for every recursive set whether it has a certain property,
then only finitely many integers determine whether a recursive set has the property.
This result is analogous to the original theorem of Rice, because both results assert that a property is “decidable”
only if one can determine whether a set has that property by examining for at most finitely many
(for no
, for the original theorem), if
belongs to the set.
Let
If
is a recursive set, then for some
, computable function
is the characteristic function of
. We call
a characteristic index for
(There are infinitely many such
Let’s say the class
for any nonnegative integer
(not necessarily a characteristic index),
- if is a characteristic index for a recursive set belonging to , then the algorithm gives “yes”;
- if is a characteristic index for a recursive set not belonging to , then the algorithm gives “no”.
A set
extends a string
if for every
(the length of
the
th element of
is 1 if
For example,
extends the string
A string
is winning determining if every recursive set extending
belongs to
A string
is losing determining if no recursive set extending
belongs to
.
We can now state the following analogue of Rice’s theorem
(Kreisel, Lacombe, and Shoenfield, 1959,[4] Kumabe and Mihara, 2008[5]):
A class
if and only if there are a recursively enumerable set
and a recursively enumerable set
every recursive set extends a string in
.
This result has been applied to foundational problems in computational social choice (more broadly, algorithmic game theory).
For instance, Kumabe and Mihara (2008,[5] 2008[6])
apply this result to an investigation of the Nakamura numbers for simple games in cooperative game theory and social choice theory.
See also[edit]
- ^ Soare, Robert I. (1987). Recursively Enumerable Sets and Degrees. Springer. p. 21.
- ^ A set is recursively enumerable if
for some , where is the domain
(the set of inputs such that
is defined) of .
The result for recursively enumerable sets can be obtained from that for (partial) computable functions by
considering the class , where is a class of
recursively enumerable sets. - ^ A recursively enumerable
set is recursive if its complement is recursively enumerable.
Equivalently, is recursive if its characteristic function is computable. - ^ Kreisel, G.; Lacombe, D.; Shoenfield, J. R. (1959). “Partial recursive functionals and effective operations”. In Heyting, A. (ed.). Constructivity in Mathematics. Studies in Logic and the Foundations of Mathematics. Amsterdam: North-Holland. pp. 290–297.
- ^ a b Kumabe, M.; Mihara, H. R. (2008). “Computability of simple games: A characterization and application to the core”. Journal of Mathematical Economics. 44 (3–4): 348–366. arXiv:0705.3227. doi:10.1016/j.jmateco.2007.05.012.
- ^ Kumabe, M.; Mihara, H. R. (2008). “The Nakamura numbers for computable simple games”. Social Choice and Welfare. 31 (4): 621. arXiv:1107.0439. doi:10.1007/s00355-008-0300-5.
References[edit]
- Hopcroft, John E.; Ullman, Jeffrey D. (1979), Introduction to Automata Theory, Languages, and Computation, Addison-Wesley, pp. 185–192
- Rice, H. G. (1953), “Classes of recursively enumerable sets and their decision problems”, Transactions of the American Mathematical Society, 74 (2): 358–366, doi:10.1090/s0002-9947-1953-0053041-6, JSTOR 1990888
- Rogers, Hartley Jr. (1987), Theory of Recursive Functions and Effective Computability (2nd ed.), McGraw-Hill, §14.8