What does the expression Turing Complete means? Can you give a simple explanation, without going into too much theoretical details?
feedback
|
|
Here's the briefest explanation: A Turing Complete system means a system in which a program can be written that will find an answer (although with no guarantees regarding runtime or memory). So, if somebody says "my new thing is Turing Complete" that means in principle (although often not in practice) it could be used to solve any computation problem. Sometime's it's a joke... a guy wrote a Turing Machine simulator in vi, so it's possible to say that vi is the only computational engine ever needed in the world. | |||||
feedback
|
|
From wikipedia:
I don't know how you can be more non-technical than that except by saying "turing complete means 'able to answer computable problem given enough time and space'". | |||
|
feedback
|
|
Its often used to define "real" programming languages, where you can actually do most of what you want to. A better example is some languages that are not turing-complete, like SQL, XML, and JSON. | |||||||
feedback
|
|
I think the importance of the concept "Turing Complete" is in the the ability to identify a computing machine (not necessarily a mechanical/electrical "computer") that can have it's processes be deconstructed into "simple" instructions, composed of simpler and simpler instructions, that a Universal machine could interpret and then execute. I highly recommend The Annotated Turing @Mark i think what you are explaining is a mix between the description of the Universal Turing Machine and Turing Complete. Something that is Turing Complete, in a practical sense, would be a machine/process/computation able to be written and represented as a program, to be executed by a Universal Machine (a desktop computer). Though it doesn't take consideration for time or storage, as mentioned by others. | ||||
|
feedback
|
|
Fundamentally, Turing-completeness is one concise requirement, unbounded recursion. Not even bounded by memory. I thought of this independently, but here is some discussion of the assertion. My definition of LSP provides more context. The other answers here don't directly define the fundamental essence of Turing-completeness. | ||||
|
feedback
|
|
Turing Complete means that it is at least as powerful as a Turing Machine. This means anything that can be computed by a Turing Machine can be computed by a Turing Complete system. No one has yet found a system more powerful than a Turing Machine. So, for the time being, saying a system is Turing Complete is the same as saying the system is as powerful as any known computing system. | |||
feedback
|
I believe this is incorrect, a system is Turing complete if it's exactly as powerful as the Turing Machine, i.e. every computation done by the machine can be done by the system, but also every computation done by the system can be done by the Turing machine. | |||||||||||
feedback
|
|
Some horrible answers here... Turing completeness in a computer literally exactly MEANS that it can map any input pattern to any output patern. For example in a game, inputs from a variety of devices, such as mice and keyboards are taken and an entirely different pattern is produced which controls the images on the screen, the sounds you hear and the things your computer sends to the rest of the internet. THATS IT!, It doesn't matter if the computer executes it programs in a partially recursive way. It is also very much not true that a turning complete machines memory need be infinite, that's irreverent crap. The memory a machine requires is a constant related to the necessary input size and output size. In order for a machine to need infinite memory, you would first need an infinite input pattern to process (which is impossible to acquire or feed into any computer) as well as a way to read and store the infinite output result (again, never going to happen). Relating Turing completeness to memory limits in any-way just is immaterial semantics. A Turing complete machine is one that can process any information... that means, recognize any information and produce any information. Almost any well defined manipulation rule set beyond a certain complexity is Turing complete... including; sand, rocks, water, air, atoms, energy fields, Redstone, language and your mind. A Turing machine is just a simple data-manipulating machine, however it's creator Alan Turing; was the first person to realize that there is no way to build a fundamentally more powerful machine; even using mathematics formal language or modern digital electronics | |||||
feedback
|