Primitive Recursive Proof in Davis, Sigal & Weyuker Textbook

  • Thread starter Thread starter gnome
  • Start date Start date
  • Tags Tags
    Primitive
AI Thread Summary
The discussion centers on the proof of the function f(x) = x + y in the textbook "Computability, Complexity and Languages" by Davis, Sigal, and Weyuker, which utilizes primitive recursive functions. The proof employs a specific recursive structure involving the functions u, s, and g, which are all primitive recursive, to establish that f is also primitive recursive. A simpler alternative formulation for f is proposed, using s(f(x,y)), but the original proof aligns with the textbook's defined format for recursion. The question arises whether this format is universally accepted for all proofs involving recursion or specific to the textbook's definition. It is clarified that while both formulations are primitive recursive, the textbook's approach is a standard definition of primitive recursion.
gnome
Messages
1,031
Reaction score
1
In the Davis, Sigal & Weyuker textbook "Computability, Complexity and Languages" their proof that f(x) = x + y goes like this:
\begin{equation*}\begin{split}f(x,0) &= u_1^1(x)\\f(x,y+1) &= g(y,f(x,y),x)\end{split}\end{equation*}
where g(x_1,x_2,x_3) = s(u_2^3(x_1,x_2,x_3)).

And (I'm paraphrasing now in the interest of brevity) these functions u, s and g are all primitive recursive so therefore f is too.

I'm wondering, would it be equally valid (and simpler) to say
\begin{equation*}\begin{split}f(x,0) &= u_1^1(x)\\f(x,y+1) &= s(f(x,y))\end{split}\end{equation*}
followed by the same explanation?

Apparently, the reason for the form of their proof is that they defined recursion to be one of these two "things":
Either:
\begin{equation*}\begin{split}h(0) &= k\\h(t+1) &= g(t,h(t))\end{split}\end{equation*}
or:
\begin{equation*}\begin{split}h(x_1,...,x_n,0) &= f(x_1,...,x_n),\\h(x_1,...,x_n,t+1) &= g(t,h(x_1,...,x_n,t),x_1,...,x_n)\end{split}\end{equation*}
and they had to put their proof into the same form as their definition of recursion.

So I guess my question boils down to, is that just their definition of recursion, or is it everybody's?

i.e. does every proof involving recursion have to be in exactly that format?
 
Physics news on Phys.org
That is the standard definition of primitive recursion.

Both of the examples are primitive recursive. The foot note on page 40 indicates that they will agree to call "primitive recursion", "recursion" simply as a convenience, until later.
 
Back
Top