User:IssaRice/Computability and logic/Rogers fixed point theorem using Sipser's notation

From Machinelearning

Sipser's textbook presents the recursion theorem, but not the fixed point theorem. Here is one way to state the fixed point theorem using Sipser's notation.

Theorem (Fixed point theorem). Let be a Turing machine which computes a function . Then there exists a Turing machine which computes a function , and a Turing machine which computes a function , such that and for all .

Remark. This is basically a "curried" version of the recursion theorem. Instead of , we have (with abuse of notation) .

The proof is pretty similar to the one in Sipser's book. We build in four parts, , where:

  • is
  • is the Turing machine that, on input :
    • computes
    • combines the result with to make a complete Turing machine
    • prints along with the description of this Turing machine and halts, i.e. outputs
  • is as given
  • is an "eval" Turing machine that, on input :
    • changes the tape contents to
    • runs


See also