0

If a Turing Machine has an input tape of 01011, for example, what happens if you reach the end of that sequence without reaching any resolution within the Turing Machine?

Potatosaurus
  • 487
  • 2
  • 4
  • 15

1 Answers1

2

The tape is infinite, the input does not only consist of 5 cells. To the left and right, the tape is blank (i.e. filled with 0, or possibly some other symbol if you have more than two). There is no "end of the sequence", the turing machine will continue running its program until it halts (which might be never).

Bergi
  • 630,263
  • 148
  • 957
  • 1,375