vote up 11 vote down star
2

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 be in a certain class, but beyond that I don't really get it. Anyone care to try to explain it at a fairly granular level in a way understandable by non mathematicians/comp sci doctorates?

flag

71% accept rate

7 Answers

vote up 10 vote down check

Effectively a pumping lemma states that one can insert arbitrary strings (allowable within the language) and not reach a conclusion.

Said differently a word can be "pumped" such that any string can be inserted into the middle of the word and the word is still valid.

Visual pumping

This diagram above says that I can have the string [ad], [abcd], [abcbcd], [abcbcbcd], ad. infinum and I will be within the bounds of the language. This means an infinite number of bc's can be inserted into the middle of the word and the word would still be valid in the language. Thus this language can be pumped.

Now take XML, XML's language begins and ends with <xml></xml> respectively. XML can be pumped because any arbitrary set of tags can be inserted in between the tag and the XML will still be accepted XML.

Or take RSS, a subset of XML. One could continue to add items to an RSS feed forever, and it would still be an accepted RSS feed and thus accepted XML.

Note by valid I mean an accepted word in the language.

link|flag
+1 because you sound like you know what you are talking about. – Chris Lively Jan 21 at 15:46
Actually given the simple version of the pumping lemma that you describe (regular), XML CAN'T be pumped because it has matching open/close tags. – Brian Postow Apr 30 at 18:41
In general, being able to pump a particular string is not interesting; as is noted below the point is usually to find a string that cannot be pumped in a particular language, and thereby show that the language is not in the relevant class (you appear to be referring to the pumping lemma for regular languages here; there is of course a similar one for context free languages; are there others?) – zacharyrsnow Apr 30 at 19:36
@Brian - I don't believe that you're correct in saying that; In the diagram let b be an opening tag and c be a closing tag. Since bc can be pumped, the opening and closing tags are matched and valid XML is produced. – LFSR Consulting Apr 30 at 22:03
vote up 4 vote down

Its a difficult thing to get in layman's terms, but basically regular expressions should have a non-empty substring within it that can be repeated as many times as you wish while the entire new word remains valid for the language.

In practice, pumping lemmas are not sufficient to PROVE a language correct, but rather as a way to do a proof by contradiction and show a language does not fit in the class of languages (Regular or Context-Free) by showing the pumping lemma does not work for it.

link|flag
vote up 1 vote down

Basically, you have a definition of a language (like XML), which is a way to tell whether a given string of characters (a "word") is a member of that language or not.

The pumping lemma establishes a method by which you can pick a "word" from the language, and then apply some changes to it. The theorem states that if the language is regular, these changes should yield a "word" that is still from the same language. If the word you come up with isn't in the language, then the language could not have been regular in the first place.

link|flag
vote up 1 vote down

The simple pumping lemma is the one for regular languages, which are the sets of strings described by finite automata, among other things. The main characteristic of a finite automation is that it only has a finite amount of memory, described by its states.

Now suppose you have a string, which is recognized by a finite automaton, and which is long enough to "exceed" the memory of the automation, i.e. in which states must repeat. Then there is a substring where the state of the automaton at the beginning of the substring is the same as the state at the end of the substring. Since reading the substring doesn't change the state it may be removed or duplicated an arbitrary number of times, without the automaton being the wiser. So these modified strings must also be accepted.

There is also a somewhat more complicated pumping lemma for context-free languages, where you can remove/insert what may intuitively be viewed as matching parentheses at two places in the string.

link|flag
vote up 0 vote down

By definition regular languages are those recognized by a finite state automaton. Think of it as a labyrinth : states are rooms, transitions are one-way corridors between rooms, there's an initial room, and an exit (final) room. As the name 'finite state automaton' says, there is a finite number of rooms. Each time you travel along a corridor, you jot down the letter written on its wall. A word can be recognized if you can find a path from the initial to the final room, going through corridors labelled with its letters, in the correct order.

The pumping lemma says that there is a maximum length (the pumping length) for which you can wander through the labyrinth without ever going back to a room through which you have gone before. The idea is that since there are only so many distinct rooms you can walk in, past a certain point, you have to either exit the labyrinth or cross over your tracks. If you manage to walk a longer path than this pumping length in the labyrinth, then you are taking a detour : you are inserting a(t least one) cycle in your path that could be removed (if you want your crossing of the labyrinth to recognize a smaller word) or repeated (pumped) indefinitely (allowing to recognize a super-long word).

There is a similar lemma for context-free languages. Those languages can be represented as word accepted by pushdown automata, which are finite state automata that can make use of a stack to decide which transitions to perform. Nonetheless, since there is stilla finite number of states, the intuition explained above carries over, even through the formal expression of the property may be slightly more complex.

link|flag
vote up 0 vote down

It's a device intended to prove that a given language cannot be of a certain class.

Let's consider the language of balanced parentheses (meaning symbols '(' and ')', and including all strings that are balanced in the usual meaning, and none that aren't). We can use the pumping lemma to show this isn't regular.

(A language is a set of possible strings. A parser is some sort of mechanism we can use to see if a string is in the language, so it has to be able to tell the difference between a string in the language or a string outside the language. A language is "regular" (or "context-free" or "context-sensitive" or whatever) if there is a regular (or whatever) parser that can recognize it, distinguishing between strings in the language and strings not in the language.)

LFSR Consulting has provided a good description. We can draw a parser for a regular language as a finite collection of boxes and arrows, with the arrows representing characters and the boxes connecting them (acting as "states"). (If it's more complicated than that, it isn't a regular language.) If we can get a string longer than the number of boxes, it means we went through one box more than once. That means we had a loop, and we can go through the loop as many times as we want.

Therefore, for a regular language, if we can create an arbitrarily long string, we can divide it into xyz, where x is the characters we need to get to the start of the loop, y is the actual loop, and z is whatever we need to make the string valid after the loop. The important thing is that the total lengths of x and y are limited. After all, if the length is greater than the number of boxes, we've obviously gone through another box while doing this, and so there's a loop.

So, in our balanced language, we can start by writing any number of left parentheses. In particular, for any given parser, we can write more left parens than there are boxes, and so the parser can't tell how many left parens there are. Therefore, x is some amount of left parens, and this is fixed. y is also some number of left parens, and this can increase indefinitely. We can say that z is some number of right parens.

This means that we might have a string of 43 left parens and 43 right parens recognized by our parser, but the parser can't tell that from a string of 44 left parens and 43 right parens, which isn't in our language, so the parser can't parse our language.

Since any possible regular parser has a fixed number of boxes, we can always write more left parens than that, and by the pumping lemma we can then add more left parens in a way that the parser can't tell. Therefore, the balanced parenthesis language can't be parsed by a regular parser, and therefore isn't a regular expression.

link|flag
vote up 0 vote down

In laymans terms, I think you have it almost right. It's a proof technique (two actually) for proving that a language is NOT in a certain class.

Fer example, consider a regular language (regexp, automata, etc) with an infinite number of strings in it. At a certain point, as starblue said, you run out of memory because the string is too long for the automaton. This means that there has to be a chunk of the string that the automaton can't tell how many copies of it you have (you're in a loop). So, any number of copies of that substring in the middle of the string, and you still are in the language.

This means that if you have a language that does NOT have this property, ie, there is a sufficiently long string with NO substring that you can repeat any number of times and still be in the language, then the language isn't regular.

link|flag
The last sentence, at least, is false. The language consisting of the string "a" is regular, but you can't pump it. If you can pump a string in a certain way, it isn't regular. For example, the language with symbols '(' and ')', made of all balanced expressions (and no unbalanced ones) isn't regular, and you prove that by pumping "()". – David Thornley Apr 30 at 19:39
@David, thanks, corrected last sentence. But I think you're wrong about balanced parens. I don't think you can prove parens isn't regular via pumping lemma. I think parens pumps. – Brian Postow Apr 30 at 20:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.