CS135-lecture-20210209

How to show what a finite atomata can’t do #

Pumping Lemma for regular languages #

Let \(M\) be a DFA with \(p\) states. Let \(s \in L(M)\) , and \(|s| \geq p\) , “the length of \(s\) is greater than or equal to the number of states.”

IMAGE

At one point we reach a state that is going to be visited twice first, we can call this “the first state that gets repeated.”

At one point we get back to this state.

IMAGE

The part of the string that takes us to the twice-visited state can be called \(x\) , the second part that returns to the twice-visited state can be called \(y\) , and the rest that goes to the accept can be called \(z\) .

IMAGE

So, \(s\) .

Observe,

  • \(|xy| \leq p\) , the length of \(x\) and \(y\) is less than the amount of states. We can’t avoid a repeat longer.
  • \(|y| > 0\) , the length of \(y\) is not empty.
  • \(xy^i z \in L(m)\) , for all \(i \geq 0\) . We can traverse the \(y\) string as many times, and as long as its followed by \(z\) it’ll take us to an accept state.

A theorem for pumping lemma for regular languages #

If \(L\) is a regular language, then there is a positive integer \(p\) such that any string \(s \in L\) and has length \(|s| \geq p\) , can be broken into \(s\) where

\[\begin{aligned} |y| > 0 \\ |xy| \leq p \\ xyz \in L \end{aligned}\]

Note: If you know \(s\) is in \(L\) and at least \(p\) long, you don’t get to pick \(xyz\) . You only get to claim they exist.

Languages that aren’t regular #

\(L = \{0^n1^n: 0 \leq n \leq 3\}\) .

IMAGE

This is a legal NFA, not a DFA though, so:

IMAGE

Since the DFA recognizes this language, it proves that its a regular language.

If \(n\) doesn’t have an upper limit, i.e. \(L\) then we cannot say that this is a regular language. Finite state machines cannot do unbounded counting.

Proof template #

Theorem: \(L\) is not regular.

Proof:

For purposes of contradicition assume \(L\) is regular. Because \(L\) is regular there must be a pumping length \(p\) . Consider the string ???? which is in \(L\) . The pumping lemma says there exists \(xyz\) . This contradicts that the pumping lemma says ( \(xy\) or \(xyyz\) ) is in \(L\) .

You must pick a string to replace the ????.

A hint that often works: pick your string so that the first \(p\) chars are all the same.


So in our language \(L\)

Theorem: \(L\) is not regular.

Proof:

For purposes of contradicition assume \(L\) is regular. Because \(L\) is regular there must be a pumping length \(p\) . Consider the string \(0^p1^p\) which is in \(L\) . The pumping lemma says there exists \(xyz\) . Because \(|xy| \leq p\) , \(x\) and \(y\) are all 0s. Because \(|y| > 0\) , \(xyyz\) will have more 0s than 1s, and so is not in \(L\) . This contradicts that the pumping lemma says \(xyyz\) is in \(L\) .