I've got a really simple question about Turning Machines.

If the very first action it takes includes rewinding the tape, will it move back past the starting point or is this a special case and will it remain at the starting point?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

The tape in a Turing machine is infinite in both directions; it is usually assumed that everything before the beginning is filled with 0.

link|improve this answer
That makes things nice and simple, thank you :) – Benjamin Confino Mar 24 '11 at 11:41
You could have a Turing machine that halts when it moves past the beginning of the tape. – Gabe Mar 24 '11 at 11:42
feedback

The tape is infinitely extensible in both directions. Wikipedia has this to say:

A tape which is divided into cells, one next to the other. Each cell contains a symbol from some finite alphabet. The alphabet contains a special blank symbol (here written as 'B') and one or more other symbols. The tape is assumed to be arbitrarily extendable to the left and to the right, i.e., the Turing machine is always supplied with as much tape as it needs for its computation.

link|improve this answer
feedback

It really depends on which formalism you are using. Some formalisms have a tape that is infinitely extensible in both directions, while other have a left end. Within the left end camp, there are still more subdivisions. Some people say that the machine fails or produces no output when it moves off the left end of the tape (I'm thinking of work by Hamkins and Miasnikov on halting probability), while others force a special, unrewritable marker in the leftmost tape cell (Kozen does this in his Automata and Computability textbook). These formalisms are all essentially equivalent, so most people don't make a big deal about it and just use whatever is most convenient for the application at hand.

link|improve this answer
From what I learned in class, I attest that this is the correct answer. – Nayuki Minase Jul 15 '11 at 19:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.