Tagged Questions

lemma mostly used to prove that a language is not regular/context-free

learn more… | top users | synonyms

36
votes
9answers
7k views

In Laymen's terms, what is the pumping lemma

So I saw this question and was curious as to what the Pumping Lemma was (Wikipedia wasn't much help). I understand that its basically a theoretical proof that must be true in order for a language to ...
5
votes
3answers
229 views

generalizing the pumping lemma for UNIX-style regular expressions

Most UNIX regular expressions have, besides the usual **,+,?* operators a backslash operator where \1,\2,... match whatever's in the last parentheses, so for example *L=(a*)b\1* matches the (non ...
3
votes
3answers
698 views

Pumping Lemma with Context Free Languages

I have the language {a^i b^j c^k | i,j,k>=0 & i>j & j>k} I began by assuming some m is picked for me, such that a string z = a^m b^(m-1) c^(m-2) Then the string is split up ...
2
votes
1answer
43 views

Pumping lemma for context-sensitive language?

i have googled on pumping lemma for context sensitive, and it seems to only produce results for context-free language. Pumping lemma only allows to prove a language is context free only? and not ...
1
vote
0answers
52 views

What we can say about a language L satisfying the pumping lemma for regular languages and also the pumping lemma for context free languages?

A language L satisfies the pumping lemma for regular languages and also the pumping lemma for context free languages.Which of the following statements about L is true ? A. L is necessarily a regular ...
1
vote
2answers
247 views

Design a language L such that neither L nor its complement has an infinite regular subset?

I'm having a class on automata theory, and right now we are learning the pumping lemma. There is an exercise question asking us to "Design a language L such that neither L nor its complement has an ...
1
vote
4answers
218 views

A detail on the Pumping Lemma for regular languages

I have one small question about the pumping lemma for regular languages - is it good enough to show that if a specific string belonging to a language L can't be pumped, then the language is irregular? ...
1
vote
1answer
252 views

Quick/Simple Regex/Regular Language Clarification

I feel like a moron posting such simple questions on here, but the knowledge base of this site is just amazing. Thanks for your understanding. Concerning a question about finding the minimum pumping ...
1
vote
2answers
845 views

Problem with Closure properties of context free languages

hello i have the following sentence a language L1={a^n * b^n : n>=0} and L2={b^n * a^n : n>=0} are context free languages so they are close a=under the L1L2 so L={a^n * b^2n A^n : n>=0} must be ...
1
vote
2answers
736 views

Pumping lemma for CFLs

This isn't a programming question, but I don't know of any good places on the Internets to ask computer science questions. Sorry if this is too off-topic. I'm reviewing some old CS material and I'm ...
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
1answer
70 views

How do you prove this pumping lemma example? [closed]

I got this question wrong on my test and was wondering if someone could explain it, showing the steps taken to come to the conclusion. Any help would be appreciated. In the PL proof for L_neq = ...
0
votes
1answer
48 views

Prove language irregular with pumping Lemma

I am trying to prove that the following language is not regular using the pumping lemma L= { a^i b^j | i^2 > j} Any tips on this? I am completely stuck. Thanks.
0
votes
1answer
53 views

Is it possible to prove that L is a regular language?

Let L = {a^f(m) | m >= 1 } where f: Z^+ -> Z^+ is monotone increasing and complies that for all element n in Z^+ there is an m belonging to Z^+ such that f(m+1) - f(m) >= n. Is it possible ...
0
votes
1answer
103 views

Regular language?

I have a compiler question. Determine whether {(ab)^n | n >= 0} is a regular language? But I can draw its NFA. But if I use pumping lemma, I will get a controdition answer. Can every help me? thx
0
votes
2answers
77 views

finding errors in pumping lemma conditions

In my exam, i was supposed to write all pumping lemma conditions. that exactly what i did : a friend told me that there is some errors but i can't find them... Can some one help please ? what are ...
0
votes
2answers
334 views

Pumping Lemma in context-free languages

A = {0^a 1^b 2^c | a < b < c} I need to show that A is not context-free. I'm guessing I have to use the Pumping Lemma for this, but how?
0
votes
0answers
528 views

Prove that language is not context free

Hello I am trying to prove that the language L={a^n * b^2n A^n : n>=0} is not context free but i tried the pumping theory but i can not find one state that if i pump then it is out of the language