Tagged Questions

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 ...
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 ...
6
votes
1answer
708 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
2answers
120 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 ...
3
votes
2answers
573 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 ...
0
votes
0answers
31 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 ...