Tagged Questions

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 ...
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
129 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
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
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
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
791 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
2answers
1k views

How to create a turing machine that serves as function calculator for x^y

I'm studying for a test on turing machines, and I'm stuck with a problem in which I have to create a Turing Machine that serves as a function calculator for: f(x,y) = x ^ y I understand my tape ...
0
votes
2answers
25 views

Why is CYCLE in P?

Im going over an exam to prep for my final and why is CYCLE in P and not NP in part d? I know that by the definition a language is in NP if it is decided in polynomial time by a nondeterministic TM, ...
0
votes
1answer
50 views

proving a language is in NP/EXPTIME/Turing decider/turing recognizable (cs theory)

prepping for my cs theory exam by running through a practice test. I nthe problem, I need to state in which "zone" a language belongs to (RL/DFSA/NFSA)/(CFG/CFL/NPDA)/(NP)/(EXPTIME)/(DL/DTM/NDTM)/(TR) ...
0
votes
1answer
106 views

Turing Machine with non trivial states and transitions

Please give me some idea as to how to go about this Draw a Turing machine (using Sipser notation) having at least 4 nontrivial (i.e., nonrejecting) states and at least six nontrivial (i.e., not to ...
0
votes
1answer
128 views

Right Turing machine

I asked to check if Turing machine that can move only right (or stay) is equal to a standard Turing machine . I thought to copy the input to another tape, which unrestricted. but is it possible? ...
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
275 views

A Push Down Automata that produces the flip and reverse of a string

The alphabet: 0, 1 Consider a flip, to flip each character: 0 -> 1; 1 -> 0 So if w = 0011 then w-flip = 1100 Consider a reverse to be the characters in reversed order So if w = 01101 then w-reverse ...
0
votes
2answers
74 views

Two Different Grammars Over One Set of Outputs

Can you give me 2 different grammars which outputs the same set of words? Illustration: Given a grammar A and B over the alphabet {0,1}, if grammar A can produce the word 0101001, grammar B could as ...
0
votes
2answers
236 views

How to argue that if we could solve the halting problem, then we could solve busy beaver?

This is one of the tasks of my assignment. I have a Turing machine simulation which can simulate a busy beaver function. I have done some research about proving this problem, but still don't get it so ...