elementary recursive function
Informally, elementary recursive functions are functions that can be obtained from functions encountered in elementary schools: addition
, multiplication, subtraction
, and division, using basic operations
such as substitutions and finite summation and product
. Before stating the formal definition, the following notations are used:
ℱ=⋃{Fk∣k∈ℕ}, where for each k∈ℕ, Fk={f∣f:ℕk→ℕ}.
Definition. The set of elementary recursive functions, or elementary functions for short, is the smallest subset ℰℛ of ℱ where:
-
1.
(addition) add∈ℰℛ∩F2, given by add(m,n):=;
-
2.
(multiplication) , given by ;
-
3.
(difference
) , given by ;
-
4.
(quotient) , given by , which is the largest non-negative integer such that (by convention, );
-
5.
(projection) , where , given by ;
-
6.
is closed under composition: If and , then , where
-
7.
is closed under bounded sum: if , then , where
-
8.
is closed under bounded product: if , then , where
Examples.
-
•
The initial functions in the definition of primitive recursive functions
are elementary:
-
(a)
The zero function is .
-
(b)
The constant function
is .
-
(c)
The successor function can be obtained by substituting (by composition) the constant function and the projection function , into the addition function .
-
(a)
-
•
Multiplication in 2 above may be removed from the definition, since
-
•
Many other basic functions, such as the restricted subtraction, exponential function
, the -th prime function, are all elementary. One may replace the difference function in 3 above by the restricted subtraction without changing .
Remarks
-
•
Consider the set of primitive recursive functions. The functions in the first five groups above are all in . In addition, is closed under the operations in 6, 7, and 8 above, we see that , since , as defined, is the smallest such set.
-
•
Furthermore, . For example, the super-exponential function, given by , and , where , can be shown to be non-elementary.
-
•
In addition, it can be shown that is the set of primitive recursive functions that can be obtained from the zero function, the successor function, and the projection functions via composition, and no more than three applications of primitive recursion.
-
•
By taking the closure of with respect to unbounded minimization, one obtains , the set of all recursive functions (partial or total). In fact, by replacing bounded sum and bounded product with unbounded minimization, and the difference function with restricted subtraction, one obtains .
Title | elementary recursive function |
---|---|
Canonical name | ElementaryRecursiveFunction |
Date of creation | 2013-03-22 19:06:48 |
Last modified on | 2013-03-22 19:06:48 |
Owner | CWoo (3771) |
Last modified by | CWoo (3771) |
Numerical id | 9 |
Author | CWoo (3771) |
Entry type | Definition |
Classification | msc 03D20 |
Synonym | elementary |
Related topic | BoundedRecursion |
Defines | elementary recursive |