Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
18answers
8k views

Good way to learn Scala?

I've recently become interested in learning Scala, my first thought was a simple compiler, but I don't have very good knowledge of Automata theory. So my question is: what's a good project or ...
22
votes
10answers
1k views

Is it possible for a computer to “learn” a regular expression by user-provided examples?

Is it possible for a computer to "learn" a regular expression by user-provided examples? To clarify: I do not want to learn regular expressions. I want to create a program which "learns" a regular ...
18
votes
14answers
2k views

Code Golf: Automata

I made the ultimate laugh generator using these rules. Can you implement it in your favorite language in a clever manner? Rules: On every iteration, the following transformations occur. H -> ...
14
votes
9answers
769 views

Is Automata Theory dead? [closed]

I loved the course I took in Automata Theory and Formal Languages, so naturally I started looking around the interwebs to learn what happened since the time the books on which the course was based ...
12
votes
4answers
380 views

Is there a good digraph layout library callable from C++?

The digraphs represent finite automata. Up until now my test program has been writing out dot files for testing. This is pretty good both for regression testing (keep the verified output files in ...
10
votes
6answers
1k views

Advanced Formal logic / Automata Theory textbook

I know this is more a Math/Formal Language/Automata/Computer science question than an a programming one, but I hope I can get some advice on a comprehensible textbook (not an indecipherable monograph) ...
9
votes
2answers
904 views

How should Chomsky's Hierarchy and Turing Machines influence language design?

I'm currently studying for a discrete mathematics test in which we are learning Chomsky's hierarchy and the type of automatas that recognize each level of the hierarchy. I'm being taught that most ...
8
votes
4answers
4k views

Regular vs Context Free Grammars

I'm studying for my Computing languages test and there's one idea I'm having problems wrapping my head around. I understand that Regular Grammars are simpler and cannot contain ambiguity but can't do ...
7
votes
1answer
153 views

What's the proper grammar for this language?

I have this language: {an bm | m+n is an even number} What's the proper grammar for this?
6
votes
1answer
709 views

Context Free Language Question (Pumping Lemma)

I know this isn't directly related to programming, but I was wondering if anyone know how to apply the pumping lemma to the following proof: Show that L={(a^n)(b^n)(c^m) : n!=m} is not a context ...
5
votes
1answer
121 views

Regular Language (yes or no)

I was given the task to check whether this language is regular: L = {w∈{a,b,c}* | where the number of a is less than the number of b+c.} I can find neither a regular expression for this, nor a ...
5
votes
2answers
467 views

Testing intersection of two regular languages

I want to test whether two languages have a string in common. Both of these languages are from a subset of regular languages described below and I only need to know whether there exists a string in ...
4
votes
5answers
851 views

Design Pattern problem involving N states and transitions between them

I have a problem at hand and I am not getting which design pattern to use. The problem goes as such: I have to build a system which has 'N' states and my system has to do a transition from any state ...
4
votes
2answers
273 views

Can I Determine the Set of First Chars Matched by Regex Pattern?

I would like to be able to compute the set of all characters which may be matched as the first character in a string by a given instance of java.util.regex.Pattern. More formally, given the DFA ...
3
votes
1answer
1k views

NFA/DFA implementation in C#

Good night, Does anyone know of any good NFA and DFA implementation in C#, possibly implementing as well conversions between both? What I would like would be to be able to construct a NFA and then ...
3
votes
4answers
387 views

Levenshtein DFA in .NET

Good afternoon, Does anyone know of an "out-of-the-box" implementation of Levenshtein DFA (deterministic finite automata) in .NET (or easily translatable to it)? I have a very big dictionary with ...
3
votes
1answer
153 views

Syntax for Describing DFA or NFA

Do there exists any Standard Syntax for Describing the Transition Table for an NFA or DFA ?
3
votes
2answers
574 views

What are the useful limits of Linear Bounded Automata compared to Turing Machines?

There are languages that a Turing machine can handle that an LBA can't, but are there any useful, practical problems that LBAs can't solve but TMs can? An LBA is just a Turing machine with a finite ...
3
votes
4answers
116 views

Making an index for a search by PHP

How can you search only unique words with PHP such that I can learn the basics in making the search? I have had a few problems in making a multidimensional array for questions. My first unsuccessful ...
2
votes
2answers
47 views

Wa-Tor like cellular automata. In which order should the cells be updated?

Some time ago I've written a Wa-Tor like cellular automata (see Wikipedia) but with a few more species and a little smarter species. Except for a lot of fine tuning to get a stable system it was quite ...
2
votes
2answers
100 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 ...
2
votes
1answer
85 views

Finding regular expressions for languages otherwise described

Letting {a b} be the alphabet set, write a regular expression for: 1) The language of all those words in which the number of a's and the number of b's are both odd; 2) The language of all those ...
2
votes
3answers
102 views

Reachability analysis of a vertex in a graph, using Cellular Automata

Testing reachability of a node in a graph (directed), can be done using cellualr Automata? Actually what's in mind, is to implement an algorithm that checks reachability of a nod from a specified ...
2
votes
3answers
220 views

Fixing unescaped XML entities in Java with Regex?

I have some badly formatted XML that I must parse. Fixing the problem upstream is not possible. The (current) problem is that ampersand characters are not always escaped properly, so I need to ...
2
votes
2answers
98 views

If a language (L) is recognized by an n-state NFA, can it also be recognized by a DFA with no more than 2^n states?

I'm thinking so, because the upper bound would be the 2^n, and given that these are both finite machines, the intersection for both the n-state NFA and the DFA with 2^n or less states will be valid. ...
2
votes
3answers
668 views

Best Self-Learning Books for Finite Automata

I need a Finite Automata Book Full of Examples that I can learn by me self and I can use to prepare for Exams.
2
votes
2answers
438 views

Regular expression to match string of 0's and 1's without '011' substring

I'm working on a problem (from Introduction to Automata Theory, Languages and Computer by Hopcroft, Motwani and Ullman) to write a regular expression that defines a language consisting of all strings ...
2
votes
2answers
2k views

Convert regular expression to CFG

How can I convert some regular language to its equivalent Context Free Grammar? Is it necessary to construct the DFA corresponding to that regular expression or is there some rule for such a ...
2
votes
2answers
1k views

Designing a Turing Machine's state table

Are they any helpful guidelines to describing what a Turing machine does if you already have the pseudo code for the algorithm? I'm taking a course on complexity theory and it takes me a while to ...
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 ...
2
votes
4answers
826 views

Automata Theory books [closed]

Please suggest me some good books on "Formal languages and Automata Theory". Thanks!
2
votes
3answers
1k views

How can I construct a grammar that generates this language?

I'm studying for a finite automata & grammars test and I'm stuck with this question: Construct a grammar that generates L: L = {a^n b^m c^m+n|n>=0, m>=0} I believe my productions should ...
1
vote
1answer
33 views

Application of Brzozowski Algebraic Method on this FA

Earlier, I asked a question on here asking for help with the conversion of a transition-graph of a finite automaton into a regular expression: Understanding (and forming) the regular expression of ...
1
vote
2answers
49 views

Understanding (and forming) the regular expression of this finite automaton

For the above automaton, the regular expression that has been given in my textbook is the following : a*(a*ba*ba*ba*)*(a+a*ba*ba*ba*) I am having trouble deriving this...the following is my ...
1
vote
1answer
24 views

What type of languages are accepted by a PDA in which stack size is limited?

What type of languages are accepted by a PDA in which stack size is limited, let's say 20 items? In my view it should still be CFL. Because there is a temporary memory to store.
1
vote
1answer
198 views

Context free grammar for this language

I'm working on some test preparation material and stuck on this problem. Show a context free grammar for L = {w e {a,b}*: w = wR and every a is immediately followed by a b}. wR is w in reverse. So, ...
1
vote
1answer
299 views

Constructing a Regular Expression from a Finite Automata

I'm trying to construct a regular expression from a Finite Automaton but found my self completely stuck with this one. The regex to use is like this: ? = 0 or 1 * = 0 or more += 1 or more | = or _ = ...
1
vote
1answer
110 views

Having some kind of XML/Json file to compile into Graphiz / Finite State Automaton. Any suggestions?

I have a task where I need to take some existing pictures[ which show some automata (DFA, NFA, Turing machines)] and somehow convert them into a format, which enables me to use the data to represent ...
1
vote
2answers
130 views

Provide me with recources on Greibach & Chomsky Normal Form

first please (bare with me)... :-( Im having a course at University ( Theory of Computation ) at first it was easy and simple BUT then we reach the context free grammer specialy the part where we ...
1
vote
4answers
350 views

Using finite automata as keys to a container

I have a problem where I really need to be able to use finite automata as the keys to an associative container. Each key should actually represent an equivalence class of automata, so that when I ...
1
vote
1answer
149 views

Cellular Automaton on WPF

currently im taking a Master degree course in Computer Sciences, and i´d like to implement a Cellular Automata in WPF. The rendering performance must be enough to display a lattice (grid) containing ...
0
votes
1answer
31 views

How to draw automata?

I am doing some kind of composition of automata. So I want to visualize/ draw the composed automata for more clarity. I have done the coding in java. So can anyone suggest any library or tool which ...
0
votes
1answer
42 views

prooving that a language of form 0^n where n is prime is neither regular nor context free

I am thinking on this for quite long,but still hasn't been able to go far on it. The first step is easy considering any language of form o^M where M is a prime greater than what our opponent has ...
0
votes
0answers
32 views

Push Down Automata

designing a pushdown automata for the language a^n b c^n+2, n>0 I have been asked to implement the automata for the above language .. please help? I tried popping a 2 (c)s everytime I push an (a) on ...
0
votes
0answers
63 views

converting DFA to regular expressions using kleene closure algorithm

i am working on converting finite automata to regular expression using the kleene closure algorithm and implementation is in java. i am getting confuse to implement that. any specific site to follow ...
0
votes
1answer
52 views

context free grammar to a PDA, am i correct?

Im reviewing for my midterm and wanted to post this to see if anyone can spot any errors. Im supposed to make a PDA that recognizes this CFG: heres my solution (note, im aware I forgot to draw ...
0
votes
2answers
224 views

How to convert NFA/DFA to java?

I have a scenario where i have designed the NFA and using JFLAP i have converted it to DFA. I need to know, how i can code it using java? Basically how to implement those state transitions in java. ...
0
votes
0answers
39 views

For what I have to give precedence? (no.of.states) or (modularity<->readability)?

As I stated in this question, I am using DFA to trace all comments,strings etc. And I finished this DFA with 11 states. Now I am about to write DFA to recognize keywords in java. Idea: Initially, ...
0
votes
1answer
106 views

How to show that addition is primitive recursive?

How do i show in an example with numbers that addition is primitve recursive. I understand why it is primitive recursive through the proof but I just can't imagine how it works primitive recursively ...
0
votes
1answer
98 views

proof regarding the CFLs using pumping lemma

Can anyone give me the proof that this language: {a^i b^j c^k | 0 =< i =< j =< k} is not a context free language by using pumping lemma for CFLs.

1 2