Tagged Questions

2
votes
2answers
38 views

Computability: Is the language of DFAs that receive even-length words in P?

I've been struggling with this one for a while and am not able to come up with anything. Any pointers would be really appreciated. The problem is: given the language of all DFAs that receive only ...
2
votes
3answers
796 views

questions on nfa and dfa

Hope you help me with this one.... I have a main question which is ''how to judge whether a regular expression will be accepted by NFA and/or DFA? For eg. My question says that which of the regular ...
2
votes
2answers
256 views

Modelling a Finite Deterministic Automaton via this data *Edit with new code*

I have this input file: 2 3 2 1 ab 1 0 2 0 2 0 2 0 3 abaa aab aba 3 3 2 ade 0 1 2 1 2 0 2 1 0 1 2 2 2 a de The first line represents the number of test cases. Each test case starts with 3 ...
1
vote
1answer
346 views

Using Closure Properties to prove Regularity

Here's a homework problem: Is L_4 Regular? Let L_4 = L*, where L={0^i1^i | i>=1}. I know L is non-regular and I know that Kleene Star is a closed operation, so my assumption is that L_4 is ...
1
vote
2answers
202 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
130 views

Creating an Exclusive Or from two Deterministic Finite Automatons (Deterministic Finite-State Machines)

Two DFAs (Deterministic Finite Automaton or Deterministic Fininte-State Machines - Which will be called DFAs from here on) Defined over the set DFA 1: L1 = {Q1, E, D1, s1, F} DFA 2: L2 = {Q2, E, D2, ...
0
votes
1answer
364 views

NFA to DFA conversion whose language is the complement of L(A)

Can someone please help me with this question? Describe an algorithm that converts an NFA into a DFA whose language is the complement of L(A). The complement should be taken with respect to the ...
0
votes
2answers
316 views

what is the McNaughton-Yamada Algorithm?

I am needing to construct a DFA using the McNaughton-Yamada algorithm for a CS class. The problem is the algorithm is supplemental material and I am not clear on what it is exactly. Is it a method for ...
-1
votes
1answer
94 views

Can below problem be solved using a dfa?

Find an nfa that accepts {a}* and is such that if in its transition graph a single edge is removed without any other changes, the resulting automaton accepts {a}.
-2
votes
0answers
52 views

Ocaml: do NFA to DFA automata algorithm [closed]

I'm kind a newer in Ocaml, and iḿ trying making a work for Theory of COmputation. The main problem is: Receive an NFA automata and pass it to DFA automata; I'm thinking using list, i don't know ...