Kleene's recursion theorem

Not to be confused with Kleene's theorem for regular languages.

In computability theory, Kleene's recursion theorems are a pair of fundamental results about the application of computable functions to their own descriptions. The theorems were first proved by Stephen Kleene in 1938 and appear in his 1952 book Introduction to Metamathematics.

The two recursion theorems can be applied to construct fixed points of certain operations on computable functions, to generate quines, and to construct functions defined via recursive definitions. The application to construction of a fixed point of any computable function is known as Rogers' theorem and is due to Hartley Rogers, Jr. (Rogers, 1967).

Notation

The statement of the theorems refers to an admissible numbering of the partial recursive functions, such that the function corresponding to index is . In programming terms, is the program and its semantic denotation.

Rogers' fixed-point theorem

Given a function , a fixed point of is, in this context, an index such that ; in programming terms, is semantically equivalent to .

Rogers' fixed-point theorem. If is (total) computable, it has a fixed point.

This theorem is Theorem I in (Rogers, 1967: §11.2) where it is described as "a simpler version" of Kleene's (second) recursion theorem.

Proof of the fixed-point theorem

The proof uses a particular total computable function , defined as follows. Given a natural number , the function outputs the index of the partial computable function that performs the following computation:

Given an input , first attempt to compute . If that computation returns an output , then compute and return its value, if any.

Thus, for all , if halts, then , and if does not halt then does not halt; this is denoted . The function can be constructed from the partial computable function and the s-m-n theorem: for each , is the index of a program which computes the function .

To complete the proof, let be any total computable function, and construct as above. Let be an index of the composition , which is a total computable function. Then by the definition of . But, because is an index of , , and thus . By the transitivity of , this means . Hence for .

This proof is a construction of a partial recursive function which implements the Y combinator.

Fixed-point free functions

A function such that for all is called fixed point free. The fixed-point theorem shows that no computable function is fixed point free, but there are many non-computable fixed-point free functions. Arslanov's completeness criterion states that the only recursively enumerable Turing degree that computes a fixed point free function is 0´, the degree of the halting problem.[1]

Kleene's second recursion theorem

An informal interpretation of the second recursion theorem is that self-referential programs are acceptable.

The second recursion theorem. For any partial recursive function there is an index such that .

This can be used as follows. Suppose that we have a self-referential program, namely one that evaluates a computable function of two arguments where the first is supposed to be the index of that very program, and the second represents input. By the theorem, we have a program that does exactly that. Note that only has as input; it does not have to be supplied with its own index but satisfies the "self referential" equation by construction.

The theorem can be proved from Rogers' theorem by letting be a function such that (a construction described by the S-m-n theorem ). One can then verify that a fixed-point of this is an index as required.

The theorem is constructive in the sense that a fixed computable function maps an index for Q into the index p.

Comparison to Rogers' theorem

Kleene's second recursion theorem and Rogers' theorem can both be proved, rather simply, from each other (Jones, 1997: p. 229-230). However, a direct proof of Kleene's theorem (Kleene 1952: p. 352-353) does not make use of a universal program, which means that the theorem holds for certain subrecursive programming systems that do not have a universal program.

Application to elimination of recursion

Suppose that and are total computable functions that are used in a recursive definition for a function :

The second recursion theorem can be used to show that such equations define a computable function, where the notion of computability does not have to allow, a priori, for recursive definitions (for example, it may be defined by μ-recursion, or by Turing machines). This recursive definition can be converted into a computable function that assumes is an index to itself, to simulate recursion:

The recursion theorem establishes the existence of a computable function such that . Thus satisfies the given recursive definition.

Application to quines

A classic example using the second recursion theorem is the function . The corresponding index in this case yields a computable function that outputs its own index when applied to any value (Cutland 1980: p. 204). When expressed as computer programs, such indices are known as quines.

The following example in Lisp illustrates how the in the corollary can be effectively produced from the function . The function s11 in the code is the function of that name produced by the S-m-n theorem.

Q can be changed to any two-argument function.

(setq Q '(lambda (x y) x))
(setq s11 '(lambda (f x) (list 'lambda '(y) (list f x 'y))))
(setq n (list 'lambda '(x y) (list Q (list s11 'x 'x) 'y)))
(setq p (eval (list s11 n n)))

The results of the following expressions should be the same. p(nil)

(eval (list p nil))

Q(p, nil)

(eval (list Q p nil))

Reflexive programming

Reflexive, or reflective, programming refers to the usage of self-reference in programs. Jones (1997) presents a view of the second recursion theorem based on a reflexive language. It is shown that the reflexive language defined is not stronger than a language without reflection (because an interpreter for the reflexive language can be implemented without using reflection); then, it is shown that the recursion theorem is almost trivial in the reflexive language.

The first recursion theorem

The first recursion theorem is related to fixed points determined by enumeration operators, which are a computable analogue of inductive definitions. An enumeration operator is a set of pairs (A,n) where A is a (code for a) finite set of numbers and n is a single natural number. Often, n will be viewed as a code for an ordered pair of natural numbers, particularly when functions are defined via enumeration operators. Enumeration operators are of central importance in the study of enumeration reducibility.

Each enumeration operator Φ determines a function from sets of naturals to sets of naturals given by

A recursive operator is an enumeration operator that, when given the graph of a partial recursive function, always returns the graph of a partial recursive function.

A fixed point of an enumeration operator Φ is a set F such that Φ(F) = F. The first enumeration theorem shows that fixed points can be effectively obtained if the enumeration operator itself is computable.

First recursion theorem. The following statements hold.
  1. For any computable enumeration operator Φ there is a recursively enumerable set F such that Φ(F) = F and F is the smallest set with this property.
  2. For any recursive operator Ψ there is a partial computable function φ such that Ψ(φ) = φ and φ is the smallest partial computable function with this property.

Example

Like the second recursion theorem, the first recursion theorem can be used to obtain functions satisfying systems of recursion equations. To apply the first recursion theorem, the recursion equations must first be recast as a recursive operator.

Consider the recursion equations for the factorial function f:

The corresponding recursive operator Φ will have information that tells how to get to the next value of f from the previous value. However, the recursive operator will actually define the graph of f. First, Φ will contain the pair . This indicates that f(0) is unequivocally 1, and thus the pair (0,1) is in the graph of f.

Next, for each n and m, Φ will contain the pair . This indicates that, if f(n) is m, then f(n + 1) is (n + 1)m, so that the pair (n + 1, (n + 1)m) is in the graph of f. Unlike the base case f(0) = 1, the recursive operator requires some information about f(n) before it defines a value of f(n + 1).

The first recursion theorem (in particular, part 1) states that there is a set F such that Φ(F) = F. The set F will consist entirely of ordered pairs of natural numbers, and will be the graph of the factorial function f, as desired.

The restriction to recursion equations that can be recast as recursive operators ensures that the recursion equations actually define a least fixed point. For example, consider the set of recursion equations:

There is no function g satisfying these equations, because they imply g(2) = 1 and also imply g(2) = 0. Thus there is no fixed point g satisfying these recursion equations. It is possible to make an enumeration operator corresponding to these equations, but it will not be a recursive operator.

Proof sketch for the first recursion theorem

The proof of part 1 of the first recursion theorem is obtained by iterating the enumeration operator Φ beginning with the empty set. First, a sequence Fk is constructed, for . Let F0 be the empty set. Proceeding inductively, for each k, let Fk + 1 be . Finally, F is taken to be . The remainder of the proof consists of a verification that F is recursively enumerable and is the least fixed point of Φ. The sequence Fk used in this proof corresponds to the Kleene chain in the proof of the Kleene fixed-point theorem.

The second part of the first recursion theorem follows from the first part. The assumption that Φ is a recursive operator is used to show that the fixed point of Φ is the graph of a partial function. The key point is that if the fixed point F is not the graph of a function, then there is some k such that Fk is not the graph of a function.

Comparison to the second recursion theorem

Compared to the second recursion theorem, the first recursion theorem produces a stronger conclusion but only when narrower hypotheses are satisfied. Rogers [1967] uses the term weak recursion theorem for the first recursion theorem and strong recursion theorem for the second recursion theorem.

One difference between the first and second recursion theorems is that the fixed points obtained by the first recursion theorem are guaranteed to be least fixed points, while those obtained from the second recursion theorem may not be least fixed points.

A second difference is that the first recursion theorem only applies to systems of equations that can be recast as recursive operators. This restriction is similar to the restriction to continuous operators in the Kleene fixed-point theorem of order theory. The second recursion theorem can be applied to any total recursive function.

Generalized theorem by A.I. Maltsev

Anatoly Maltsev proved a generalized version of the recursion theorem for any set with a precomplete numbering. A Gödel numbering is a precomplete numbering on the set of computable functions so the generalized theorem yields the Kleene recursion theorem as a special case.

Given a precomplete numbering then for any partial computable function with two parameters there exists a total computable function with one parameter such that

See also

Notes

  1. Jockusch, C. G., Jr.; Lerman, M.; Soare, R. I.; Solovay, R. M. (1989), "Recursively enumerable sets modulo iterated jumps and extensions of Arslanov's completeness criterion", The Journal of Symbolic Logic, 54 (4): 1288–1323, doi:10.2307/2274816, MR 1026600.

References

External links

This article is issued from Wikipedia - version of the 11/15/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.