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 ...
0
votes
0answers
7 views
Undecidability of detecting whether a TM has only mechanically detectable loops
This might be a bit of an abstruse question, but it's something I've been trying to prove.
I'm trying to show that it is undecidable whether a given Turing Machine is a member of the set of all ...
-4
votes
0answers
21 views
Are Undecidable Languages NP complete? [closed]
If a language L is undecidable than L is NP-complete.
Can you give a brief explanation or show a counter example for the previous sentence.
-1
votes
0answers
21 views
Symbolic difference of two turing machines [closed]
What is symbolic difference of two turing machines? What does it refer to? If symbolic difference of two turing machine is possible to be found, what kind of result will we get?
3
votes
2answers
56 views
Which Turing machine extensions broaden the power of the machine?
Of all the Turing machine extensions there are (such as two-way infinite tape, RAM, multiple read/write heads, and nondeterminism), do any of them allow the TM to decide problems that were previously ...
0
votes
1answer
15 views
advantages of a 2 stack PDA and a multitape Turing Machine
What are the advantages of a 2 stack PDA and a multitape Turing Machine?
2 stack:
Can work like a Turing Machine using one stack as the left tape and one as the right
Can take context sensetive ...
-4
votes
0answers
28 views
Can a deterministic Turing Machine have a partial transition function? [closed]
Isn't it best for a Turing Machine to have a partial transition function, as this allows for it to halt when there is no transition defined for the current state and symbol pair. So what makes a ...
-2
votes
1answer
54 views
What does this turing machine do? [closed]
I have this Turing machine and I am trying to understand what it exatly does.
I can't even find a word that this Turing machine doesn't accept
From what I can understand it puts a '1' after |_| ...
-1
votes
0answers
74 views
Algorithm to determine if a number is perfect on a Turing Machine [closed]
I've been trying for a while now to find a solution for the problem in the title, which is part of a homework assignment: determining if a number is perfect using a Turing Machine. I only had one ...
1
vote
2answers
80 views
Why is my for loop not iterating in this code?
eachconfig = [['a', ['blank', ['p1', 'r', 'r'], ['b']]], ['b', ['blank', ['p0'], ['c']]], ['c', ['blank', ['r', 'r'], ['a']]]]
def turingmachine(data):
a = 0
tape = []
finalmc = data[0][0]
...
-1
votes
0answers
24 views
Parsing input in a turing machine [closed]
An explanation would help.
Does the TM accept
A)101010
B)00100
The turing machine is here,
And to design a turing machine that accepts {a^2n : n>0}
I appreciate your help, I really want to learn ...
0
votes
0answers
51 views
Turing machines understanding assistance [closed]
I was having a hard time understanding and solving this question that wants me to show the final tape and figuring out if whether or not the turning machine accepts it or not. I have a list of 20 ...
-3
votes
0answers
31 views
Turing machines misunderstanding [closed]
I was having a hard time understanding and solving this question that wants me to show the final tape and figuring out if whether or not the turning machine accepts it or not. I have a list of 20 ...
0
votes
0answers
33 views
Is there any input string for which TM halts within 20 steps?
I'm trying to find if there's a Turning machine that can halt within 20 steps. I'm a little stuck. I've been researching this for a few hours and can't decide if there is or not. Any help would be ...
1
vote
2answers
70 views
Turing Machines
I'm reading a book on Languages & Automata and I'm not understanding Turing Machines. I've taught myself about DFA's NFA's and Pushdown Automata without any problems. Can someone please explain ...
0
votes
0answers
44 views
Can a Language accept Infinite numbers
I have a question whether a language can accept infinite numbers
I have to reduce Lempty to Linf
where Lempty ={e|L(Pe) is null}
Linf={e|L(Pe) is infinite}
so can i define a program P like this
"
...
0
votes
1answer
25 views
Turing machine ends when input is like 000111
we have a tape of random 0s and 1s, how do design a turning machine that ends when the input is like #000111#, where numbers of 0 and 1 are equal.
homework. First time posting a question, thank you!
2
votes
1answer
167 views
Testing a Turing Machine Simulation Program
I am trying to come up with large Test Cases for a Turing Machine Simulator program in Java.
The program reads data from an input file and runs the simulation based on a testcase string and a list ...
-1
votes
1answer
64 views
Turing Machine - Simulate Towers of Hanoi [closed]
Would it be possible to simulate the game Towers of Hanoi on this website's Turing machine?
http://morphett.info/turing/turing.html
I want to have a go but an not sure how to go about it.
Any advice ...
1
vote
1answer
54 views
Turing Machine - Generate number sequences
http://morphett.info/turing/turing.html
How would I create a looping number sequence such as:
01011011101111011111...
So basically adding a zero, then adding 1, then a zero, then 1 on top of the ...
0
votes
2answers
170 views
Are all infinite languages undecidable?
I am wondering are all infinite languages undecidable?
They must be right, as the TM trying to decide an infinite language would just loop forever, which makes it a recgonizer, not a decider.
Thanks ...
5
votes
1answer
304 views
How does an oblivious Turing machine work?
I am reading the book Computational Complexity: A Modern Approach and I am having problems understanding oblivious Turing machines.
An oblivious Turing machine (TM) is such a TM that the movement of ...
-2
votes
2answers
72 views
proving if a Turnig machine accept a string is undecidable
I have seen the proof of
ATM = {〈M,w〉 | M is a TM and M accepts w} is undecidable.
initially we build another Turing machine
H with input <M,w> it accept if M accept w otherwise reject
...
1
vote
0answers
72 views
Time complexity of a Turing machine for repeat strings
I'm trying to figure out the time-complexity of a turing machine that accepts repeat strings (ww) in three cases: a 1-tape deterministic machine, a 2-tape deterministic machine, and 1-tape ...
0
votes
0answers
92 views
Turing machine in lambda calculus? [closed]
It was once explained in here that this is quite easy to construct Turing machine in lambda calculus, but I don't understand how it would work. I don't ask for direct lambda expression simulating TM, ...
0
votes
0answers
34 views
Turing machine and coming up with an idea
I read many things about the Turing machine and understand how it works but what I can't get the grasp of (and what none of the books seem to try to teach) is how should I approach a problem I am ...
1
vote
1answer
246 views
Python turing machine for 0^n1^n2^n
I was given the instructions "Create a Turing machine to recognize string of the form 0^n1^n2^n. This means that if the string is of the correct form, the Turing machine stops on a blank tape, while ...
0
votes
1answer
79 views
Does this proof really prove undecidability of halting?
I want to ask a couple questions about the following proof. The proof originally came from a textbook and then a question on stackoverflow below.
How does this proof, that the halting problem is ...
0
votes
2answers
112 views
turing computable function
Here are few True False questions: Somebody please answer these:
Let F(0) = 1, and let F(n) = 2^F(n-1) for n>0.
Then Is F Turing-Computable?
No language which has an ambiguous context-free grammar ...
0
votes
1answer
60 views
L = {T | T is a turing machine that recognizes {00, 01}} Prove L is undecidable
L = {<T> | T is a turing machine that recognizes {00, 01}}
Prove L is undecidable.
I am really having difficulties even understanding the reduction to use here.
I'm not asking for free lunch, ...
0
votes
0answers
262 views
Turing Machine Binary Multiplication using Jflap
Hey there everybody,
I'd like to know if any of you have a turing machine multiplicator, that uses a binary already made. I'm studying the algorithm and I was told that this program can really help ...
-1
votes
1answer
151 views
Designing a turing machine
I need help designing a turing machine that will compute the following f(x) = x mod 3. I just need help getting started since I am not familiar on how to approach this problem
0
votes
1answer
97 views
Non Context Free languages, what are they?
I'm having alot of trouble understanding non context free languages. Simply put, are they recursively enumerable? As in, can a turing machine be used to represent a non context free language? Is it ...
1
vote
1answer
301 views
I do not understand the concept of Non Deterministic Turing Machine [closed]
I do not the understand the concept of Non Deterministic Turing Machine. I guess I understand the term Non deterministic algorithm : (nondeterministic algorithm is an algorithm that can exhibit ...
1
vote
2answers
85 views
Turing machine - more 0 or 1?
let's say we have a tape of:
xx01101011xx
(x is an empty character).
Could you give me an idea of an algorithm, that would say whether there's more 0 or 1?
I heard about "pairing" method, but I have ...
0
votes
0answers
69 views
Designing a Turing-machine which halts
I am asked to design a turing-machine (the oldschool way using states and an explicit delta-function). Requirement is: Input is epsilon (infinite number of "blank" symbols) on which the TM should ...
1
vote
1answer
277 views
The complexity of Euclid's greatest common divisor algorithm on a Turing Machine
Consider this implementation of Euclid's algorithm:
function gcd(a, b)
while b ≠ 0
t := b
b := a mod b
a := t
return a
A nice proof on wikipedia shows that the ...
2
votes
1answer
119 views
Memory leak in a Turing machine, compiled by Free Pascal [closed]
I programmed a Turing machine in Pascal using the Free Pascal compiler version 2.6.0 on a Windows Vista laptop. After compiling and testing the results, I used the 'heaptrc' unit to detect some memory ...
0
votes
0answers
118 views
On-line simulation of a two-head tape Turing machine using single-head tape(s)
I have a question and I haven't been able to figure out the answer yet. I need to do the on-line simulation of a two-head tape Turing machine using single-head tape(s). I've found some online articles ...
1
vote
1answer
2k views
Finite automata, Pushdown automata and Turing machine examples
I'm looking for some good source of Finite automata, pushdown automata and Turing machine tasks examples (for solving manually, by hand).
I was searching around but didn't find nothing special so ...
2
votes
0answers
159 views
Is there any easy way of solving “Construct a Turing machine …” questions?
I understood the logic of Turing machine. When the Turing machine is given ,
i can understand how it is working and how it halts. But when it is asked to
construct a Turing machine , it is more ...
1
vote
1answer
113 views
is it possible to build a turing machine that programs a given API?
I was wondering, is it possible to define an API and give it as an input to a TM turing machine and the output will be the code in c or any other natural/programming language?
I guess not but how do ...
2
votes
1answer
97 views
Equivalence of models of computation
I'm seeking explanation on how one could prove that models of computation are equivalent. I have been reading books on the subject except that equivalence proves are omitted. I have a basic idea about ...
1
vote
0answers
53 views
proving a 3CNF related prob. is in P [closed]
I need help proving that this problem is decidable in polynomial-time:
Input: a 3CNF formula with more than one clause.
Question: can the formula be divided into two satisfiable 3CNF formulas ?
...
2
votes
1answer
194 views
What are all known languages that Turing machines cannot accept?
For example, the language of Turing machines that do not accept their own encoding cannot be accepted by any Turing machine.
6
votes
3answers
165 views
Does a turing machine have the concept of 'time'?
I've studied the basic turing machine theory as an undergraduate. I never saw any mention of a timed turing maching. An example: a turing machine that counts the number of seconds passed since it ...
1
vote
1answer
542 views
Universal turing machine examples
I'm looking for a well explained implementation of a universal turing machine, using a binary alphabet. Particularly, I'm looking for an action table for such a UTM with explanations. Can anyone point ...
0
votes
0answers
162 views
Draw the transition diagram of a Turing machine
I have a problem with Turing machine right now,please help:
Draw the transition diagram of a Turing machine computing the following subtraction on natural numbers:
(m,n) |-> m-n if m>= n,
...
-6
votes
2answers
599 views
Turing Machine Simulator
I need to design a Turing Machine Simulator in C++ that takes in an input file that goes something like this:
Q:q1,q2,q3,q4
A:0,1
Z:0,1,x
T:q1,0,q2,x,R
T:q1,1,q2,x,R
T:q2,0,q2,0,R
...
S:q1
F:q3,q4
...
1
vote
0answers
273 views
Turing Machine Diagram
I have a final coming up on Monday and was given this as an example of problem types for the exam. I was hoping someone could help me out with a diagram, with some pointers, or with anything relevant.
...
1
vote
1answer
243 views
Turing Machines and Finite Tape
Stupid question: if a turing machine uses a finite amount of tape on a string, it must halt on that string, correct?
Likewise, if a turing machine uses an infinite amount of tape on a string, it does ...


