Turing Machine: Difference between revisions

From Citizendium
Jump to navigation Jump to search
imported>Eric M Gearhart
(Copying definition to article's definition)
imported>Sandy Harris
No edit summary
Line 1: Line 1:
{{subpages}}
{{subpages}}
A '''turing machine''' is a theoretical computing device, first posited by mathematician [[Alan Turing]], which has been used extensively in analyzing computing problems such as tractability and complexity theory.  Its basic components are an infinite length of tape and a head which operates on the tape.  The tape is divided into segments, each of which can hold a single character which is an element of a predefined, finite set of characters called the 'tape alphabet'.  The head is always in one 'state' which is an element in a predefined, finite set of states.  The head is also always in a single location on the tape (i.e. there is one character on the tape at which the head is located). In a single computing step the head reads the character from the tape, switches its state based on the character and its current state, and steps to an adjacent character either directly to the left or directly to the right of the current location, again based on the state and character it read.
A '''Turing machine''' is a theoretical computing device, first posited by mathematician [[Alan Turing]], which has been used extensively in analyzing computing problems such as tractability and complexity theory.  Its basic components are a length of tape and a head which operates on the tape.  The tape is divided into segments, each of which can hold a single character which is an element of a predefined, finite set of characters called the 'tape alphabet'.  The machine is always in one 'state' which is an element in a predefined, finite set of states.  The head is also always in a single location on the tape (i.e. there is one character on the tape at which the head is located). The machine is fully deterministic &mash; the current state and current tape character determine what it does next. In a single computing step the head reads the character from the tape and takes actions based on the character and its current state. In addition to changing its internal state, it may take one of four actions — step to an adjacent character to the left, step to the right, change the character at the current location, or halt.


One reduction which has been proven to place no limitations on the turing machine is limiting the tape alphabet to two characters; a turing machine with a binary alphabet can simulate any turing machine with an alphabet of any size.  Therefore, turing machines are usually defined and studied using only the binary alphabet consisting of 1 and 0.
One reduction which has been proven to place no limitations on the turing machine is limiting the tape alphabet to two characters; a turing machine with a binary alphabet can simulate any turing machine with an alphabet of any size.  Therefore, turing machines are usually defined and studied using only the binary alphabet consisting of 1 and 0.

Revision as of 19:47, 9 August 2010

This article is a stub and thus not approved.
Main Article
Discussion
Related Articles  [?]
Bibliography  [?]
External Links  [?]
Citable Version  [?]
 
This editable Main Article is under development and subject to a disclaimer.

A Turing machine is a theoretical computing device, first posited by mathematician Alan Turing, which has been used extensively in analyzing computing problems such as tractability and complexity theory. Its basic components are a length of tape and a head which operates on the tape. The tape is divided into segments, each of which can hold a single character which is an element of a predefined, finite set of characters called the 'tape alphabet'. The machine is always in one 'state' which is an element in a predefined, finite set of states. The head is also always in a single location on the tape (i.e. there is one character on the tape at which the head is located). The machine is fully deterministic &mash; the current state and current tape character determine what it does next. In a single computing step the head reads the character from the tape and takes actions based on the character and its current state. In addition to changing its internal state, it may take one of four actions — step to an adjacent character to the left, step to the right, change the character at the current location, or halt.

One reduction which has been proven to place no limitations on the turing machine is limiting the tape alphabet to two characters; a turing machine with a binary alphabet can simulate any turing machine with an alphabet of any size. Therefore, turing machines are usually defined and studied using only the binary alphabet consisting of 1 and 0.

Turing Completeness

A device that can simulate any Turing Machine is called Turing complete. The device does not necessarily have to be intentionally designed to compute or be a computer; if a device, piece of software or even an abstract concept meets the criteria it is Turing complete.

Even software that is only used as a teaching tool or exist only as a concept, not as an implementation (such as Donald Knuth's MMIX[1] can be considered "Turing complete," in a completely abstract sense.

The name "Turing machine" and the concept known as "Turing completeness" are both derived from noted mathematician and computer scientist Alan Turing.

References

  1. Donald Knuth. Knuth: MMIX. Retrieved on 2007-11-10.