Pumping lemma definition (from wiki)
Let L be a regular language. Then there exists an integer p ≥ 1 depending only on L such that every string w in L of length at least p (p is called the "pumping length"[4]) can be written as w = xyz (i.e., w can be divided into three substrings), satisfying the following conditions:
|y| ≥ 1; |xy| ≤ p for all i ≥ 0, xyiz ∈ L
Suppose I want to test regular expression 011 Since it is regular expressionm, there is string w for at least length p that satisfy w=xyz
The number of this automata is 3, p should be >= 3 But only string that accept this automata is 011 So I pick 011 as w I can break up 3 part 011 = xyz but how can I break? I cannot satisfy |y| ≥ 1; |xy| ≤ p for all i ≥ 0, xyiz ∈ L
Since it is only accept 011 How can I pump? Where am I wrong