4

Could we design a Turing machine that output every bit of $\pi$ one after another correctly?

I think the answer is yes because we have computer programs that calculate the value of $\pi$ day after day forever, and thus it's viable.

However, could we do that if the Turing machine has a limited tape length?

NickD
  • 2,097

1 Answers1

7

A Turing machine with a bounded-length tape is basically just a finite-state automaton, since there are only finitely many possible configurations of data on the tape and only finitely many states in the machine itself. What this means is that any sequence of numbers output by such a machine is eventually going to be periodic - in particular, no irrational number can be produced this way.

Noah Schweber
  • 245,398