recursive function
Intuitively, a recursive function is a positive integer valued function of one or more positive integer arguments which may be computed by a definite algorithm
.
Recursive functions may be defined more rigorously as the smallest class of partial functions from ℤn+→ℤ+ satisfying the following six criteria:
-
1.
The constant function c:ℤ+→ℤ+ defined by c(x)=1 for all x∈ℤ+ is a recursive function.
-
2.
The addition
function +:ℤ2+→ℤ+ and the multiplication function ×:ℤ2+→ℤ+ are recursive function.
-
3.
The projection functions Inm:ℤn+→ℤ+ with 1≤m≤n defined as Inm(x1,…,xn)=xm are recursive functions.
-
4.
(Closure under composition
) If f:ℤn+→ℤ+ is a recursive function and gi:ℤm+→ℤ+ with i=1,…n are recursive functions, then h:ℤn+→ℤ+, defined by h(x1,…,xn)=f(g1(x1,…,xm),…,gn(x1,…,xm)) is a recursive function.
-
5.
(Closure under primitive recursion) If f:ℤn+→ℤ+ and g:ℤn+2+→ℤ+ are recursive function, then h:ℤn+1+→ℤ+, defined by the recursion
h(n+1,x1,…,xk)=g(h(n,x1,…,xk),n,x1,…,xk) with the initial condition
h(0,x1,…,xk)=f(x1,…,xk) is a recursive function.
-
6.
(Closure under minimization) If f:ℤn+1+→ℤ+ is a recursive function then g:ℤn+→ℤ+ is a recursive function, where
-
–
g(x1,…,xn) is defined to be y, if there exists a y∈ℤ+ such that
-
i.
f(0,x1,…,xn),f(1,x1,…,xn),…,f(y,x1,…,xn) are all defined,
-
ii.
f(z,x1,…,xn)≠0 when 1≤z<y, and
-
iii.
f(y,x1,…,xn)=0.
-
i.
-
–
g(x1,…,xn) is undefined otherwise.
-
–
The operation whereby h was constructed from f and g in criterion 5 is known as primitive recursion. The operation described in criterion 6 is known as minimization. That is to say, for any given function f:ℤn+1+→ℤ+, the partial function g:ℤn+→ℤ+ constructed as in criterion 6 is known as the minimization of f and is denoted by g=μf.
The smallest set of functions satisfying criteria 1-5, but not criterion 6, is known as the set of primitive recursive functions. Therefore, the set ℛ of all recursive function is the closure of the set 𝒫ℛ of primitive recursive function with respect to minimization. It can be shown that ℛ is exactly the set of Turing-computable functions. In terms of programming languages, a function is recursive iff it can be computed by a program involving the DO WHILE loops (minimization).
With some work, it can be shown that the class of recursive functions can be characterized by considerably weaker sets of criteria than those given above. See the entry “alternative characterizations of recursive functions (http://planetmath.org/AlternativeCharacterizationsOfRecursiveFunctions)” for several such characterizations.
Title | recursive function |
Canonical name | RecursiveFunction |
Date of creation | 2013-03-22 14:34:35 |
Last modified on | 2013-03-22 14:34:35 |
Owner | rspuzio (6075) |
Last modified by | rspuzio (6075) |
Numerical id | 27 |
Author | rspuzio (6075) |
Entry type | Definition |
Classification | msc 03D20 |
Synonym | unbounded minimization |
Related topic | PrimitiveRecursive |
Related topic | RecursiveFunctionIsURMComputable |
Related topic | BoundedMinimization |
Defines | primitive recursion |
Defines | minimization |