In computational complexity theory, the complexity class ELEMENTARY of elementary recursive functions is the union of the classes

The name was coined by László Kalmár, in the context of recursive functions and undecidability; most problems in it are far from elementary. Some natural recursive problems lie outside ELEMENTARY, and are thus NONELEMENTARY. Most notably, there are primitive recursive problems that are not in ELEMENTARY. We know

LOWER-ELEMENTARY ⊊ EXPTIME ⊊ ELEMENTARY ⊊ PRR

Whereas ELEMENTARY contains bounded applications of exponentiation (for example, ), PR allows more general hyper operators (for example, tetration) which are not contained in ELEMENTARY.

Definition edit

The definitions of elementary recursive functions are the same as for primitive recursive functions, except that primitive recursion is replaced by bounded summation and bounded product. All functions work over the natural numbers. The basic functions, all of them elementary recursive, are:

  1. Zero function. Returns zero: f(x) = 0.
  2. Successor function: f(x) = x + 1. Often this is denoted by S, as in S(x). Via repeated application of a successor function, one can achieve addition.
  3. Projection functions: these are used for ignoring arguments. For example, f(a, b) = a is a projection function.
  4. Subtraction function: f(x, y) = xy if y < x, or 0 if yx. This function is used to define conditionals and iteration.

From these basic functions, we can build other elementary recursive functions.

  1. Composition: applying values from some elementary recursive function as an argument to another elementary recursive function. In f(x1, ..., xn) = h(g1(x1, ..., xn), ..., gm(x1, ..., xn)) is elementary recursive if h is elementary recursive and each gi is elementary recursive.
  2. Bounded summation:   is elementary recursive if g is elementary recursive.
  3. Bounded product:   is elementary recursive if g is elementary recursive.

Basis for ELEMENTARY edit

The class of elementary functions coincides with the closure with respect to composition of the projections and one of the following function sets:  ,  ,  , where   is the subtraction function defined above.[1][2]

Lower elementary recursive functions edit

Lower elementary recursive functions follow the definitions as above, except that bounded product is disallowed. That is, a lower elementary recursive function must be a zero, successor, or projection function, a composition of other lower elementary recursive functions, or the bounded sum of another lower elementary recursive function.

Lower elementary recursive functions are also known as Skolem elementary functions.[3][4]

Whereas elementary recursive functions have potentially more than exponential growth, the lower elementary recursive functions have polynomial growth.

The class of lower elementary functions has a description in terms of composition of simple functions analogous to that we have for elementary functions.[4][5] Namely, a polynomial-bounded function is lower elementary if and only if it can be expressed using a composition of the following functions: projections,  ,  ,  ,  ,  , one exponential function (  or  ) with the following restriction on the structure of formulas: the formula can have no more than two floors with respect to an exponent (for example,   has 1 floor,   has 2 floors,   has 3 floors). Here   is a bitwise AND of n and m.

Descriptive characterization edit

In descriptive complexity, ELEMENTARY is equal to the class HO of languages that can be described by a formula of higher-order logic.[6] This means that every language in the ELEMENTARY complexity class corresponds to as a higher-order formula that is true for, and only for, the elements on the language. More precisely,  , where ⋯ indicates a tower of i exponentiations and   is the class of queries that begin with existential quantifiers of ith order and then a formula of (i − 1)th order.

See also edit

Notes edit

  1. ^ Mazzanti, S (2002). "Plain Bases for Classes of Primitive Recursive Functions". Mathematical Logic Quarterly. 48: 93–104. doi:10.1002/1521-3870(200201)48:1<93::aid-malq93>3.0.co;2-8.
  2. ^ S. S. Marchenkov, "Superpositions of elementary arithmetic functions", Journal of Applied and Industrial Mathematics, September 2007, Volume 1, Issue 3, pp 351-360, doi:10.1134/S1990478907030106.
  3. ^ Th. Skolem, "Proof of some theorems on recursively enumerable sets", Notre Dame Journal of Formal Logic, 1962, Volume 3, Number 2, pp 65-74, doi:10.1305/ndjfl/1093957149.
  4. ^ a b S. A. Volkov, "On the class of Skolem elementary functions", Journal of Applied and Industrial Mathematics, 2010, Volume 4, Issue 4, pp 588-599, doi:10.1134/S1990478910040149.
  5. ^ Volkov, Sergey (2016). "Finite Bases with Respect to the Superposition in Classes of Elementary Recursive Functions [dissertation]". arXiv:1611.04843 [cs.CC].
  6. ^ Lauri Hella and José María Turull-Torres (2006), "Computing queries with higher-order logics", Theoretical Computer Science, 355 (2): 197–214, doi:10.1016/j.tcs.2006.01.009, ISSN 0304-3975

References edit