Download presentation
Presentation is loading. Please wait.
1
Variants of Turing machines
2
Turing machines with the “stay put” option
A transition of this type of machine may have either L (move left), Or R (move right), or S (stay put). ab,S q1 q2 “Replace a with b and go to state q2 without moving the head” This does not increase the power of the machine, because the above transition can be simulated with the ordinary TM as follows:
3
Turing machines with the “stay put” option
A transition of this type of machine may have either L (move left), Or R (move right), or S (stay put). ab,S q1 q2 “Replace a with b and go to state q2 without moving the head” This does not increase the power of the machine, because the above transition can be simulated with the ordinary TM as follows: ab,R L q1 q2
4
Multitape Turing machines
A multitape TM has k tapes, each with its own read/write head. Initially, the input is written on the first tape, and all the other tapes are blank, with each head at the beginning of the corresponding tape. For a 3-tape TM, a transition will look like 0,1,11,0,1,R,R,L q1 q2 “If you are in state q1 and see 0 on Tape1, 1 on Tape2 and 1 on Tape3, type 1 on Tape1, 0 on Tape2 and 1 on Tape3; move Head1 right, Head2 right and Head3 left; go to state q2.”
5
Multitape Turing machines: Example
Design a fragment of a 2-tape TM that swaps the contents of the tapes, from the position where the heads are at the beginning and there are no blanks followed by non-blank symbols. Tape alphabet: {0,1,-} Done Swap Tape1 Tape2 1 1 - - -
6
Multitape Turing machines: Example
Design a fragment of a 2-tape TM that swaps the contents of the tapes, from the position where the heads are at the beginning and there are no blanks followed by non-blank symbols. Tape alphabet: {0,1,-} 0,00,0,R,R 0,11,0,R,R 0,- -,0,R,R 1,00,1,R,R 1,11,1,R,R 1,- -,1,R,R -,00,-,R,R -,11,-,R,R -,- - ,-,L,L Done Swap Tape1 Tape2 1 1 - - -
7
Multitape Turing machines: Example
Design a fragment of a 2-tape TM that swaps the contents of the tapes, from the position where the heads are at the beginning and there are no blanks followed by non-blank symbols. Tape alphabet: {0,1,-} 0,00,0,R,R 0,11,0,R,R 0,- -,0,R,R 1,00,1,R,R 1,11,1,R,R 1,- -,1,R,R -,00,-,R,R -,11,-,R,R -,- - ,-,L,L Done Swap Tape1 Tape2 1 1 - - -
8
Multitape Turing machines: Example
Design a fragment of a 2-tape TM that swaps the contents of the tapes, from the position where the heads are at the beginning and there are no blanks followed by non-blank symbols. Tape alphabet: {0,1,-} 0,00,0,R,R 0,11,0,R,R 0,- -,0,R,R 1,00,1,R,R 1,11,1,R,R 1,- -,1,R,R -,00,-,R,R -,11,-,R,R -,- - ,-,L,L Done Swap Tape1 Tape2 1 - 1 - -
9
Multitape Turing machines: Example
Design a fragment of a 2-tape TM that swaps the contents of the tapes, from the position where the heads are at the beginning and there are no blanks followed by non-blank symbols. Tape alphabet: {0,1,-} 0,00,0,R,R 0,11,0,R,R 0,- -,0,R,R 1,00,1,R,R 1,11,1,R,R 1,- -,1,R,R -,00,-,R,R -,11,-,R,R -,- - ,-,L,L Done Swap Tape1 Tape2 - 1 1 - -
10
Multitape Turing machines: Example
Design a fragment of a 2-tape TM that swaps the contents of the tapes, from the position where the heads are at the beginning and there are no blanks followed by non-blank symbols. Tape alphabet: {0,1,-} 0,00,0,R,R 0,11,0,R,R 0,- -,0,R,R 1,00,1,R,R 1,11,1,R,R 1,- -,1,R,R -,00,-,R,R -,11,-,R,R -,- - ,-,L,L Done Swap Tape1 Tape2 - - 1 1 -
11
Multitape Turing machines: Example
Design a fragment of a 2-tape TM that swaps the contents of the tapes, from the position where the heads are at the beginning and there are no blanks followed by non-blank symbols. Tape alphabet: {0,1,-} 0,00,0,R,R 0,11,0,R,R 0,- -,0,R,R 1,00,1,R,R 1,11,1,R,R 1,- -,1,R,R -,00,-,R,R -,11,-,R,R -,- - ,-,L,L Done Swap Tape1 Tape2 - - 1 1 -
12
Multitape Turing machines: Example
Design a fragment of a 2-tape TM that swaps the contents of the tapes, from the position where the heads are at the beginning and there are no blanks followed by non-blank symbols. Tape alphabet: {0,1,-} 0,00,0,R,R 0,11,0,R,R 0,- -,0,R,R 1,00,1,R,R 1,11,1,R,R 1,- -,1,R,R -,00,-,R,R -,11,-,R,R -,- - ,-,L,L Done Swap Tape1 Tape2 - - 1 1 -
13
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The tape contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - 1 - - - - - - - - - - - -
14
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . # 1 - - - - - - - - - - - -
15
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . # - - - - - - - - - - - -
16
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . # - - - - - - - - - - - -
17
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . # 1 - - - - - - - - - - -
18
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . # 1 # - - - - - - - - - -
19
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . . # 1 # - - - - - - - - - -
20
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . . # 1 # - # - - - - - - - -
21
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . . . # 1 # - # - - - - - - - -
22
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . . . # 1 # - # - # - - - - - -
23
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . . . # 1 # - # - # - - - - - -
24
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . . . # 1 # - # - # - - - - - -
25
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . . . # 1 # - # - # - - - - - -
26
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . . . # 1 # - # - # - - - - - -
27
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . . . # 1 # - # - # - - - - - -
28
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . . . # 1 # - # - # - - - - - -
29
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . . . # 1 # - # - # - - - - - -
30
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . . . # 1 # - # - # - - - - - -
31
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 - q0 - - - - - - - - . . . # 1 # - # - # - - - - - -
32
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 # - # - # - - - - - -
33
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 # - # - # - - - - - -
34
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . # 1 1 # - # - # - - - - - -
35
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # - # - # - - - - - -
36
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # - # - # - - - - - -
37
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # - # - # - - - - - -
38
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # # - # - - - - - -
39
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # # - # - - - - - -
40
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . # 1 1 # # 1 # - - - - - -
41
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # # 1 - # - - - - -
42
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # # 1 - # - - - - -
43
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # # 1 - # - - - - -
44
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # # 1 - # - - - - -
45
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # # 1 - # - - - - -
46
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # # 1 - # - - - - -
47
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # # 1 - # - - - - -
48
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # # 1 - # - - - - -
49
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # # 1 - # - - - - -
50
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # # 1 - # - - - - -
51
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # # 1 - # - - - - -
52
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 - q1 - - - 1 - - - . . . # 1 1 # # 1 - # - - - - -
53
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 1 - q2 - - - 1 - - . . . # 1 1 # # 1 - # - - - - -
54
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 1 - q2 - - - 1 - - . . . # 1 1 # # 1 - # - - - - -
55
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 1 - q2 - - - 1 - - . . . # 1 1 # # 1 - # - - - - -
56
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 1 - q2 - - - 1 - - . . # 1 1 1 # # 1 - # - - - - -
57
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 1 - q2 - - - 1 - - . . . # 1 1 1 # # 1 - # - - - - -
58
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 1 - q2 - - - 1 - - . . . # 1 1 1 # # 1 - # - - - - -
59
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 1 - q2 - - - 1 - - . . . # 1 1 1 # # 1 - # - - - - -
60
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 1 - q2 - - - 1 - - . . . # 1 1 1 # # 1 - # - - - - -
61
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 1 - q2 - - - 1 - - . . # 1 1 1 # # 1 - # - - - - -
62
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 1 - q2 - - - 1 - - . . . # 1 1 1 # - # 1 - # - - - -
63
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 1 - q2 - - - 1 - - . . . # 1 1 1 # - # 1 - # - - - -
64
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 1 - q2 - - - 1 - - . . . . # 1 1 1 # - # 1 - # - - - -
65
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 1 - q2 - - - 1 - - . . # 1 1 1 # - # 1 # - - - -
66
Simulating multitape TM with ordinary TM
Theorem 3.13: Every multitape TM M has an equivalent single-tape TM S. Proof idea: The contents and the head positions of M can be represented on the single tape of S and correspondingly updated as shown on the following example for a 3-tape M; S follows the steps of M and accepts iff M accepts. Tape1 M: Tape2 Tape3 S: 1 1 1 - q2 - - - 1 - - . . . # 1 1 1 # - # 1 - # - - -
67
. . . . . Swap Done Swap Shift Shift initialization
0,00,0,R,R 0,11,0,R,R 0,- -,0,R,R 1,00,1,R,R 1,11,1,R,R 1,- -,1,R,R -,00,-,R,R -,11,-,R,R 如果原来有Q个状态,种字符, K个带子,则关键状态有Q* k个。 -,- - ,-,L,L Swap Done 0,1L 0,1L . 0L 0,1R 0,1R #L . 00, R . 0R #R 1R -R initialization Swap 0,R 1R 0 1 If(S,0,0 )=(p,0,0,R,R), 指向p状态 -R #R 1,R #R . 0, L Shift 0,1,-,#R . 00, R 0,1R 0,1R 0 1 . . . 1,L 0,1L 0,1L 0, 1, -L #R #L Shift
68
Nondeterministic Turing machines
A nondeterministic TM is allowed to have more than 1 transition for a given tape symbol: A string is accepted, if one of the branches of computation takes us to the accept state. q2 ab,R : Q P{Q {L, R}} q1 ac,L q3 Theorem 3.16: Every nondeterministic TM has an equivalent deterministic TM. Idea: Simulate every possible branch of computation in a breadth-first manner.
69
Simulation Idea of TM for NTM
TM will explore the computation graph in BFS (breadth-first order ) fashion. Enumerate all possible computations with just 1-step, then those with 2-steps, … Initial configuration of NTM 1 2 b . . . A computation with 2 steps 1 1 b ... b ... 1 b ... 2 2 2 . Why not in DFS? b is the maximum number of choices in one transition
70
Simulation Idea for NTM
… input tape 1 □ □ D … x x # 1 x □ simulation tape … 1 2 3 3 2 3 1 2 1 1 3 □ address tape Deterministic TM D simulating non-deterministic TM N
71
Simulation Idea for NTM N
Initially tape 1 contains the input w, and tapes 2 and 3 are empty. Copy tape 1 onto tape 2. Use tape 2 to simulate N with input w on one branch of its non-deterministic computation. Consult tape 3 to determine which choice to make. If no more symbol remains on tape 3 or if choice invalid, abort and go to next step. Go to next step if a reject configuration is encountered Replace the string on tape 3 with the lexicographically next string. Simulate the next branch of N’s computation by going to stage 2. Note: Here the lexicographic order is similar to ordinary one but the shorter strings are placed before longer strings. E.g., ,1, 2, 3, 11, 12, 13, 21, 22, 23, 31, 32, 33, 111, 112, 113, 121, 122, 123, …
72
If (p, a)={(q1,a1,L)(q2,a2,R)(q3,a3,L)}
则,’(p,x,a,1)=(q1,x,a1,L,L,R) ’(p,x,a,2)=(q2,x,a2,L,R,R) ’(p,x,a,3)=(q3,x,a3,L,L,R) ’(p,x,a,b)=(q,,,), 对b>3, q是转向结束这个模拟过程的状态,如进入把tape1内容写入tape2,并扩充路径的入口。其它带子的内容在模拟一个计算路径的过程中暂时不变。
73
From NTM to TM, example q3 Unspecified transitions
0x,R Unspecified transitions go to a reject state. q2 0y,R 0L q1 0x,R q5 R 0L R q4 0y,R q6 R 0z,R qaccept An NTM that recognizes {w0k| k is a multiple of 2 or 3, k 0 }
74
From NTM to TM, example Copy Tape 1 to Tape 2
0,, $0,0, $,R,R,L 0,,$,$,$,R,R,L , , $0,0,$, L,L,L 0,0, $ 0,0, $,L,L,L , ,, $,$, $,L,L,L $,$, $$,$, $,L,L,R $,$, $,$, 1,L,L,L Copy Tape 1 to Tape 2 Increment the content of Tape 3 $,$, $ $,$,$,L,R,R
75
From NTM to TM q1 Check whether 03k Check whether 02k q1
$,,1 R,R,R q1 $,0,2 $,0,2,L,S,R $,0,1 $,x,1,L,R,R $,0,1 $,0,1,L,S,R $,,l L,L,L 其它情况拒绝 $,,1 L,R,R $,0,1 $,z,1,L,R,R $,0,1 $,y,1,L,R,R $,,1 L,R,R $,0,1 $,y,1,L,R,R $,0,1 $,x,1,L,R,R $,0,(,2) L,L,L $,,(,2) L,L,L $,0,(,2) L,L,L $,,(,2) L,L,L $,0,(,2) L,L,L $,,(,1,2)L,L.L Check whether 03k $,0,(,2) L,L,L $,,(,1,2) L,L,L $,(0,x,y,z),(1,2) L,L,L Check whether 02k $,0,(,2) L,L,L $,,(,1,2) L,L,L q1 $,$,$L,L,R $,(0,x,y,z),(1,2) L,L,L Start trying a new path
76
From NTM to TM Copy Tape 1 to Tape 2 Increment the content of Tape 3
$,$,(1,2) L,L,R $,$,(1,2) L,L,L $,$, L,L,L $,$,1 $,$,2,L,L,L $,$,2 $,$,1,L,L,L $,$, $,$,1,L,L,L $,$,1 $,$,2,L,L,L $,$,$ R,R,L $,$,2 $,$,1,L,L,L $,$,1 L,L,R $,$,$ $,$,$,L,L,R 0,(0, ,x,y,z),$0,0,$,R,R,L 0,(0,x,y,z),$0,0,$,R,R,L , (0, ,x,y,z),$,,$, L,R,L , (0,x,y,z),$ ,,$,L,R,L ($,0),(0,,x,y,z), $ ($,0),, $,L,R,L ($,0),, $L,L,L , ,$ ,,$,L,L,L Copy Tape 1 to Tape 2 ($,0),(0, $),$L,L,L $,$, $ L,R,R Increment the content of Tape 3 q1
77
An enumerator is a TM with two tapes: the work tape and the printer.
Enumerators An enumerator is a TM with two tapes: the work tape and the printer. Initially both tapes are blank. On the work tape it can read, write and move in either direction just as an ordinary TM. On the printer, it can only print one of the symbols of the language alphabet, or #, serving as the “end of string” symbol, which is not in the language alphabet. So that transitions look like meaning “if, in state q1, you see an a on the work tape, replace it with b, move in the direction D (D=L or D=R), go to state q2 and print c on the printer”. Every time a symbol is printed on the printer, the printer head moves right. If c is absent, nothing happens on the printer. There is a start state, but there are no accept or reject states. Entering a configuration from which there is no transition causes the enumerator to halt. The language enumerated by an enumerator is the set of strings (separated with #) that it prints on the printer. It is OK if some of the strings are printed more than once. c a b,D q1 q2
78
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape - - - - - - - - - - Printer - - - - - - - - - -
79
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape - - - - - - - - - - Printer - - - - - - - - - -
80
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - - - - Printer - - - - - - - - - -
81
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - - - - Printer - - - - - - - - - -
82
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - - - Printer # - - - - - - - - -
83
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - - - Printer # - - - - - - - - -
84
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - - - Printer # - - - - - - - -
85
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - - Printer # # - - - - - - -
86
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - - Printer # # - - - - - - -
87
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - - Printer # # - - - - - - -
88
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - - Printer # # - - - - - -
89
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - - Printer # # - - - - -
90
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - Printer # # # - - - -
91
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - Printer # # # - - - -
92
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - Printer # # # - - - -
93
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - Printer # # # - - - -
94
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - Printer # # # - - -
95
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - Printer # # # - -
96
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - - Printer # # # -
97
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - Printer # # # #
98
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - Printer # # # #
99
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - Printer # # # #
100
An example of an enumerator
# - 0,L - $,L $ R start go to the beginning print 0 L 0 R Work tape $ - - - - - Printer # # # #
101
Enumerability vs Turing recognizability
Definition: A language is said to be (recursively) enumerable iff some enumerator enumerates it. Theorem 3.21: A language is Turing recognizable iff it is enumerable. Proof sketch. (): Suppose E enumerates L. Construct a TM M that works as follows: M = “On input w: 1. Simulate E. Every time E prints a new string, compare it with w. 2. If w is ever printed, accept.” (): Suppose M recognizes L. Let s1,s2,s3,… be the lexicographic list of all strings over the alphabet of L. Construct an enumerator E that works as follows: E = “ 1. Repeat the following for i=1,2,3,… Simulate M for i steps on each of the inputs s1,s2,…,si. If any computations accept, print out the corresponding sj.”
102
Turing machines with an output (not in the textbook!)
The only difference with ordinary TM is that a TM with an output (TMO) has a state halt instead of accept and reject; if and when such a Machine reaches the halt state, the contents of the tape (up to the first blank cell) will be considered its output. Example: Design a machine that, for every input w{0,1}*, returns w0.
103
Turing machines with an output (not in the textbook!)
The only difference with ordinary TM is that a TM with an output (TMO) has a state halt instead of accept and reject; if and when such a Machine reaches the halt state, the contents of the tape (up to the first blank cell) will be considered its output. Example: Design a machine that, for every input w{0,1}*, returns w0. 0R 1R - 0,R halt
104
A function g: * * is said to be computable, iff there is a TMO
Computable functions A function g: * * is said to be computable, iff there is a TMO M such that for every input w* M returns the output u with u=g(w). In this case we say that M computes g. Example: Let f: {0,1}* {0,1}* be the function defined by f(w)=w0, so that f()=0, f(0)=00, f(1)=10, f(00)=000, f(01)=010, etc. Then obviously f is computable. The graph of a function g: * * is the language {(w,u) | w*, u=g(w)} E.g., the graph of the above function f is {(,0), (0,00), (1,10), (00,000), (01,010), …}, i.e. {(w,u) | w{0,1}*, u=w0}
105
Computability vs decidability
Theorem: A function is computable iff its graph is decidable. Proof sketch. Let g: * * be a function. (): Suppose C is a TMO that computes g. Construct a TM D that works as follows: D = “On input t: 1. If t does not have the form (w,u), where w,u*, then reject. Otherwise, 2. Simulate C for input w. If it returns u, accept; otherwise reject.” (): Suppose a TM D decides the graph of g. Let s1,s2,s3,… be the lexicographic list of all strings over the alphabet . Construct a TMO C that works as follows: C =“On input t: Simulate D for each of the inputs (t,s1), (t,s2),(t,s3),… until you find si suct that (t,si) is accepted, and return this si”
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.