Tagged Questions

43
votes
7answers
11k 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 ...
10
votes
2answers
113 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 ...
3
votes
1answer
56 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
6answers
214 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
4answers
468 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
582 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 ...
2
votes
2answers
148 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
2answers
142 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⟩ ...
0
votes
3answers
71 views

Can a Turing machine go past the beginning of a tape?

I've got a really simple question about Turning Machines. If the very first action it takes includes rewinding the tape, will it move back past the starting point or is this a special case and will ...