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 ...
2
votes
1answer
110 views

Transition Graph per alphabet?

How do you determine how many different Transition Graphs are over a particular alphabet? For example How many TG's are over the alphabet {x, y}. I am taking a class with a similar question from ...
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
97 views

A square root computing turing machine [closed]

I think i am close to this answer but still to confirm can we create a turing machine(At least in Principle) which can work on real number computation and give exact results?**For example finding ...
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
2answers
196 views

Minimum number of states needed?

Definition of a language L with alphabet { a } is given as following L = { ank | k > 0 ; and n is a positive integer constant } What is the number of states needed in a DFA to recognize L? In my ...
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 ...
0
votes
2answers
56 views

Minimum number of states in a DFA having '1' as the 5th symbol from right

What is the minimum number of states needed in a DFA to accept the strings having '1' as 5th symbol from right? Strings are defined over the alphabet {0,1}.
0
votes
2answers
465 views

Real world uses of DFA,NFA,PDA and Turing machines

I am now taking a course on Theory of Computation. I can understand the concepts well. I can able to solve the problems. And, when I asked my instructor about the real world application, he told me ...