2 Turing Machine

A Turing Machine M is (Q,Σ,δ,q0)

Q(qi),hQ

Set of states, h halting state

Σ(σ,σ,\hdots)

Set of symbols

q0Q

Initial state

δ(Q×Σ)×(Q{h}×Σ×{L,R,})

is the transition function

if (q,,q,σ,D)δ

then σ=,D=R

Σ is the free monoid generated from Σ. "" is the associative string concatenation operator. ϵ is the empty string and identity element.

2.1 Configuration

A configuration C of a TM M is a quadruple: (q,u,σ,v)(Q{h})×Σ×Σ×ΣF) where ΣF=Σ(Σ{#}){ϵ}.

σ is the currently selected symbol under the head of the machine. Short notation is (q,uσv) or (q,w) when position is not needed.

2.2 Computations

A computation is a finite succession of computation steps

(q,w)(q,w)

Computation step

(q0,w)(q,w)

Reflexive and transitive closure of comp. steps.

(q0,w)Mn(q,w)

Machine M computes w in n steps.

,

Converges and diverges

2.3 T(uring)-Computability

Let Σ,Σ0,Σ1 be alphabets, let #,Σ0Σ1 and Σ0Σ1Σ.

Let f be a function f:Σ0Σ1.

f is turing computable by a machine M wΣ0 :f(w)=z(q0,w)M(h,z#)

sectionProblems and Functions

2.4 Poly reduction

L1PL2 Then exsit fO(n)|f(w)|=nk for some k

2.5 Total Function

f:AB, subset of A×B is total

aA bB :(a,b)f

f is defined everywhere

(a,b),(a,c)fb=c

uniqueness

2.6 Partial Function

f:AB, subset of A×B is a partial function

(a,b),(a,c)fb=c

uniqueness

at least a bB : f(a)=b

not required to be defined everywhere

Theorem

Computable functions are #(N). Total computable functions are #(N). There exists functions that are not computable.

Proof

Computable functions can be given a Gödel numbering. Therefore there exists a 1-1 mapping with natural numbers. All the possible total functions {f:NN} are 2#(N).

Theorem

Padding Lemma: every computable function φi has #(N) indexes. i.Ai infinite set of indexes such that yAi.φy=φi

Proof

If a program Pj in WHILE computes φi, one can build #(N) other programs that compute the same thing, semantically equal to φi by just adding a skip command at the end of the program. The new program’s index will change because an effective numbering depends only on the syntactic description of the program.

Theorem

The class of Primitive Recursive functions (and extensions) does not contain all the effectively computable functions:

Proof

reductio ad absurdum

1: Encode and enumerate p.r. functions

f0,\hdots,fn. There are N

2: Define diagonal func. g(x)=fx(x)+1

Intuitively computable

3: n.g(n)fn(n)n.gfn

g doesn’t appear in list

Implies there is no formalism for expressing only and all total functions.

Recursion Axiom

Let h be a p.r. func. in k+1 variables, g be a p.r. func in k1 variables. The function f in k variables defined as follow is then p.r.

f={f(0,x2,\hdots,xk)=g(x2,\hdots,xk)final stepf(x1+1,\hdots,xk)=h(x1,f(x1,\hdots,xk),x2,\hdots,xk)iteration

This represents a FOR loop. x1, the first variable of f is the decrementing counter. g is the final step. h represents loop steps. This is guaranteed to terminate. One can define basic maths primitives with p.r. functions.

Theorem

Enumeration: z.i,x. φz(i,x)=φi(x)

Proof

Guarantees that a formalism that expresses all computable function has an universal algorithm. Therefore there exists an Universal Turing Machine. φz(i,x)=U(μy.T(i,x,y))=φi(x)