General Recursive Function: Difference between revisions

From BusyBeaverWiki
Jump to navigation Jump to search
JLM (talk | contribs)
Regularize formatting.
JLM (talk | contribs)
Minimization: Clearer explanation of 'M' operator.
Line 36: Line 36:
<math>M^k(f)(x_1, ..., x_k) \triangleq \min \{i \in \N: f(i, x_1, ..., x_k) = 0\}</math>
<math>M^k(f)(x_1, ..., x_k) \triangleq \min \{i \in \N: f(i, x_1, ..., x_k) = 0\}</math>


In computational language, when ''M(f)'' is evaluated it can be considered to calculate <math>f(0, x_1, ..., x_k)</math>, then <math>f(1, x_1, ..., x_k)</math>, then <math>f(2, x_1, ..., x_k)</math>, etc. until one of the calls to <math>f</math> returns 0.  It returns the value for the first argument which first gave a result of 0.  If no first argument causes <math>f</math> to return 0, <math>M(f)</math> doesn't return.
In computational language, when ''M(f)'' is evaluated it can be considered to calculate <math>f(i, x_1, ..., x_k)</math> with <math>i=0</math>, then <math>i=1</math>, then <math>i=2</math> etc. until one of the calls to <math>f</math> returns 0.  It returns the value of <math>i</math> which first gave a result of 0.  If no first argument causes <math>f</math> to return 0, <math>M(f)</math> doesn't return. (This is the only way for a GRF to not halt.)


== Macros ==
== Macros ==

Revision as of 01:18, 9 April 2026

General recursive functions (GRFs), also called µ-recursive functions or partial recursive functions, are the collection of partial functions k that are computable. This definition is equivalent using any Turing complete system of computation. See Wikipedia:general recursive function for background.

Historically it was defined as the smallest class of partial functions k that is closed under composition, recursion, and minimization, and includes zero, successor, and all projections (see formal definitions below). In the rest of this article, this is the formulation that we focus on exclusively. In this way, it can be considered to be a Turing complete model of computation. In fact, it is one of the oldest Turing complete models, first formalized by Kurt Gödel and Jacques Herbrand in 1933, 3 years before λ-calculus and Turing machines.

BBµ(n) is a Busy Beaver function for GRFs:BBμ(n)=max{f()|fGRF0,|f|=n}

where fGRFk means that f:k is a k-ary GRF and |f| is the "structural size" of f (defined below). In other words, it is the largest number computable via a 0-ary function (a constant) with a limited "program" size. It is more akin to the traditional Sigma score for a Turing machine rather than the Step function in the sense that it maximizes over the produced value, not the number of steps needed to reach that value.

Definition

Structure

Define GRFk inductively based on the following construction rules, start with Atoms and combine them using Combinators.

Atoms
  • Zero: k,ZkGRFk is the constant 0 function Zk(x1,,xk)=0
  • Successor: SGRF1 is the successor function S(x)=x+1
  • Projection: 1ik,PikGRFk is a projection function Pik(x1,xk)=xi
Combinators
  • Composition: k,m,hGRFm,g1,gmGRFk,C(h,g1,gm)GRFk is the composition or substitution of the gs into h: C(h,g1,gm)(x1,xk)=h(g1(x1,xk),gm(x1,xk))
  • Primitive Recursion: k,gGRFk,hGRFk+2,R(g,h)GRFk+1 is primitive recursion using g as the base case and h as the inductive step.
  • Minimization / Unlimited Search: k,fGRFk+1,M(f)GRFk is the µ-operator which allows unlimited search.

Primitive Recursion

R models a typical iterative function definition over ℕ.

Base case: Rk(g,h)(0,x2,x3,...,xk)=g(x2,x3,...,xk)

Iterative case (for x1>0): Rk(g,h)(x1,x2,...,xk)=h(x11,v,x2,x3,...,xk) where v=R(g,h)(x11,x2,x3,...,xk).

R can be recursively evaluated following its definition directly. Or it can be iterated over its first argument, starting with 0 (and thus a call to g), then 1, 2, 3, etc. until x1 is reached, each time calling h with the prior iteration count for its first argument and the result of the prior call for its second.

Minimization

Mk(f)(x1,...,xk)min{i:f(i,x1,...,xk)=0}

In computational language, when M(f) is evaluated it can be considered to calculate f(i,x1,...,xk) with i=0, then i=1, then i=2 etc. until one of the calls to f returns 0. It returns the value of i which first gave a result of 0. If no first argument causes f to return 0, M(f) doesn't return. (This is the only way for a GRF to not halt.)

Macros

In order to improve readability we define the following macros. For all fGRF1

Macro arity Definition Size Function
Plus constant Plus[n] 1 Plus[1]:=SPlus[n+1]:=C(S,Plus[n]) 2n1 λx.x+n
Constant Kk[n] k Kk[0]:=ZkKk[n]:=C(Plus[n],Zk) 2n+1 λx1xk.n
Iteration Rep[f,n] 1 Rep[f,n]:=R(K0[n],C(f,P22)) |f|+2n+4 λx.fx(n)
Ackermann iteration Ack[n,f] 1 Ack[0,f]:=fAck[n+1,f]:=Rep[Ack[n,f],1] 6n+|f|
Knuth base 2 up-arrows Knuth2[n] 1 Knuth2[0]:=Rep[Plus[2],0]Knuth2[n+1]:=Rep[Knuth2[n],1] 6n+7 λx.2nx
Polygonal Poly[n] 1 Poly[n]:=R(Z0,R(S,C(Plus[n],P23))) 2n+5 λx.n2x(x1)+x
Tri 1 Tri:=Poly[1] 7 λx.x(x+1)2
Square 1 Square:=Poly[2] 9 λx.x2

Champions

n BBµ(n) Champion Champion Found Holdouts Proven
1 = 0 Z0 Shawn Ligocki 8 Dec 2025 By hand
2 = 0 M(Z1),M(P11),C(Z0) Shawn Ligocki 8 Dec 2025 By hand
3 = 1 K0[1] Shawn Ligocki 8 Dec 2025 By hand
4 = 1 C0(K0[1]) Jacob Mandelson 3 Apr 2026
5 = 2 K0[2] Jacob Mandelson 3 Apr 2026
6 = 2 C0(K0[2]) Jacob Mandelson 3 Apr 2026
7 = 3 K0[3] Jacob Mandelson 3 Apr 2026
2k+1 ≥ k K0[k]
15 ≥ 7 K0[7]
17 ≥ 10 C(Tri,K0[4]) Shawn Ligocki 9 Dec 2025
19 ≥ 16 C(Square,K0[4]) Shawn Ligocki 9 Dec 2025
21 ≥ 25 C(Square,K0[5]) Shawn Ligocki 9 Dec 2025
23 ≥ 36 C(Square,K0[6]) Shawn Ligocki 9 Dec 2025
25 ≥ 256 C(Rep[Square,2],K0[3]) Shawn Ligocki 9 Dec 2025
27 ≥ 359,026,206 C(Rep[Rep[Tri,2],0],K0[3]) Shawn Ligocki 9 Dec 2025
29 >103.9 C(Rep[Rep[Tri,2],0],K0[4]) Shawn Ligocki 9 Dec 2025
31 >105.9 C(Rep[Rep[Tri,2],0],K0[5]) Shawn Ligocki 9 Dec 2025
33 >107.9 C(Rep[Rep[Tri,2],0],K0[6]) Shawn Ligocki 9 Dec 2025
35 24 C(Knuth2[3],K0[4]) Shawn Ligocki 8 Dec 2025
37 25 C(Knuth2[3],K0[5]) Shawn Ligocki 8 Dec 2025
39 26 C(Knuth2[3],K0[6]) Shawn Ligocki 8 Dec 2025
6k+17 2k4 C(Knuth2[k],K0[4]) Shawn Ligocki 8 Dec 2025
6k+19 2k5 C(Knuth2[k],K0[5]) Shawn Ligocki 8 Dec 2025
6k+21 2k6 C(Knuth2[k],K0[6]) Shawn Ligocki 8 Dec 2025