Finding errors in pumping lemma conditions

228 views Asked by At

In my exam, i was supposed to write all pumping lemma conditions. that exactly what i did :

enter image description here

a friend told me that there is some errors but i can't find them... Can some one help please ? what are the errors & why ?

2

There are 2 answers

1
Gumbo On BEST ANSWER

If I remember correctly, the conditions need to be as follows:

  • |xy| ≤ p
  • |y| ≥ 1
  • xyizL, i0

So y must not be empty and y can be repeated zero or more times.

2
templatetypedef On

You're almost right, but the pumping lemma requires that |xy| ≤ p, not |xz| ≤ p. The idea is that the string is split into some initialization (x), steady-state (y), and tail (z) and that the initialization plus steady state logic is some length.