3 Turing Machines

Deterministic TMs are seen in the Computability Theory Cheat Sheet.

3.1 K-tapes Turing Machines

Let k1 be the number of tapes. A k-tape TM is a quadruple (Q,Σ,δ,q0). Special symbols #,,Σ, while L,R,Σ. Since we are only considering decision problems, YES,NOQ are the halting states. The transition function differs but is subject to the same restrictions as a classical TM.

δ:Q×ΣkQ{YES,NO}×(Σ×{L,R,})k

3.2 IO Turing Machines

Are useful to study space complexity. Any k-tape TM M=(Q,Σ,δ,q0) is of IO type δ is subject to the following constraints. Consider δ(q1,σ1,\hdots,σk)=(q,(σ1,D1),\hdots,(σk,Dk))

σ1=σ1

First tape is read-only

Dk=R or (Dk=)σk=σk

Last tape is write-only

σ1=#D1{L,}

Input tape is right-bounded

3.3 Nondeterministic Turing Machines

A nondeterministic TM is a quadruple N=(Q,Σ,Δ,q0) where Q,Σ,q0 are the same as in other turing machines. They can be of IO and k-tape type. The difference rilies in the fact that

Δ(Q×Σ)×((Q{YES,NO})×Σ×{L,R,})

Is not a transition function but a transition relation. The same syntax as for other TMs is used for nondet. TMs configurations and computations. A nondeterministic TM N decides I if and only if xI there exists at least a computation such that (q0,,x,,\hdots,)N(YES,w1,\hdots,wk)

Note

A single computation on a nondeterministic TMs is not a tree. Many computations together, can be arranged in a tree.

The degree d of nondeterminism of a NDTM N=(Q,Σ,Δ,q0) can now be defined as d=max{deg(q,σ)qQ,σΣ}, where deg(q,σ)=#{(q,σ,D)((q,σ),(q,σ,D))Δ}