When I am studying about Turing machines and PDA, I was thinking that the first computing device is the Turing machine.

Hence, I thought that there exists a practical machine called the Turing machine and its states can be represented by some special devices (say like flip-flops) and it can accept inputs in magnetic tapes.

Hence I asked the doubt How input string is represented in magnetic tapes?. But by the answer and by the details given in my book, I came to know that Turing machine is some what hypothetical.

My question is, how would a Turing machine be implemented practically? For example, how it is used to check spelling errors in our current processors.

Are Turing machines outdated? Or are they still being used?

link|improve this question

72% accept rate
feedback

3 Answers

up vote 6 down vote accepted

Turing machines aren't used in practice for several reasons. For starters, it's impossible to build one, since you'd need infinite resources to construct the infinite tape. Moreover, Turing machines are inherently slower than other models of computation because of the sequential nature of it's data access. Turing machines cannot, for example, jump into the middle of an array without first walking across all the elements of the array that it wants to skip. On top of that, Turing machines are extremely difficult to design. Try writing a Turing machine to sort a list of 32-bit integers, for example. (Actually, please don't. It's really hard!)

This then begs the question... why study Turing machines at all? Fortunately, there are a huge number of reasons to do this:

  1. To reason about the limits of what could possibly be computed. Because Turing machines are capable of simulating any computer on planet earth (or, according to the Church-Turing thesis, any physically realizable computing device), if we can show the limits of what Turing machines can compute, we can demonstrate the limits of what could ever hope to be accomplished on an actual computer.

  2. To formalize the definition of an algorithm. Why is binary search an algorithm while the statement "guess the answer" is not? In order to answer this question, we have to have a formal model of what a computer is and what an algorithm means. Having the Turing machine as a model of computation allows us to rigorously define what an algorithm is. No one actually ever wants to translate algorithms into the format, but the ability to do so gives the field of algorithms and computability theory a firm mathematical grounding.

  3. To formalize definitions of deterministic and nondeterministic algorithms. Probably the biggest open question in computer science right now is the question of whether P = NP. This question only makes sense if you have a formal definition for P and NP, and these in turn require definitions if deterministic and nndeterministic computation (though technically they could be defined using second-order logic). Having the Turing machine then allows us to talk about important problems in NP, along with giving us a way to find NP-complete problems. For example, the proof that SAT is NP-complete uses the fact that SAT can be used to encode a Turing machine and it's execution on an input.

Hope this helps!

link|improve this answer
feedback

It is a conceptual device that is not realizable (due to the requirement of infinite tape). Some people have built physical realizations of a Turing machine, but it is not a true Turing machine due to physical limitations.

Here's a video of one: http://www.youtube.com/watch?v=E3keLeMwfHY

link|improve this answer
Are turing machines are outdated? or How it is used in current date? – EAGER_STUDENT Sep 9 '11 at 19:35
They are saying "infinite tape" in theory bcz to generalize for all cases. But I think we know how long theinput or stack of our case will take.(at least approximately) – EAGER_STUDENT Sep 9 '11 at 19:37
They are a mathematical concept created for the study of algorithmic computation. They cannot be 'outdated' because they are just an idea. An alternate idea for the study of computation came from Alonzo Church with his Lambda Calculus. They are not real machines but abstract notions used for proof and study. – Burton Samograd Sep 9 '11 at 19:38
How it is used in current date? It will be better for me,when you give a practical example. And turing machine is a study of what? where PDA is used? PDA is implemented in turing machine since they doesnt have primary memory right in that day! – EAGER_STUDENT Sep 9 '11 at 19:43
See the answer by templatetypedef below... – Burton Samograd Sep 9 '11 at 19:49
feedback

It's a theoretical machine, the following paragraph from Wikipedia

A Turing machine is a theoretical device that manipulates symbols on a strip of tape according to a table of rules. Despite its simplicity, a Turing machine can be adapted to simulate the logic of any computer algorithm, and is particularly useful in explaining the functions of a CPU inside a computer. Blockquote

This machine along with other machines like non-deterministic machine (doesn't exist in real) are very useful in calculating complexity and prove that one algorithm is harder than another or one algorithm is not solvable...etc

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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