Tagged Questions
The turing tag has no wiki summary.
48
votes
13answers
3k views
The Halting Problem in the Field
When have you ever personally come upon the halting problem in the field? This can be when a co-worker / boss suggested a solution which would violate the fundamental limits of computation, or when ...
11
votes
9answers
4k views
What's a Turing machine?
What is a Turing machine and why do people keep mentioning it? My IBM PC is all I need to do my computation! Why does anyone care about these machines?
10
votes
4answers
457 views
What logic gates are required for Turing completeness?
My son has been playing Little Big Planet 2 lately, and I noticed that the game editor allows AND gates, OR gates and NOT gates... Is it Turing complete? If so, can anyone recommend a source for ...
9
votes
2answers
904 views
How should Chomsky's Hierarchy and Turing Machines influence language design?
I'm currently studying for a discrete mathematics test in which we are learning Chomsky's hierarchy and the type of automatas that recognize each level of the hierarchy. I'm being taught that most ...
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 ...
3
votes
2answers
436 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 ...
2
votes
3answers
499 views
Is turing machine is a real device or an imaginary concept?
When I am studying about turing-machine and PDA, I was thinking that , the first computing devices is turing-machine.
Hence, I thought that, there exist a practical machine called turing-machine and ...
2
votes
3answers
1k views
Why is this an invalid Turing machine?
Whilst doing exam revision I am having trouble answering the following question from the book, "An Introduction to the Theory of Computation" by Sipser. Unfortunately there's no solution to this ...
1
vote
4answers
461 views
need help with counted loops in turing
% calculates the population of a city from year 2000 to 2020
var popstart : int := 80000
var popgrowth : real
var popend : real
var growthrate : real := 0.03
% popgrowth := popstart * growthrate
...
0
votes
1answer
63 views
How input string is represented in magnetic tapes?
I know that in turing machines, the (different) tapes are used for both input and output and for stack too. In a problem of adding 2 numbers using turing machine, the input is dealing with many ...
0
votes
2answers
105 views
Is it possible to Estimate RAM needed from Turing space complexity?
Turing machines can consider complexity in both space (memory space on tapes) and time.
There are classes such as PSPACE and EXPSPACE.
Further, we can present algorithms that are definitely in ...
0
votes
2answers
485 views
enumerator turing machine digram
I am supposed to draw an enumerator for the language 0^k1^k (k>=0). I am not sure how that is different from building a turing machine state diagram for this language, meaning, the way I understand it ...
0
votes
1answer
154 views
Dutch national flag on a Turing Machine
I have a sequence of characters xxxxxx (with x^k and k > 0)
My goal is to transform this sentence into a dutch flag, that is to say :
xxxxx -> RRWWBB
xxxx -> RWBB
with R <= W <= B
All ...
0
votes
0answers
41 views
Deciding finite prefix language of a real number
why is the language of finite prefixes of the number pi decidable by a TM whereas it is false to say there is a TM for any real number that which decides the finite prefixes of that given number?
0
votes
4answers
319 views
Feasibility of beating the Turing Test with modern software?
I ask this academically, I want to ask aloud a very important question and have the community try to answer it. Can we build a system that generates a scene to play out along a live anonymous group ...
0
votes
1answer
556 views
JFLAP Turing Machine shortcut problem
In JFLAP (http://jflap.org), there are some shortcuts for Turing machine transitions. One of these shortcuts allows you to transition as long as the current tape symbol isn't the indicated symbol. For ...