Tagged Questions
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 ...
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 ...
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 ...
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 ...
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
175 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
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 ...
0
votes
1answer
49 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
41 views
Interpreter between some language and a turing machine
I saw some time ago a script that, given a program in C, produced an analogous program "translated" in Python. I'm wondering if is there something similar that, given a program in, for example, ...
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 ...
0
votes
1answer
722 views
How to determine if a language is recursive or recursively enumerable?
I have to determine whether a language (for example L={a^n b^m c^s | 0<=n<=m<=s}) is regular, context-free, recursive, recursively enumerable or none of them.
I know how to determine if a ...
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
110 views
what practical proofs are there about the Turing completeness of neural nets? what nns can execute code/algorithms?
I'm interested in the computational power of neural nets. It is generally accepted that recurrent neural nets are Turing complete. Now I was searching for some papers which proofs this.
What I found ...
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 ...