I have the language: L = {0^i 1^i | i >= 0}
The grammar that describes it proves it is a context free language: S -> 0S1 | e
If a language is context free, Pumping Lemma should hold. I can however not get it to work, no matter what i choose to "pump", i will get a mix of 0's and 1's, e.g. 0101.
Am i correct that it is really a context free language? If so, can you give an example of using Pumping Lemma?