7 Theorems on Complexity of Turing Machines

Theorem

Reduction of tapes Let M be a k-tape TM, deciding I in deterministic time f, then a 1 tape TM M that decides I in time \O(f2)

Proof

(Only a draft): Build a 1 tape TM M by introducing two symbols and to denote the start and end of the k-th tape. Introduce #Σ new symbols σi to remember each tape’s head location. To generate the initial configuration (q,x()k), 2k+#Σ states and \O(\absk) steps are needed. To simulate a move of M, M iterates the input datum from left to right, and back, 2 times: find the marked σi symbols, the second time write the new symbols. If a tape has to be extended, the parens have to be moved and a cascade happens. This takes \O(f(\absx)) time, for each move of M. Since M takes \O(f(\absx)) time to compute an answer, M will take \O(f(\absx)2)

Corollary

Parallel machines are polinomially faster than sequential machines.


Theorem. Linear speedup If ITIME(f), then ϵR+. ITIME(ϵ×f(n)+n+2). Proof. (Draft): Build M from M solving I, compacting m symbols of M into 1 of M, in function of ϵ. The states of M will be triples [q,σi1,\hdots,σim,k] meaning the TM is in state q and has cursor on k-th symbol of σi1,\hdots,σim. M then needs 6 steps to simulate m steps of M. Therefore, M will take \absx+2+6×f(\absx)m. Then m=6ϵ.

Same principle can apply to SPACE with linear space compression. If ISPACE(f(n)), then ϵR+. ISPACE(ϵ×f(n)+2)

Theorem

For each k-tape TM M that decides I in deterministic time f there exists an IO TM M with k+2 tapes that computes I in time c×f for some constant c.

Proof

M copies the first M tape to the second tape, in \absx+1 steps. Then, M operates identically to M. If and when M halts, M copies the result to the tape k+2, in at most f(\absx) steps. M computation was 2f(\absx)+\absx+1 steps long.

Theorem

Exponential loss in determinization, or bruteforce If INTIME(f(n)) and is computed by k-tape N, it can also be computed by a deterministic TM M with k+1 tapes in time \O(cf(n)) with an exponential loss of performance. In short, NTIME(f(n))TIME(cf(n))

Proof

Let d be the degree of nondeterminism of N. qQ,σΣ sort Δ(q,σ) lexicographically. Every computation of length t carried by N is a sequence of choices that can be seen as a sequence of natural numbers (c1,\hdots,ct) with ci[0..d1]. The det. TM M considers these successions in an increasing order, visiting the tree of nondeterministic computations, one at a time. Therefore M(x) N(x), also, all the possible simulations can be \O(df(n)+1).