General Recursive Function

In mathematical logic and computer science, a general recursive function, partial recursive function, or μ-recursive function is a partial function from natural numbers to natural numbers that is computable in an intuitive sense – as well as in a formal one.

If the function is total, it is also called a total recursive function (sometimes shortened to recursive function). In computability theory, it is shown that the μ-recursive functions are precisely the functions that can be computed by Turing machines (this is one of the theorems that supports the Church–Turing thesis). The μ-recursive functions are closely related to primitive recursive functions, and their inductive definition (below) builds upon that of the primitive recursive functions. However, not every total recursive function is a primitive recursive function—the most famous example is the Ackermann function.

Other equivalent classes of functions are the functions of lambda calculus and the functions that can be computed by Markov algorithms.

The subset of all total recursive functions with values in {0,1} is known in computational complexity theory as the complexity class R.

Definition

The μ-recursive functions (or general recursive functions) are partial functions that take finite tuples of natural numbers and return a single natural number. They are the smallest class of partial functions that includes the initial functions and is closed under composition, primitive recursion, and the minimization operator μ.

The smallest class of functions including the initial functions and closed under composition and primitive recursion (i.e. without minimisation) is the class of primitive recursive functions. While all primitive recursive functions are total, this is not true of partial recursive functions; for example, the minimisation of the successor function is undefined. The primitive recursive functions are a subset of the total recursive functions, which are a subset of the partial recursive functions. For example, the Ackermann function can be proven to be total recursive, and to be non-primitive.

Primitive or "basic" functions:

  1. Constant functions Ck
    n
    : For each natural number n and every k
        General Recursive Function 
      Alternative definitions use instead a zero function as a primitive function that always returns zero, and build the constant functions from the zero function, the successor function and the composition operator.
  2. Successor function S:
        General Recursive Function 
  3. Projection function General Recursive Function  (also called the Identity function): For all natural numbers General Recursive Function  such that General Recursive Function :
        General Recursive Function 

Operators (the domain of a function defined by an operator is the set of the values of the arguments such that every function application that must be done during the computation provides a well-defined result):

  1. Composition operator General Recursive Function  (also called the substitution operator): Given an m-ary function General Recursive Function  and m k-ary functions General Recursive Function :
        General Recursive Function 
      This means that General Recursive Function  is defined only if General Recursive Function  and General Recursive Function  are all defined.
  2. Primitive recursion operator ρ: Given the k-ary function General Recursive Function  and k+2 -ary function General Recursive Function :
        General Recursive Function 
      This means that General Recursive Function  is defined only if General Recursive Function  and General Recursive Function  are defined for all General Recursive Function 
  3. Minimization operator μ: Given a (k+1)-ary function General Recursive Function , the k-ary function General Recursive Function  is defined by:
        General Recursive Function 

Intuitively, minimisation seeks—beginning the search from 0 and proceeding upwards—the smallest argument that causes the function to return zero; if there is no such argument, or if one encounters an argument for which f is not defined, then the search never terminates, and General Recursive Function  is not defined for the argument General Recursive Function 

While some textbooks use the μ-operator as defined here, others like demand that the μ-operator is applied to total functions f only. Although this restricts the μ-operator as compared to the definition given here, the class of μ-recursive functions remains the same, which follows from Kleene's Normal Form Theorem (see below). The only difference is, that it becomes undecidable whether a specific function definition defines a μ-recursive function, as it is undecidable whether a computable (i.e. μ-recursive) function is total.

The strong equality operator General Recursive Function  can be used to compare partial μ-recursive functions. This is defined for all partial functions f and g so that

    General Recursive Function 

holds if and only if for any choice of arguments either both functions are defined and their values are equal or both functions are undefined.

Examples

Examples not involving the minimization operator can be found at Primitive recursive function#Examples.

The following examples are intended just to demonstrate the use of the minimization operator; they could also be defined without it, albeit in a more complicated way, since they are all primitive recursive.

  • The integer square root of x can be defined as the least z such that General Recursive Function . Using the minimization operator, a general recursive definition is General Recursive Function , where Not, Gt, and Mul are logical negation, greater-than, and multiplication, respectively. In fact, General Recursive Function  is 0 if, and only if, General Recursive Function  holds. Hence General Recursive Function  is the least z such that General Recursive Function  holds. The negation junctor Not is needed since Gt encodes truth by 1, while μ seeks for 0.

The following examples define general recursive functions that are not primitive recursive; hence they cannot avoid using the minimization operator.

Total recursive function

A general recursive function is called total recursive function if it is defined for every input, or, equivalently, if it can be computed by a total Turing machine. There is no way to computably tell if a given general recursive function is total - see Halting problem.

Equivalence with other models of computability

In the equivalence of models of computability, a parallel is drawn between Turing machines that do not terminate for certain inputs and an undefined result for that input in the corresponding partial recursive function. The unbounded search operator is not definable by the rules of primitive recursion as those do not provide a mechanism for "infinite loops" (undefined values).

Normal form theorem

A normal form theorem due to Kleene says that for each k there are primitive recursive functions General Recursive Function  and General Recursive Function  such that for any μ-recursive function General Recursive Function  with k free variables there is an e such that

    General Recursive Function .

The number e is called an index or Gödel number for the function f.: 52–53  A consequence of this result is that any μ-recursive function can be defined using a single instance of the μ operator applied to a (total) primitive recursive function.

Minsky observes the General Recursive Function  defined above is in essence the μ-recursive equivalent of the universal Turing machine:

To construct U is to write down the definition of a general-recursive function U(n, x) that correctly interprets the number n and computes the appropriate function of x. to construct U directly would involve essentially the same amount of effort, and essentially the same ideas, as we have invested in constructing the universal Turing machine

Symbolism

A number of different symbolisms are used in the literature. An advantage to using the symbolism is a derivation of a function by "nesting" of the operators one inside the other is easier to write in a compact form. In the following the string of parameters x1, ..., xn is abbreviated as x:

  • Constant function: Kleene uses " Cn
    q
    (x) = q " and Boolos-Burgess-Jeffrey (2002) (B-B-J) use the abbreviation " constn( x) = n ":
      e.g. C7
      13
      ( r, s, t, u, v, w, x ) = 13
      e.g. const13 ( r, s, t, u, v, w, x ) = 13
  • Successor function: Kleene uses x' and S for "Successor". As "successor" is considered to be primitive, most texts use the apostrophe as follows:
      S(a) = a +1 =def a', where 1 =def 0', 2 =def 0 ' ', etc.
  • Identity function: Kleene (1952) uses " Un
    i
    " to indicate the identity function over the variables xi; B-B-J use the identity function idn
    i
    over the variables x1 to xn:
    Un
    i
    ( x ) = idn
    i
    ( x ) = xi
    e.g. U7
    3
    = id7
    3
    ( r, s, t, u, v, w, x ) = t
  • Composition (Substitution) operator: Kleene uses a bold-face Sm
    n
    (not to be confused with his S for "successor" ! ). The superscript "m" refers to the mth of function "fm", whereas the subscript "n" refers to the nth variable "xn":
    If we are given h( x )= g( f1(x), ... , fm(x) )
      h(x) = Sn
      m
      (g, f1, ... , fm )
    In a similar manner, but without the sub- and superscripts, B-B-J write:
      h(x')= Cn[g, f1 ,..., fm](x)
  • Primitive Recursion: Kleene uses the symbol " Rn(base step, induction step) " where n indicates the number of variables, B-B-J use " Pr(base step, induction step)(x)". Given:
    • base step: h( 0, x )= f( x ), and
    • induction step: h( y+1, x ) = g( y, h(y, x),x )
    Example: primitive recursion definition of a + b:
      • base step: f( 0, a ) = a = U1
        1
        (a)
      • induction step: f( b' , a ) = ( f ( b, a ) )' = g( b, f( b, a), a ) = g( b, c, a ) = c' = S(U3
        2
        ( b, c, a ))
        R2 { U1
        1
        (a), S [ (U3
        2
        ( b, c, a ) ] }
        Pr{ U1
        1
        (a), S[ (U3
        2
        ( b, c, a ) ] }

Example: Kleene gives an example of how to perform the recursive derivation of f(b, a) = b + a (notice reversal of variables a and b). He starts with 3 initial functions

    1. S(a) = a'
    2. U1
      1
      (a) = a
    3. U3
      2
      ( b, c, a ) = c
    4. g(b, c, a) = S(U3
      2
      ( b, c, a )) = c'
    5. base step: h( 0, a ) = U1
      1
      (a)
      induction step: h( b', a ) = g( b, h( b, a ), a )

He arrives at:

      a+b = R2[ U1
      1
      , S3
      1
      (S, U3
      2
      ) ]

Examples

See also

References

    On pages 210-215 Minsky shows how to create the μ-operator using the register machine model, thus demonstrating its equivalence to the general recursive functions.

Tags:

General Recursive Function DefinitionGeneral Recursive Function ExamplesGeneral Recursive Function Total recursive functionGeneral Recursive Function Equivalence with other models of computabilityGeneral Recursive Function Normal form theoremGeneral Recursive Function SymbolismGeneral Recursive Function ExamplesGeneral Recursive FunctionAckermann functionChurch–Turing thesisComputability theory (computation)Computable functionComputer scienceMathematical logicNatural numberPartial functionPrimitive recursive functionTuring machine

🔥 Trending searches on Wiki English:

César Luis MenottiHeeramandiDanica PatrickTulsi GabbardOliver ReedAl Jazeera EnglishBruce SpringsteenBad Luck FaleHenry VIIIAna de ArmasJamal MurrayRobin WilliamsDamn (Kendrick Lamar album)Hayden ChristensenAnthony Edwards (basketball)Coral CastleEdward Smith (sea captain)Bison DeleMichael JacksonJudy GarlandLiam NeesonAdam SandlerList of Toronto Maple Leafs seasonsRachel McAdamsIsrael–Hamas warJerry SeinfeldBob MarleyTheo JamesAavesham (2024 film)Caitlin ClarkJames VI and IBayer 04 LeverkusenLove Lies Bleeding (2024 film)TawaifDrake–Kendrick Lamar feudJohn CenaKirsten DunstList of English football championsWarren BuffettTupac ShakurMillie Bobby BrownKnuckles (TV series)BetikaAmanda BynesLok SabhaAlexander the GreatTo Pimp a ButterflyLeonardo DiCaprioLil WayneHelldiversAaron MotenIndian National CongressJeremy SwaymanOscar PiastriMika ZibanejadMelissa Joan HartCarlo AncelottiTitanic2024 Miami Grand PrixDamaged (film)Mary & GeorgeAmerican Civil WarBernard HillCatBangladeshRahul GandhiKarolina KowalkiewiczNoni MaduekeYandex.ZenCrew (film)XXXTentacionJujutsu KaisenGeneration X2024 ICC Men's T20 World CupJak JonesBoston BruinsMarilyn Monroe🡆 More