Small two-state

From 2009.igem.org

Revision as of 11:23, 6 July 2009 by Swesrini (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

o be more clearer let us see an actual example of the working of a Turing machine. Look at the following set of instructions. Internal state of the box Mark on the tape read by the machine Change in internal state Change on the marks on the tape Motion of the tape A 0 A 0 Right A 1 B 1 Right B 0 A 1 Stop B 1 B 1 Right

The leftmost column of the table shows us that this particular Turing machine has two internal states of the box which we have labeled as A and B for the purpose of distinguishing them from each other. Now consider the third row of the set of instructions. If studied carefully the reader will be able to see that this set of instructions tells the machine-“If you are in state B and you read the mark 0 on the tape, you change your internal state to A, change the mark on the tape from 0 to 1 and stop.” Similarly, the first row tells the machine-“If you are in state A and you read the mark 0 on the tape, you change your internal state to A, change the mark on the tape from 0 to 0 and move one step towards the right so as to read the next mark on the tape.”

             Now consider the following tape:

0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0

The reader must assume that as the tape is infinite, there is an infinite succession of zeros to the right of this tape and an infinite precession of zeros to the left of this tape. That is to say we have considered only a segment of the potentially infinite tape. The infinite tape would look something like this. ……00000111111000000000…….

If this tape is fed to the Turing machine let us see what happens. The Turing machine reads a zero on the tape [Note- initially the machine is in state A] which is somewhere to the left of our given sequence. According to the first instruction, it changes its internal state to A, changes the tape mark to 0, and moves one step towards the right. In essence there is no change in the tape but that the machine has moved forward one step along the tape. The machine will go on repeating this until it reads the first 1 on the tape. When this occurs, the machine will carry out the second set of instructions because the machine is in internal state A and it reads a 1 on the tape. It will subsequently change the 1 to 1 and change its internal state to B moving one step to the right. Then it encounters the second 1 on the tape which it changes to 1, changes its internal state to B and moves one step towards the right [in accordance with the fourth instruction] This will continue until the machine encounters the 0 which proceeds the sequence of six 1’s. This zero will be changed to 1 and the internal change will be changed to A and the machine will stop. After the action of this entire process the new tape will look like this: 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0

Note that there is a sequence of seven 1’s as compared to the original six present initially on the earlier tape. So this Turing machine which I shall call UN+1 increases the sequence of 1’s by one unit, i.e. the new sequence consists of another consecutive 1 on the tape. The name UN+1 been given because if we consider the sequence of 1’s as the unary representation of any natural number, then UN+1 adds 1 to that number. {In the unary system 2 is represented as 11 while 4 is represented as 1111.}

Thus we have seen how the Turing machine performs a calculational procedure mechanically and deterministically.