Suvarna Garge (Editor)

Smn theorem

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


In computability theory the smn theorem, (also called the translation lemma, parameter theorem, or parameterization theorem) is a basic result about programming languages (and, more generally, Gödel numberings of the computable functions) (Soare 1987, Rogers 1967). It was first proved by Stephen Cole Kleene (Kleene 1943). The name "smn" comes from the occurrence of a s with subscript n and superscript m in the original formulation of the theorem (see below).

Contents

In practical terms, the theorem says that for a given programming language and positive integers m and n, there exists a particular algorithm that accepts as input the source code of a program with m + n free variables, together with m values. This algorithm generates source code that effectively substitutes the values for the first m free variables, leaving the rest free.

Details

The basic form of the theorem applies to functions of two arguments (Nies 2009, p. 6). Given a Gödel numbering φ of recursive functions, there is a primitive recursive function s of two arguments with the following property: for every Gödel number p of a partial computable function f with two arguments, the expressions φ s ( p , x ) ( y ) and f ( x , y ) are defined for the same combinations of natural numbers x and y, and their values are equal for any such combination. In other words, the following extensional equality of functions holds for every x:

φ s ( p , x ) λ y . φ p ( x , y ) .

More generally, for any mn > 0, there exists a primitive recursive function s n m of m + 1 arguments that behaves as follows: for every Gödel number p of a partial computable function with m + n arguments, and all values of x1,…,xm:

φ s n m ( p , x 1 , , x m ) λ y 1 , , y n . φ p ( x 1 , , x m , y 1 , , y n ) .

The function s described above can be taken to be s 1 1 .

Example

The following Lisp code implements s11 for Lisp.

For example, (s11 '(lambda (x y) (+ x y)) 3) evaluates to (lambda (g42) ((lambda (x y) (+ x y)) 3 g42)).

References

Smn theorem Wikipedia