Turing Machines
Turing Machines
Recursive Languages
Context-Free Languages
Regular Languages
1
• Another Part of the Hierarchy:
Recursive Languages
Context-Sensitive Languages
Context-Free Languages - ε
Regular Languages - ε
2
• Recursively enumerable languages are also known as type 0 languages.
3
• TMs model the computing capability of a general purpose computer, which
informally can be described as:
– Effective procedure
• Finitely describable
• Well defined, discrete, “mechanical” steps
• Always terminates
– Computable function
• A function computable by an effective procedure
Finite
Control
• Two-way, infinite tape, broken into cells, each containing one symbol.
• Two-way, read/write tape head.
• An input string is placed on the tape, padded to the left and right infinitely with
blanks, read/write head is positioned at the left end of input string.
• Finite control, i.e., a program, containing the position of the read head, current
symbol being scanned, and the current state.
• In one move, depending on the current state and the current symbol being
scanned, the TM 1) changes state, 2) prints a symbol over the cell being
scanned, and 3) moves its’ tape head one cell left or right.
• Many modifications possible, but Church-Turing declares equivalence of all. 5
Formal Definition of a DTM
• A DTM is a seven-tuple:
M = (Q, Σ, Γ, δ, q0, B, F)
Q x Γ –> Q x Γ x {L,R}
Intuitively, δ(q,s) specifies the next state, symbol to be written, and the direction of tape
head movement by M after reading symbol s while in state q. 6
• Example #1: {w | w is in {0,1}* and w ends with a 0}
0
00
10
10110
Not ε
0 1 B
->q0 (q0, 0, R) (q0, 1, R) (q1, B, L)
q1 (q2, 0, R) - -
q2* - - -
– q0 is the start state and the “scan right” state, until hits B
– q1 is the verify 0 state
– q2 is the final state 7
• Example #2: {0n1n | n ≥ 1}
0 1 X Y B
->q0 (q1, X, R) - - (q3, Y, R)0’s finished -
q1 (q1, 0, R)ignore1 (q2, Y, L) - (q1, Y, R) ignore2 - (more 0’s)
q2 (q2, 0, L) ignore2 - (q0, X, R) (q2, Y, L) ignore1 -
q3 - - (more 1’s) - (q3, Y, R) ignore (q4, B, R)
q 4* - - - - -
0 1 X Y B
q0 (q1, X, R) - - (q3, Y, R) -
q1 (q1, 0, R) (q2, Y, L) - (q1, Y, R) -
q2 (q2, 0, L) - (q0, X, R) (q2, Y, L) -
q3 - - - (q3, Y, R) (q4, B, R)
q4 - - - - -
Logic: cross 0’s with X’s, scan right to look for corresponding 1, on finding it cross it with Y, and scan
left to find next leftmost 0, keep iterating until no more 0’s, then scan right looking for B.
– The TM matches up 0’s and 1’s
– q1 is the “scan right” state, looking for 1
– q2 is the “scan left” state, looking for X
– q3 is “scan right”, looking for B
– q4 is the final state
x1x2…xi-1qxixi+1…xn
x1x2…xi-1qxixi+1…xn |— x1x2…xi-1ypxi+1…xn
x1x2…xnq |— x1x2…xnyp
12
• Definition: Let M = (Q, Σ, Г, δ, q0, B, F) be a TM, and let w be a string in Σ*. Then w is
accepted by M iff
{w | w is in Σ* and w is accepted by M}
• Notes:
– In contrast to FA and PDAs, if a TM simply passes through a final state then the
string is accepted.
– Given the above definition, no final state of a TM need to have any transitions.
Henceforth, this is our assumption.
– If x is NOT in L(M) then M may enter an infinite loop, or halt in a non-final
state.
– Some TMs halt on ALL inputs, while others may not. In either case the language
defined by TM is still well defined. 13
• Definition: Let L be a language. Then L is recursively enumerable if there exists a TM
M such that L = L(M).
Notes:
– The set of all recursive languages is a subset of the set of all recursively enumerable
languages
Recursive Languages
Context-Sensitive Languages
Context-Free Languages - ε
Regular Languages - ε
15
Modifications of the Basic TM Model
16
Closure Properties for Recursive and
Recursively Enumerable Languages
17
• TM Block Diagrams:
– If L is a recursive language, then a TM M that accepts L and always halts can be
pictorially represented by a “chip” or “box” that has one input and two outputs.
yes
w M
no
yes
w M
– Conceivably, M could be provided with an output for “no,” but this output cannot
be counted on. Consequently, we simply ignore it. 18
• Theorem 1: The recursive languages are closed with respect to complementation, i.e., if L
is a recursive language, then so is L * L
M’
yes
yes
w M no
no
• Note That:
– M’ accepts iff M does not
– M’ always halts since M always halts
• Question: How is the construction achieved? Do we simply complement the final states in
the TM? No! A string in L could end up in the complement of L.
– Suppose q5 is an accepting state in M, but q0 is not.
– If we simply complemented the final and non-final states, then q 0 would be an accepting state in
M’ but q5 would not.
– Since q0 is an accepting state, by definition all strings are accepted by M’ 19
• Theorem 2: The recursive languages are closed with respect to union, i.e., if L1
and L2 are recursive languages, then so is L3 L1 L2
• Proof: Let M1 and M2 be TMs such that L1 = L(M1) and L2 = L(M2) and M1 and
M2 always halts. Construct TM M’ as follows:
M’ yes
yes start
w M1 M2 no
no
• Note That:
– L(M’) = L(M1) L(M )
2
• Proof: Let M1 and M2 be TMs such that L1 = L(M1) and L2 = L(M2). Construct M’ as follows:
M’ yes yes
M1
w
yes
M2
• Note That:
– L(M’) = L(M1) U L(M2)
• L(M’) is a subset of L(M1) U L(M2)
• L(M1) U L(M2) is a subset of L(M’)
– M’ halts and accepts iff M1 or M2 halts and accepts
• Proof: Let M1 and M2 be TMs such that L = L(M1) and L= L(M2). Construct M’ as
follows:
M’ yes yes
M1
w
yes
M2 no
• Note That:
– L(M’) = L
• L(M’) is a subset of L
• L is a subset of L(M’)
– M’ is TM for L
– M’ always halts since either M1 or M2 halts for any given string
– M’ shows that L is recursive
It follows from this that L (and therefore its’ complement) is recursive.
So, L is also recursive (we proved it before).
22
• In terms of the hierarchy: (possibility #1)
L L
Recursive Languages
23
• In terms of the hierarchy: (possibility #2)
L L
Recursive Languages
24
• In terms of the hierarchy: (possibility #3)
L L
Recursive Languages
25
• In terms of the hierarchy: (Impossibility #1)
L L
Recursive Languages
26
• In terms of the hierarchy: (Impossibility #2)
Recursive Languages
27
• In terms of the hierarchy: (Impossibility #3)
Recursive Languages
28
The Halting Problem - Background
• Definition: A decision problem is a problem having a yes/no answer (that one
presumably wants to solve with a computer). Typically, there is a list of parameters on
which the problem is based.
– Given a list of numbers, is that list sorted?
– Given a number x, is x even?
– Given a C program, does that C program contain any syntax errors?
– Given a TM (or C program), does that TM contain an infinite loop?
From a practical perspective, many decision problems do not seem all that interesting.
However, from a theoretical perspective they are for the following two reasons:
– Decision problems are more convenient/easier to work with when proving complexity results.
– Non-decision counter-parts can always be created & are typically at least as difficult to solve.
• Notes:
– The following terms and phrases are analogous:
<Quote> It was ambiguous, in my opinion, based on the definition in the Hopcroft book, i.e., the
definition in the Hopcroft book was not clear/precise enought to
account this special case. I don't have the book in front of me right now, but I think this is the example
I used in class: Consider the TM that has exactly one state, but no transitions. Perfectly valid TM, and
it would give us this encoding (111111). In that case the encoded machine would accept sigma*
because the highest numbered state would be q0, the only state, and that would be the final state under
the Hopcroft encoding. Now consider the TM that has exactly two states, but no transitions. Also a
perfectly valid TM, and it would give us the same encoding. In that case the encoded machine would
not accept anything because the final state is q1 (highest numbered state), and there is no way to get to
it. I used it only as a way to raise that issue in class, i.e., the the Hopcroft definition is a bit ambiguous
in this case.
One way to resolve the ambiguity is to require the encoding to specifically specify the final state (at the
end or something). In that case, 111111 isn't even a valid TM, since it doesn't specify the final state.
Another related question is, does a TM even have to have any states at all to be a valid TM? The
encoding would have to be able to isolate that as a unique string also. <End Quote>
Phil Bernhard
30