Tagged Questions

A Turing machine is an idealized model of computation consisting of a finite-state control, an infinite tape holding information, and a read head positioned somewhere over the tape. Turing machines are used in computability theory to reason about the limits of computation, to provide a formal definition for an algorithm, and to provide formal models for nondeterminism.

learn more… | top users | synonyms

41
votes
7answers
10k views

What is Turing Complete?

What does the expression Turing Complete means? Can you give a simple explanation, without going into too much theoretical details?
16
votes
21answers
1k views

How do you apply Theoretical Computer Science?

Why is theory useful? Do you ever use it in your day-to-day coding? For example, we learned about the halting problem, Turing machines, reductions, etc... a lot of classmates are saying it's abstract ...
15
votes
12answers
2k views

Turing Machine Code Golf

Ok guys, today's goal is to build a Turing machine simulator. For those that don't know what it is, see the Wikipedia article. The state table we are using today is found at the end of the Formal ...
10
votes
2answers
111 views

Is there a term for a finite state machine that is guaranteed to halt?

I was having a discussion earlier about a state machine, and there was a question as to whether it might not halt on some input. It seems like a property of state machines that is important and ...
10
votes
9answers
1k views

Multiple levels of infinity [closed]

Some programmers don't see much relevance in theoretical CS classes (especially my students). Here is something I find very relevant. Let me build it up in pieces for those that haven't seen it ...
8
votes
5answers
1k views

Turing Model Vs Von Neuman model

First some background (based on my understanding).. The Von-Neumann architecture describes the stored-program computer where instructions and data are stored in memory and the machine works by ...
8
votes
7answers
901 views

Universal Turing Machine Problems

If I have a machine, call it machine 1, that is able to solve a problem: it's just a machine, not per se a Turing machine. It can solve one specific problem. If this exact same problem can be solved ...
6
votes
2answers
399 views

What is meant by “dovetailing”?

While reading the review for Stephen Wolfram's "A New Kind of Science" on Amazon, the reviewer mentions: Every computer science (CS) student knows the dovetailer, a very simple 2 line program that ...
6
votes
4answers
189 views

What would the assembly language equivalents of the operations on the original Turing machine be?

If you take the original Turing machine definition as follows: ...an infinite memory capacity obtained in the form of an infinite tape marked out into squares, on each of which a symbol ...
6
votes
3answers
741 views

Implementing Control Structures in Brainf**k

For the uninitiated, Brainfuck is a Turing-complete language with only 8 commands, all of which have literal equivalents in C: bf c ---------------------- > ++ptr; < --ptr; + ...
6
votes
7answers
600 views

What is the relationship between Turing Machine & Modern Computer?

Possible Duplicate: What is the relationship between Turing Machine & Modern Computer ? I heard a lot that modern computers are based on Turing machine. I just cannot build a bridge ...
5
votes
4answers
254 views

Are .NET's regular expressions Turing complete?

Regular expressions are often pointed to as the classical example of a language that is not Turning complete. For example "regular expressions" is given in as the answer to this SO question looking ...
5
votes
3answers
286 views

My simple turing machine

I'm trying to understand and implement the simplest turing machine and would like feedback if I'm making sense. We have a infinite tape (lets say an array called T with pointer at 0 at the start) and ...
4
votes
3answers
130 views

How to tell if a machine is Turing machine equivalent

I found a Wikipedia article of a list of Turing machine equivalents. However, it doesn't tell a method of how to determine whether a given machine is Turing machine equivalent. Do I need to use the ...
3
votes
1answer
46 views

Is this language decidable?

I'm struggling with whether or not this is decidable: A = {x is an element of the set of Natural Numbers | for every y greater than x, 2y is the sum of two primes} I'm inclined to think that this ...
3
votes
2answers
201 views

draw trees in Qt

I'm about to implement a Turing machine simulator and need to visualize computation steps of a non-deterministic Turing machine. For this I will draw a tree. Is there a library that can help me doing ...
3
votes
3answers
94 views

Is a dictionary turing complete

With "dictionary" I mean an array of key / value pairs with unique keys. If not, why? If long enough, you can use the key as an input and the value as an output and it could have the solution to as ...
3
votes
6answers
204 views

What are the consequences of saying a non-deterministic Turing Machine can solve NP in polynomial time?

these days I have been studying about NP problems, computational complexity and theory. I believe I have finally grasped the concepts of Turing Machine, but I have a couple of doubts. I can accept ...
3
votes
2answers
435 views

Looking for languages that are not Turing complete

I know a little about what is a Turing Machine and a Turing complete language, but to understand better, could someone give examples of languages that are not Turing complete? (maybe machines that are ...
3
votes
1answer
613 views

How to create a Turing machine that takes a single digit decimal number from 0 - 9 and output the cube

I'm working on a project for a Turning machine but having problems conceptualizing the steps. f(x) = x^3, where x is a single digit between 0 - 9 inclusive. Based on my understanding I am to ...
3
votes
4answers
465 views

A Turing Machine Question

Greetings, I have been struggling to find a question regarding this theoretical question, even tho it is not directly a programming question, I believe it is really related. Assume a type of Turing ...
3
votes
2answers
573 views

What are the useful limits of Linear Bounded Automata compared to Turing Machines?

There are languages that a Turing machine can handle that an LBA can't, but are there any useful, practical problems that LBAs can't solve but TMs can? An LBA is just a Turing machine with a finite ...
3
votes
4answers
1k views

How does a non deterministic turing machine work?

I understand they aren't real and they seem to branch computation whenever there are 2 options, instead of picking one. But, for example, if I say this: "Non deterministically guess a bijection p of ...
3
votes
1answer
246 views

Turing Machine Instruction Table

The definitions of Turing Machine say that it is prohibited for one to read/modify it's instruction table (program). Exactly, Turing Machine has no access to it's own program. What benefits can be ...
2
votes
2answers
62 views

Context sensitive language with non deterministic turing machine

how can i show a language is context sensitive with a non deterministic turing machine? i know that a language that is accepted by a Linear bound automaton (LBA ) is a context -sensitive language. ...
2
votes
2answers
99 views

A square root computing turing machine [closed]

I think i am close to this answer but still to confirm can we create a turing machine(At least in Principle) which can work on real number computation and give exact results?**For example finding ...
2
votes
2answers
99 views

Is the busy beaver function unique for an n-state busy beaver game?

For a given n-state busy beaver game, is the busy beaver function unique, or might there be multiple functions with the same maximum score? Perhaps it has not been proven either way?
2
votes
2answers
138 views

How are algorithms and data structures related to Turing Machines?

My copy of The Design and Analysis of Computer Algorithms has arrived today. In the first chapter, the author introduced Turing Machines. I have two other algorithms textbooks, Introduction to ...
2
votes
1answer
62 views

Understanding TM Simulator

I was just looking at the turing machine simulator code and came across the following statements "The tape maps time and position to symbols. To calculate the symbol, we have to look at the machine ...
2
votes
2answers
140 views

Automata programming language

Do you know any programming language that implements abstract machines like Turing machines and Finite State Automatons? That is, process the following input: A 5-tuple (The notorious ⟨Q,Σ,δ,q0,F⟩ ...
2
votes
2answers
667 views

Design a Push Down Automata to count the number of characters

The Alphabet: a, b, c I'm trying to define a PDA which accepts a^n b^m c^p : n + p = 2k for some integer k, m = k, and n, m, p, k >= 0 I think some strings that would be accepted are: #abc#; ...
2
votes
1answer
179 views

Turing Machine - Learning Skills

It took me the whole month to solve this problem, as I got it from the book one of exercise, and I'd love to know how to write this in a turing machine; I would really love to learn this. Please could ...
2
votes
3answers
497 views

Algorithm to generate a Turing Machine from a Regular Expression

I'm developing a software to generate a Turing Machine from a regular expression. [ EDIT: To clarify, the OP wants to take a regular expression as input, and programmatically generate a Turing ...
2
votes
2answers
1k views

Designing a Turing Machine's state table

Are they any helpful guidelines to describing what a Turing machine does if you already have the pseudo code for the algorithm? I'm taking a course on complexity theory and it takes me a while to ...
1
vote
1answer
43 views

How do you determine if a language falls into NP?

for example, I know that the language isnt context free by the pumping lemma for CFLs, but how would i prove that it falls into NP and not exp. time, decidable languages, or turing recognizable? ...
1
vote
2answers
190 views

Construct a Turing-Machine to decide ww^Rw

The title says almost all, w^R is the reverse of w and w is {0, 1}* . So the TM needs to decide a word followed by the reverse of this word followed by the word. I don't want the answer, I just want a ...
1
vote
1answer
128 views

undecidable language proof

Consider the following language: L={M| M is a Turing Machine and there exist input x of length k such that M halts after at most k steps} Is L undecidable? I think it is but I couldn't prove ...
1
vote
3answers
442 views

finding palindrome on single-tape turing machine without changing the word

It is quite easy to find palindrome replacing letters on both ends with (Φ). ΦabaΦ ΦΦbaΦ ΦΦbaΦ ΦΦbaΦ ΦΦbaΦ ΦΦbaΦ ΦΦbΦΦ ΦΦbΦΦ ΦΦbΦΦ ΦΦΦΦΦ ΦΦΦΦΦ ΦΦΦΦΦ YES It is possible with changing a ...
1
vote
3answers
123 views

How many states would a Turing Machine need to decide this language?

The language L = {1^200}, or rather, the language such that there are 200 1's in a row? Aka, this TM only accepts once it receives 200 '1's in a row. Would it therefore need 200 states to solve ...
1
vote
2answers
176 views

Minimizing Finite State Automaton

I am trying to minimize this DFA: http://img145.imageshack.us/img145/3006/dfac.png Here's my minimized DFA: http://img195.imageshack.us/img195/4131/mdfa.png Am I correct? Thanks P.S.-This is ...
1
vote
1answer
136 views

Am I correct? (Finite Automata)

I was given a regular expression, and I am suppose to covert it to NFA and then DFA. Here's the regular expression: a ( b | c )* a | a a c* b Then I coverted this to NFA using thomson's ...
1
vote
3answers
209 views

Can a Turing machine be constructed having only two tape symbols?

A Turing machine M containing any number of tape symbols can be simulated by one M' containing just three tape symbols: {0, 1, B} (B = Blank). Can M be be simulated by a M" that has just two tape ...
1
vote
1answer
102 views

Turing Machines and Machine Schemas

Arthur Dent, using space age technology not yet available on earth developed an algorithm which determines if a TM M1 halts or not when started on a blank tape. But then later, he discovered that the ...
1
vote
1answer
50 views

What's to the left of the input in a Turing Machine?

For example, if I'm at the end of the input and I'm shifting left, how would I know I'm at the very beginning of the tape? If there are more |_| before the input, then it would be easy for me to tell ...
1
vote
1answer
413 views

Is PI a turing computable number? [closed]

AFAIK, turing computable numbers are numbers whose i-th index can be returned by a Turing Machine. So a non-computable number would be something like a number whose decimal points are decided if some ...
1
vote
1answer
110 views

Having some kind of XML/Json file to compile into Graphiz / Finite State Automaton. Any suggestions?

I have a task where I need to take some existing pictures[ which show some automata (DFA, NFA, Turing machines)] and somehow convert them into a format, which enables me to use the data to represent ...
1
vote
1answer
100 views

How Arbitrary is the Representation of a Turing Machine?

I'm working on a related decidability/recognizable problem, and to solve it, I need clarification about the encoding/representation of a turing machine. I know a turing machine is formally defined as ...
1
vote
3answers
403 views

Turing machine: But why use template metaprogramming?

I am a final year engineering student. Me and my friends have decided that our final year project would be "Simulation of Turing Machine using Template Metaprogramming". I understand what "Turing ...
1
vote
3answers
790 views

Turing machine halting problem

I have a question about turing machines and halting problem. Suppose that we have Atm = {(M,w) where M is a turing machine and w is an input} and HALTtm = {(M,w) where M is a turing machine halts ...
1
vote
3answers
159 views

A Decidability Question

Can there be an NFA that decides on real numbers ?

1 2