An NFA is a nondeterministic finite automaton, a mathematical model of computation that decides membership in regular languages.

learn more… | top users | synonyms

1
vote
1answer
39 views

what is glushkov NFA. What is the difference between Glushkov NFA and Thompson NFA?

I saw this term "Glushkov NFA" at http://lambda-the-ultimate.org/node/2064 . Search engines are returning references to articles that use glushkov nfa, but nothing specific about the glushkov nfa ...
0
votes
1answer
70 views

Regular expression to NFA [A-E]|[A-E] [A-E] [A-E]|[A-E][A-E][A-E] [A-E]

I have this regular expression [A-E]|[A-E]{3}|[A-E]{4} [A-E]|[A-E] [A-E] [A-E]|[A-E][A-E][A-E] [A-E] it recognizes strings of A,B, ABC, BCD, BCDE, etc. I want to construct the NFA but have no ...
0
votes
0answers
23 views

Determine that the languages accepted by two NFA's are same or not

I have two NFA's. I need to determine whether both recognize the same language I would be much obliged if anyone could be so kind enough to explain how to do this.
-1
votes
1answer
26 views

Determine that the languages accepted by two finite automata are same or not [closed]

I have two DFA's.I want to determine that the languages accepted by those finite automata are same or not.I would be much obliged if anyone could be so kind enough to explain how to do this.Thanx.
0
votes
0answers
155 views

Converting NFA to Regular Expression

I just wrote a code to convert NFA to regular expression but the problem is the answer is not optimized. for ex: c* (a+b)(e)* (e) + c* (a+b) is and answer given by my code,I want to know if there's an ...
2
votes
3answers
113 views

Ambiguity in transition

I have made DFA from a given regular expression to match the test string. There are some cases in which .* occurs. ( for example .*ab ) . Let say now the machine is in state 1. In the DFA, .* refers ...
0
votes
0answers
62 views

trying to skip states with abreviations

I'm trying to use abreviations in this nfa to go from one state to another. NFA is defined as nfa = NFA( start = 0, finals = [6], abrs = {1:5, 3:5}, edges=[ (0,'h', 1), (1,'a', 2), (2,'z', 3), ...
0
votes
1answer
76 views

Abreviations in a NFA, python

I'm trying to create a method were abreviations skips from one point to another. I've created a NFA with the current edges EDGES = [ (0, 'h', 1), (1,'a',2), (2,'z', 3), (3,'a',4), (4, 'r', 5), ...
1
vote
2answers
475 views

Converting NFA to DFA

I'm having trouble understanding how to convert. If 2 gets an input of 'a' would it become (1,4) or (1,2,4) because of the empty string? Thanks!
3
votes
2answers
333 views

Finding the complement of a DFA?

I am asked to show DFA diagram and RegEx for the complement of the RegEx (00+1)*. In the previous problem I had to prove that the complement of a DFA is closed and is a regular expression also, so I ...
-1
votes
1answer
148 views

How to convert a context free grammar (could generate regular language) to a right-linear grammar [closed]

The context free grammar: (e represents epsilon) S --> aSb|aSa|bSa|bSb|e It could generate regular language which means it can be converted to a right linear grammar. Is there a general rule ...
0
votes
1answer
70 views

how NFA implement negate regex

I try to use NFA to implement a negate regex. I know that NFA can easily combine regex like ab a|b and a* and the variety [ab] can convert to a|b but how can I convert [^ab] to a NFA fragment?
2
votes
1answer
131 views

NFA to an RE Kleene's Theorem

Here is my NFA: Here is my attempt. Create new start and final nodes Next eliminate the 2nd node from the left which gives me ab Next eliminate the 2nd node from the right which gives me ab*a ...
-1
votes
2answers
157 views

How can I tell a regular language?

As we know, using pumping lemma, we can easily prove the language L = {WW|W ∈ {a,b}*} is not a regular language. However, The language, L1 = {W1W2| |W1| = |W2|} is a regular language. Because we can ...
1
vote
3answers
193 views

Why L={wxw^R| w, x belongs to {a,b}^+ } is a regular language

Using pumping lemma, we can easily prove that the language L1 = {WcW^R|W ∈ {a,b}*} is not a regular language. (the alphabet is {a,b,c}; W^R represents the reverse string W) However, If we replace ...
2
votes
2answers
252 views

How to convert an NFA to the correspondin Regular Expression?

I am studying for tomorrows exam and I have checked many tutorials telling how to convert NFA to Regex but I can't seem to confirm my answers. Following the tutorials, I solved that NFA My solution ...
0
votes
0answers
186 views

Nondeterministic finite automata implementation on multimap

I try to implement NFA builder in C++. Transitions should be in multimap. I know what a function to use, but do not know how they should look in c++ implementation. Did anybody help complete it? ...
1
vote
1answer
791 views

drawing minmal DFA for the given regular expression

What is the direct and easy approach to draw minimal DFA, that accepts the same language as of given Regular Expression(RE). I know it can be done by: Regex ---to----► NFA ---to-----► DFA ...
0
votes
1answer
115 views

Designing nfa that accepts couple of strings

I need help designing an nfa that accepts the words "hello","hello world" and "stay together" the alphabet includes the english alphabet,numbers and symbols. I need help getting started. Anyone has ...
4
votes
2answers
224 views

Efficient (basic) regular expression implementation for streaming data

I'm looking for an implementation of regular expression matching that operates on a stream of data -- i.e., it has an API that allows a user to pass in one character at a time and report when a match ...
1
vote
3answers
213 views

Prolog query infinite search

I am a beginner to Prolog and I would like to ask a question about Prolog. My program is based on non-deterministic finite-state automaton. the start state is S0 and the final state is S3. The ...
2
votes
1answer
376 views

Accept a regular expression and produce an NFA (Java)

I am trying to write a program that will accept a string that describes a regular expression. For instance: 10(0U1)* Where the U is the union operator and the * is the Kleene star (we also see ...
1
vote
1answer
133 views

How does flex match the beginning of line anchor?

I've always wondered how the beginning of input anchor (^) was converted to a FSA in flex. I know that the end of line anchor ($) is matched by the expression r/\n where r is the expression to match. ...
1
vote
1answer
973 views

Pseudocode for converting NFA to DFA

as the title suggests I want somebody to help me in coding the conversion of NFA to DFA . I need the pseudocode only . I have tried searching using Google , and I found the whole source code even , ...
1
vote
0answers
113 views

Cost in time for constructing and running an NFA vs DFA for a given regex

I'm going through past exams and keep coming across questions that I can't find an answer for in textbooks or on google, so any help would be much appreciated. The question I'm having problems with ...
2
votes
1answer
2k views

Steps to creating an NFA from a regular expression

I'm having issues 'describing each step' when creating an NFA from a regular expression. The question is as follows: Convert the following regular expression to a non-deterministic finite-state ...
0
votes
1answer
227 views

DFA and NFA equivalent language

I'm asked to build a DFA A and NFA B such that L(D) = L(N) with some specific conditions. I'm not asking for solutions or answers; I just wanted to make sure I have the right method to attack this ...
2
votes
3answers
673 views

DFA minimization

I have a question about DFA minimization. So I've used very well known techniques to convert regular expression into NFA and then construct DFA from it, using goto / closure algorithm. Now the ...
1
vote
2answers
495 views

Modeling DFA and NFA using HashMap Implementation

I have to implement the following operations over automata in Java: Concatenation Kleene Star Union Intersection Those operations are easier if the automaton is an NFA. I liked the implementation ...
1
vote
1answer
168 views

Converting RE to NFA

Which one is the correct way to show a RE union 0+1? I saw this two ways but I think both are correct. If both are correct why to complicate things?
1
vote
2answers
535 views

NFA to DFA conversion

When we converting from nfa to dfa there may be result like the image below... My question is, is it necessary to write that from state {4} it's going to Zero state? I mean that without showing the ...
1
vote
1answer
313 views

Converting dot-star regular expression into NFA

I'm converting a given set of regular expressions into a single NFA, but I'm having some issues. How should I convert a regular expression such as "ab.*c" (representing matching an 'a', a 'b', any ...
1
vote
1answer
259 views

Why does my c++ program crashes at with a particular input?

For some days I'm trying to do a program for simulate a nondeterministic finite automaton (NFA), more specifically, a string recognizer. After several failures, thanks to the user Konrad Rudolph, I ...
4
votes
3answers
2k views

Design a nondeterministic finite automata in c++ (incorrect output)

I am doing an assignment for simulate a nondeterministic finite automaton, just as I explain in this post. I have this input read from the file tarea4.in: 1 6 8 0 2 2 5 0 0 a 0 1 a 1 1 b 1 2 c 1 3 c ...
0
votes
1answer
100 views

C library for plotting DFA's, NFA's

Any lightweight C libraries out there for plotting machines? I did a search but, all of the libraries I found are not task-specific, they are heavy. I need a lightweight library for plotting machines. ...
1
vote
2answers
374 views

regex - At most two pair of consecutives

I'm taking a computation course which also teaches about regular expressions. There is a difficult question that I cannot answer. Find a regular expression for the language that accepts words that ...
1
vote
2answers
652 views

How can I prove if this language is regular or not?

How can I prove if this language is regular or not? L = {an bn: n≥1} union {an bn+2: n≥1}
26
votes
1answer
457 views

Library to check if two regular expressions are equal/isomorphic

I need a library which will take in two regular expressions and determine whether they are isomorphic (i.e. match exactly the same set of strings or not) For example a|b is isomorphic to [ab] As I ...
5
votes
1answer
244 views

Is there an efficient algorithm to decide whether the language accepted by one NFA is a superset of the language accepted by another?

Given two nondeterministic finite automata M1 and M2, is there an efficient algorithm to determine whether the language accepted by M1 is a superset of the language accepted by M2?
6
votes
1answer
406 views

Regular expression that generates a DFA with dead or superfluous states

I'm looking to implement a DFA minimizer in my lexer, but I can't seem to produce a DFA that doesn't look like it's already the minimal DFA for the expression. I'm constructing the DFA from a NFA ...
2
votes
2answers
233 views

How to implement a NFA or DFA based regexp matching algorithm to find all matches?

The matches can be overlapped. But if multiple matches are found starting from a same position, pick the short one. For example, to find regexp parttern "a.*d" in a string "abcabdcd", the answer ...
6
votes
1answer
3k views

How to convert NFA to Regular Expression

I knew that converting a regular expression to a NFA, there is a algorithm. But I was wondering if there is a algorithm to convert a NFA to regular expression. If there is, what is it? And if there ...
5
votes
1answer
281 views

Representing graphs in clojure

I am trying to learn a bit of clojure by porting a toy NFA regexp matcher. Obviously my main issue is representing and manipulating graphs. I hit a working solution, but my implementation (using ...
0
votes
1answer
208 views

How do we know that an NFA has a minimum amount of states?

Is there some kind of proof for this? How can we know that the current NFA has the minimum amount?
6
votes
1answer
654 views

NFA simulation in Java

I have been given an assignment to simulate an NFA in Java. Now the following regular expression that I have to simulate an NFA for is ab*((b|d)|c*) I think I have too many e-symbols. I was just ...
3
votes
2answers
191 views

How to figure out if a regex implementation uses DFA or NFA?

I'm facing the question, whether a certain regex implementation is based on a DFA or NFA. What are the starting points for me to figure this out. One could also ask: What am I looking for? What are ...
1
vote
1answer
39 views

r* expression NFA

I have found this image, which represents r* expression NFA. My question is: there shouldn't be an arrow linking the second node to the third node? This way if I have a "rr" string, when the first ...
0
votes
1answer
292 views

How to determine if my NFA is correct?

The obvious choice is to exhaust all possible inputs. I think I did. But I am not very sure whether it's valid and I didn't break any rules of non-deterministic finite automata. My NFA is given by: ...
0
votes
1answer
272 views

How to convert (ab u aab u aba)* into a NFA?

(ab u aab u aba)* I did it but I would like some feedback on its correctness: If it is correct: Can we simplify (ab u aab u aba)* any further? If not: What did I miss? EDIT: It seems I am missing ...
2
votes
3answers
1k views

Advantages/Disadvantages of NFA over DFA and vice versa

What are the relative pro's and con's of both DFA's and NFA's when compared to each other? I know that DFA's are easier to implement than NFA's and that NFA's are slower to arrive at the accept state ...

1 2