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 an "eval" Turing machine that, on input
:
- changes the tape contents to

- runs
, and stores the result as 
- changes the tape contents to

- runs

Given input
, what does
do? First
runs, and prints
after the input. After
runs, the tape contains
. Next,
runs.
computes
and combines this with
. Thus, after
finishes, the tape contains
. Finally
runs. It first runs
with input
, and stores
. Then it runs
on
, which results in
being left on the tape at the end. Since this is the final output of
given the input
, we have
.
See also