Tagged Questions

6
votes
3answers
1k views

NFA to DFA question

First, this is not a question asking for the algorithm to convert a NFA to DFA. It's known (and proved) that the equivalent DFA of a NFA has at most 2n states, even though most of the times it will ...
5
votes
4answers
745 views

Example problems not in P nor in NP-complete but in NP

I have a course called Algorithm Analysis at college, where we're currently studying the different complexity classes -- P, NP, NP-hard etc. We've already discussed NP-complete problems as the ...
3
votes
2answers
48 views

Regular Expression that matches based on differences in 1's in 0's in a binary string

So, it's finals time and I came across this problem in an old exam: Give a regular expression that denotes diff(x) where: - diff(x) is the number of 1's in x minus the number of 0's in x - 1 <= ...
3
votes
1answer
178 views

Is it possible to create an HTML quine?

Per the title, is it possible to create a (non-trivial) quine in HTML? My definition of an HTML quine: A non-trivial HTML quine is one that is not null and uses at least one HTML tag, under the ...
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 ...
2
votes
1answer
223 views

Key points and Importance of Decidability

A language is decidable If a TM recognises the language and goes into an Accept or Reject state. As a dev. I think this is important as it would mean we could determine if a program contains buffer ...
2
votes
3answers
233 views

Good resources to learn about models of computation?

Out of curiosity, I am trying to identify what model of computation a system I work with is functionally equivalent to, and prove the equivalence. The longer I spend on this problem the more I ...
1
vote
2answers
158 views

Understanding recognizers and deciders in Theory of Computation

I am having some trouble grasping what it means for a machine to recognize and decide a language. I think I'm close to the definitions but not right. When one says that a Turing Machine T recognizes ...
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
2answers
644 views

Pac-Man representation with Finite State Automaton

Consider a game similar to pac-mac that we want to represent it with an FSA graph. We have a maze (table) and there are berries into it in random positions. The goal is to eat all the berries in the ...