Why is this an invalid Turing machine?
Posted
by Danny King
on Stack Overflow
See other posts from Stack Overflow
or by Danny King
Published on 2010-03-12T20:20:52Z
Indexed on
2010/03/12
20:37 UTC
Read the original article
Hit count: 393
Whilst doing exam revision I am having trouble answering the following question from the book, "An Introduction to the Theory of Computation" by Sipser. Unfortunately there's no solution to this question in the book.
Explain why the following is not a legitimate Turing machine.
M = {
The input is a polynomial p over variables x1, ..., xn
- Try all possible settings of x1, ..., xn to integer values
- Evaluate p on all of these settings
- If any of these settings evaluates to 0, accept; otherwise reject. }
This is driving me crazy! I suspect it is because the set of integers is infinite? Does this somehow exceed the alphabet's allowable size?
Thanks!
© Stack Overflow or respective owner