Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE) PDF Download

Part VIII. Pumping Lemma for Regular Languages

Regular Languages
Regular languages are those classes of languages accepted by DFA’s and by NFAs. These languages can be defined
using regular expressions.
Not every language is regular.
For example,
Language defined by, L = {anbn for n = 0, 1, 2, 3, ....} is not regular.
Language defined by, L = {anban for n = 0, 1, 2, 3, ....} is not regular.
Language defined by, L = {anbnaabn+1 for n = 1, 2, 3, ....} is not regular.

A powerful technique, known as Pumping Lemma can be used to show that certain languages are not regular.

Pumping Lemma for Regular Languages

Definition
Let L be a regular language. Then, there exists a constant n such that
          for every string w in L and |w| ≥ n,
w can be broken into three parts, x , y and z such that
          w = xyz, y /∈ ε, and |xy| ≤ n.
Then for all i ≥ 0, the string xyiz also belongs to L.

That is, we always find a non-empty string y not too far from the beginning of w that can be “pumped”; that is, repeating y any number of times, keeps the resulting string in the language.

A Simple Definition
Let L be a language and w be a string in the language. Break w into three parts. Then write, w = xyz.
Then xyiz must also be a string in the language. That is, strings xy0z, xy1z , xy2z , xy3z , xy4z ...... must be in the language.
Then L is a context free language.
For example,

Example 1:
Consider the language L = {an|n ≥ 1}. This language is regular.

The set of strings in this language are,
{a, aa, aaa, aaaa, aaaaa, .........}

Consider one string in this language, aaaa.
Let w=aaaa.
Break w into three parts, x, y and z.
Let w=aaaa=xyz
That is
Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)
Then,
xyiz is
Let i=1,
we have, xy1z
Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)
Let i=2,
Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)
Let i=3,
Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)
Since all the strings of the form xyiz , are in the above language, the language an is a regular language.


Example 2:
Consider the language L = {anbm|n, m ≥ 1}. This language is regular.

The set of strings in this language are,
{ab, abb, abbb, aab, aabb,aaaabbbbbbbb .........}
Consider one string in this language, aaabb.
Let w=aaabb.
Break w into three parts, x, y and z.
Let w=aaabb=xyz
That is
Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)
Then,
xyiz is
Let i=1,
we have, xy1z
Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)
Let i=2,
Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)
Since all the strings of the form xyiz , are in the above language, the language anbm is regular.


Example 3:
Consider the language L = {anbn|n ≥ 1}. This language is not regular.

The set of strings in this language are,
{ab, aabb, aaabbb, aaaabbbb, aaaaabbbbb, .........}
Consider one string in this language, aaabbb.
Let w=aaabbb.
Break w into three parts, x, y and z.
Let w=aaabbb=xyz
That is
Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)
Then,
   xyiz is
Let i=1,
we have, xy1z
Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)
Let i=2,
we have, xy2z
Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)

Since some of the strings of the form xyiz , are not in the above language, the language anbn is not regular.


Proof

Let L is regular. Then a DFA exists for L.
Let that DFA has n states.
Consider a string w of length n or more, let w = a1, a2, a3.....am, where m≥n and each ai is an input symbol
By the Pigeonhole principle, it is not possible for the n+1 different states (Pi’s) for i=0,1,2,3....n to be distinct, since there are only n states.
Thus we can find two different integers i and j such that Pi = Pj .
Now we can break w = xyz as follows:
1. x = a1a2, .......ai
2. y = ai+1ai+2.......aj
3. z = aj+1aj+2......am

That is x takes us to Pi once,
y takes us from Pi back to Pi (since Pi is also Pj ), and z is balance of w.
This is shown in the following diagram.
Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)
Note that x may be empty, when i=0.
Also, z may be empty, if j = n = m.
y cannot be empty, since i is strictly less than j.

Suppose the above automation receives xyiz for an i ≥ 0.
If i = 0, then the string is xz,
automation goes from the start state P0 to Pon input x.
Since Pis also Pj , it must be that M goes from Pi to the accepting state on input z.
Thus xz is accepted by the automation.
That is,
Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)
If i>0, then
automation goes from P0 to Pon input string x,
circles from Pi to Pi, i times on input yand then goes to the accepting state on input z.
Thus xyiz is accepted by the automation.
That is,
Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)
Pumping lemma is useful for proving that certain languages are not regular.


Proving Non-regularity of certain Languages using Pumping Lemma
To prove that certain languages are not regular, following are the steps:
Step 1:
    Assume that L is regular. Let n be the number of steps in the corresponding finite automation.
Step 2:
    Choose a string w such that |w| ≥ n. Use pumping lemma to write w = xyz, with |xy| ≤ n and |y| > 0.
Step 3:
    Find a suitable integer i such that xyiz ∉ L. This contradicts our assumption. Hence L is not regular.

The important part of proof is Step 3. There, we need to find i such that xyiz ∉ L.
    In some cases, we prove xyiz ∉ L by considering |xyiz|.
    In some cases, we may have to use the structure of strings in L.

Example 1:
Prove that language, L = {0i1for i ≥ 1 } is not regular.

Step 1: Assume that L is regular. Let n be the number of steps in the corresponding finite automation.
Step 2: Choose a string w such that |w| ≥ n. Use pumping lemma to write w = xyz, with |xy| ≤ n and |y| > 0.

Let w = 0n1n.
Then |w| = 2n > n.
By pumping lemma, we can write w = xyz, with |xy| ≤ n and |y| 6 ≠ 0.

Step 3: Find a suitable integer i such that xyiz ∉ L. This contradicts our assumption. Hence L is not regular.

The string y can be any one of the following forms:
Case 1: y has only 0’s, ie. y = 0k for some k ≥ 1.
In this case, we can take i=0. As xyz = 0n1n, xz = 0nk1n.

As k ≥ 1, n − k 6= n. So, xz /∈ L.
Case 2: y has only 1’s, ie. y = 1m, for some m ≥ 1.
In this case, take i=0.
As before, xz is 0n1n−m and n 6 ≠ n − m. So, xz / ∉ L.

Case 3: y has both 0’s and 1’s. ie. y = 0k1j, for some k, j ≥ 1
In this case, take i=2.
As xyz = 0n−k0k1j1n−j,xy2z = 0n−k0k1j0k1j1n−j,
As xy2z is not of the form 0i1i, xy2z ∉ L.
In all three cases, we get a contradiction. So L is not regular.

Example 2:
Prove that L = {ai2|i ≥ 1} is not regular.

Proof:

Step 1: Assume that L is regular. Let n be the number of steps in the corresponding finite automation.
Step 2: Choose a string w such that |w| ≥ n. Use pumping lemma to write w = xyz, with |xy| ≤ n and |y| > 0.
Let w = an2. Then |w| = n2 > n.
By pumping lemma, we can write w = xyz with |xy| ≤ n and |y| > 0.

Step 3: Find a suitable integer i such that xyiz /∈ L. This contradicts our assumption. Hence L is not regular.

Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)

Example 3:
Prove that L = {ap|p is a prime} is not regular.

Proof:

Step 1: Assume that L is regular. Let n be the number of steps in the corresponding finite automation.
Step 2: Choose a string w such that |w| ≥ n. Use pumping lemma to write w = xyz, with |xy| ≤ n and |y| > 0.

Let p be a prime number greater than n.
Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)
This is a contradiction.
Thus L is not regular.


Example 4:
Show that L = {ww|w ∈ {a, b}*} is not regular.

Proof:

Step 1: Assume that L is regular. Let n be the number of steps in the corresponding finite automation.
 Step 2: Choose a string w such that |w| ≥ n. Use pumping lemma to write w = xyz, with |xy| ≤ n and |y| > 0.

Let us consider ww = anbanb in L.
|ww| = 2(n + 1) > n
We can apply pumping lemma to write
ww = xyz with |y| 6 ≠ 0, |xy| ≤ n.

Step 3: Find a suitable integer i such that xyiz ∉ L. This contradicts our assumption. Hence L is not regular.

We want to find i so that xyiz ∉ L for getting a contradiction.
The string y can be in only one of the following forms:
Case 1: y has no b’s. ie. y = afor some k ≥ 1.

Case 2: y has only one b.
We may note that y cannot have two b’s. If so, |y| ≥ n + 2. But |y| ≤ |xy| ≤ n.
In case 1, we can take i = 0. Then xy0z = xz is of the form ambanb, where m = n − k < n. We cannot write xz in the form uu with u ∈ {a, b}*, and
so xz ∉ L.

In case 2 also, we can take i = 0. Then xy0z = xz has only one b ( as one b is removed from xyz, b being in y). So xz ∉ L as any element in L should have an even number of a’s and an even number of b’s. Thus in both cases, we have a contradiction. So, L is not regular.

The document Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE) is a part of the Computer Science Engineering (CSE) Course Theory of Computation.
All you need of Computer Science Engineering (CSE) at this link: Computer Science Engineering (CSE)
18 videos|69 docs|44 tests

Top Courses for Computer Science Engineering (CSE)

FAQs on Pumping Lemma for Regular Languages - Theory of Computation - Computer Science Engineering (CSE)

1. What is the pumping lemma for regular languages?
Ans. The pumping lemma for regular languages is a theorem that allows us to prove that a language is not regular. It states that for any regular language L, there exists a constant p (the pumping length) such that any string s in L with length greater than or equal to p can be split into three parts: s = xyz, where y is a non-empty substring. Furthermore, for any natural number i, the string xyiz is also in L.
2. How is the pumping lemma used to prove that a language is not regular?
Ans. To prove that a language is not regular using the pumping lemma, we need to show that there is no valid partition of the string that satisfies the pumping condition. This can be done by assuming that the language is regular, choosing a suitable string, and then demonstrating that no matter how we split it, there will be at least one case where pumping the string results in a string that is not in the language. This contradiction proves that the language is not regular.
3. Can the pumping lemma be used to prove that a language is regular?
Ans. No, the pumping lemma cannot be used to prove that a language is regular. The pumping lemma only provides a way to prove that a language is not regular. It states that if a language is regular, then there exists a constant pumping length p such that any string in the language can be split and pumped to generate more strings in the language. However, the pumping lemma does not guarantee that a language is regular if it satisfies the pumping condition.
4. Is the pumping lemma applicable to all types of languages?
Ans. No, the pumping lemma is only applicable to regular languages. It does not hold for context-free languages, context-sensitive languages, or recursively enumerable languages. The pumping lemma specifically provides a property that characterizes regular languages and helps in proving that a language is not regular.
5. Are there any alternative methods to prove that a language is not regular?
Ans. Yes, there are alternative methods to prove that a language is not regular. One such method is to use closure properties of regular languages. If we can show that a language is not closed under certain operations, such as union, intersection, or complementation, then we can conclude that the language is not regular. Another method is to use the Myhill-Nerode theorem, which provides a criterion for determining whether a language is regular based on the number of distinguishable strings it contains.
18 videos|69 docs|44 tests
Download as PDF
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

ppt

,

Sample Paper

,

Extra Questions

,

Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)

,

Exam

,

Free

,

past year papers

,

practice quizzes

,

Viva Questions

,

Important questions

,

pdf

,

Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)

,

mock tests for examination

,

video lectures

,

Pumping Lemma for Regular Languages | Theory of Computation - Computer Science Engineering (CSE)

,

Summary

,

study material

,

Semester Notes

,

shortcuts and tricks

,

Previous Year Questions with Solutions

,

Objective type Questions

,

MCQs

;