In theoretical computer science, automata theory is the study of abstract 'mathematical' machines or systems and the computational problems that can be solved using these machines. These abstract machines are called automata. ("Automata", Wikipedia)

learn more… | top users | synonyms

-1
votes
0answers
23 views

Symbolic difference of two turing machines [closed]

What is symbolic difference of two turing machines? What does it refer to? If symbolic difference of two turing machine is possible to be found, what kind of result will we get?
0
votes
0answers
24 views

For a LR parser to accept string, must CFG have augmented grammar/epsilon production?

In the case of the CFG: S → E E → E + T |T T → a|(E) Can we make a LR parser with this grammar as it is? Or does it require adding a new start state (augmented grammar): S'→ S S → E E → ...
3
votes
5answers
103 views

Recognize A^n B^n language in Prolog with no arithmetics

How to recognize A^n B^n language in Prolog without arithmetics and for any A, B where A != B? With known A = a and B = b we could write % For each 'a' save 'b' in a list, then check % whether ...
3
votes
0answers
96 views

Why are there non-decidable languages? Can anyone explain me my book's solution? [closed]

In my book it is says that "there are non-decidable languages" And the proof is: Every algorithm is a word. Then there are only countable algorithms. But there are uncountable languages and ...
1
vote
1answer
41 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 ...
-6
votes
0answers
33 views

Show that the following is NP-complete [closed]

In a directed graph, the indegree of a node is the number of incoming edges and the outdegree is the number of outgoing edges. Show that the following problem is NP-complete. Given an undirected graph ...
3
votes
2answers
150 views

DFA to regular expression time complexity

I am looking at the time complexity analysis of converting DFAs to regular expressions in the "Introduction to the Automata Theory, Languages and Computation", 2nd edition, page 151, by Ullman et al. ...
0
votes
1answer
31 views

Representing automata in C++ for RSS Parser

I'm writing (or better, trying to begin) an RSS parser. This parser must be an automaton (more specific a DFA). How should I represent this automaton in C++ to be able to fetch RSS items from it, ...
1
vote
1answer
94 views

What is this grammar? Context-free or context sensitive

I am studying Formal Languages and Automata Theory, and I have a question about a problem inside the book that is not answered in it. the question is: Is this language Context Free, Regular or ...
1
vote
1answer
39 views

Can a Regular Language have a Linear Bounded Automaton

As the question states: I am trying to understand automata. Can every regular language have a linear bounded automaton?
0
votes
1answer
93 views

Python parser for Calculator [duplicate]

I am trying to write a parser which takes expressions as a input from file. expressions can be A=B=10 or B=(C-A)-4 etc. What i have tried so far is . I am reading a file IP.txt import re opert = ...
-2
votes
1answer
39 views

How to implement derivation of left quotient of a regular expression in .NET? (regular expressions theory)

Theory: e\x means that we try to construct from expression e a new expression without initial symbol x, provided that such expression exists. If it does not, the result is the empty set. Examples: ...
12
votes
2answers
201 views

Grammatical inference of regular expressions for given finite list of representative strings?

I'm working on analyzing a large public dataset with lots of verbose human-readable strings that were clearly generated by some regular (in the formal language theory sense) grammar. It's not too ...
3
votes
1answer
72 views

Formal approach for text processing

During a coding interview I was asked the next question: Write a program which counts the number of words and lines in the input stream. Assume you have a reader with method nextChar(). At ...
3
votes
2answers
160 views

Can someone help me with this proof using the pumping lemma?

I just started reading about the pumping lemma and know how to perform a few proofs, mostly by contradiction. It is only this particular question which I don't seem to find an answer for. I have no ...
0
votes
0answers
46 views

Understanding of Push down automata with a difference?

So I have been given the task of creating an PDA that recognises the language a^2n b^3n | n = 0,1,2...}. Am I right in thinking that it needs to have atleast 3 times number of b's than a's? So for ...
0
votes
0answers
27 views

Formal Language syntax

Here is the question: Show that: L = {0m1n, m > 1, n > 1, n < m } , where m & n are superscripts is not regular. I am not sure what superscripts mean in this situation? Does it mean ...
0
votes
0answers
67 views

Is The Following Language Regular? [closed]

Let L1 and L2 be 2 languages over the same alphabet Σ. Assume that L1 is regular and L2 is context-free. The language A(L1,L2): is always a regular language is always not a regular language can ...
0
votes
0answers
23 views

Why multi - single turing machines are same?

I saw the theorem Multi tape TM(turing machine) = Single-tape. How one single tape can simulate multi-tape ? Can I get some brief explanation about this ?
1
vote
2answers
485 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
343 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 ...
0
votes
1answer
101 views

Pushdown Automata definition

I am quite confused about formal description of PDA (push down automata) If we write down L(M), this means that PDA M recognizes language L, correct ? then , L(M)* means that PDA M recognizes that ...
1
vote
2answers
146 views

CFG to regular expression

Here is the grammar, S -> A | B A -> 0000A | epsilon B -> 000B | epsilon I thought the regular expression for above is 0000(0000)*000(000)* // because 0000 and 000 will be spotted ...
1
vote
1answer
81 views

Example of Semi-Regular Grammar who's language is NOT regular

A "semi-regular" grammar is one that only allows rules of the form: X → y X → y Y X → Y y where X and Y are any single non-terminals, and x and y are any single terminals. For example, this is a ...
3
votes
2answers
76 views

“Untranslatable” Grammars to Regular Expression

Are there such things? Like for example, S -> aSb | ^ (possible words: ^, ab, aabb, aaabbb, aaaabbbb, ...) From what I've learned, the only regex that closely match the said grammar is: a*b* But ...
1
vote
2answers
139 views

Combining deterministic finite automata

I'm really new to this stuff so I apologize for the noobishness here. construct a Deterministic Finite Automaton DFA recognizing the following language: L= { w : w has at least two a's and an ...
-1
votes
1answer
15 views

Theoretical CompSci languages [closed]

Speaking in terms of automata and regular languages, how would it be possible for a string of 2 to equal a string of 3? {w ɛ Σ* : ww = www} The only thing I can think of is w = abab, ww = abababab, ...
1
vote
1answer
57 views

Writing a regular expressions that do not match a certain pattern

If I wanted to match all strings that do not contain "01" from any combinations of 1's and 0's how can I do this? I know how to find if this pattern IS in the string, but how can I find matches that ...
1
vote
1answer
140 views

Kripke structure

What is a (pseudocode) algorithm for checking invariant over Kripke structures, such that in case the invariant is violated, the counterexample returned by the algorithm is of minimal length?
0
votes
1answer
66 views

Is null string allowed for w, if “w ∈ {a, b}*”?

If L is a language defined by : L = { awa | w ∈ {a, b}* }, is aa a string of the language L? (notice that w is being null string here)
-1
votes
4answers
150 views

How to make regular expression to check if a particular string exist in a give string

I have the below mentioned string. ISA*ABC**TODAY*ALEXANDER GONZALEZ~HL*CDD*DKKD*S~EB*1*AKDK**DDJKJ~AAA*Y**50*P~AAA*N**50*P~AAA*N**63*C~AAA*N**50*D~AAA*N**45*D In the string there are segments. Each ...
1
vote
1answer
73 views

Is this a free context gramar language? [closed]

Is this a context free language? {a^(2k) b^n c^n : k >= 0 ∧ 0 <= n <= m} ∪ {a^(2k+1) b^n c^m :k >= 0 ∧ n >= m >= 0}
0
votes
1answer
56 views

Why is this not CFG?

Though this is a repitition of this, I talking in terms of designing a PDA. Now, I know I'm wrong, because this is a well publicised example, but where did I go wrong in the PDA design below? I want ...
1
vote
1answer
59 views

How to create a union of FSTs from an FST archive (FAR)?

I currently have a (natural language) corpus, and these are the steps already taken: Generated the symbol table after concatenating the corpus into one big file: $ ngramsymbols <corpus.txt ...
-1
votes
1answer
117 views

Pumping lemma for CFL [closed]

I need some help with the following question: One of the languages is context-free and the other is not. Build a context-free grammar for the one that is. For the other one provide a proof that it ...
0
votes
0answers
98 views

Pumping lemma - Choosing the right string to pump

I have a problem finding the right string to pump for the following language: Which string should I choose to pump ? The problem is that I don't know how to handle the fact that I have p+q and q+r ...
0
votes
1answer
147 views

Deciding if a given Language is Regular/Context-Free/Non Context-Free

I need some help with deciding if a given language is regular, context-free or not context-free. A brief, informal explanation is sufficient in the answer, hence no need to use pumping lemma. Lets ...
2
votes
3answers
291 views

What will be the DFA for the regular expression 0(0+1)*0+1(0+1)*1?

This is the DFA i have drawn- Is it correct? I am confused because q4 state has 2 different transitions for same input symbol which violates the rule of DFA, but I can't think of any other ...
1
vote
1answer
134 views

Can someone give a simple but non-toy example of a context-sensitive grammar? [closed]

I'm trying to understand context-sensitive grammars, and I understand why languages like {ww | w is a string} {an bn cn | a,b,c are symbols} are not context free, but what I'd like to ...
0
votes
1answer
114 views

Queue automaton \= pushdown automaton: proof [closed]

How can I show (prove) that a queue automaton is not equal in power to a pushdown automaton in general?
0
votes
0answers
187 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
votes
2answers
104 views

read Grammar from file and store in an array in C#

Still new to C# so be nice :) S -> NP VP S -> Aux NP VP NP -> Proper-Noun NP -> Nominal Nominal -> Noun Nominal -> Nominal Noun Nominal -> Nominal PP VP -> Verb NP VP -> ...
0
votes
0answers
82 views

store automata Grammar productions storage [closed]

Still new to C# so be nice :) any way of storage of following productions in a table using c# can access easily for usage.. S -> NP VP S -> Aux NP VP NP -> Proper-Noun NP -> Nominal ...
0
votes
1answer
134 views

How to solve δ(A,01) for this DFA?

Consider the DFA : What will be δ(A,01) equal to ? options: A) {D} B) {C,D} C) {B,C,D} D) {A,B,C,D} The correct answer is option B) but I don't get how. Please some one explain ...
0
votes
1answer
94 views

automata: using only Equivalence class to proove regularity

I have tried to go about this problem in several ways, and looked in several places with no answer. the question is as follow: [Question] Given two regular languages (may be referred to as finitely ...
0
votes
2answers
506 views

Can a DFA have epsilon/lambda transitions?

Can´t find anything affirmative about it. And a NFA with any epsilon transition is a epsilon-NFA ? Thanks.
1
vote
2answers
121 views

Matching a string with a regex in Java

I have a DFA but I don't know whether it's accepting states. I only know the regular expression that it accepts. I'm trying to find whether it's accepting states, so I looked into each state of the ...
1
vote
0answers
471 views

DFA Minimization by Hopcroft algorithm [closed]

P := {F, Q \ F}; W := {F}; while (W is not empty) do choose and remove a set A from W for each c in ∑ do let X be the set of states for which a transition on c leads to a state in ...
0
votes
0answers
46 views

How to handle arrays minimizing a transition graph

Im trying to write a program that minimizes a Transition Graph (its basically combining states with similar numbers). Basically, the algorithm is to first find states with the same 'a' and 'b' inputs, ...
0
votes
2answers
208 views

FInite automata to regular expression clarification

Can you check on this: https://dl.dropbox.com/u/25439537/finite%20automata.png This is a checked homework, so don't worry. I just want to clarify whether my answer is correct or not, because it is ...

1 2 3