I checked the pumping lemma in many books(introduction to the theory of computation Michael Sipser) and website(wikipedia). they all give the same explanation:(definition from introduction to the theory of computation, page 78)
Pumping lemma: If $A$ is a regular language, then there is a number $p$ (the pumping length) where if $s$ is any string in $A$ of length at least $p$, then $s$ may be divided into three pieces, $s = xyz$, satisfying the following conditions:
- for each $i \ge 0$, $xy^iz \in A$,
- $|y| > 0$, and
- $|xy| \le p$.
I want to know, is it possible to choose a fractional value such as $\frac{1}{3}$ for $i$?? if it is possible, how to you interpret it??
No. In automata theory unless indicated otherwise all the values being dealt with are natural numbers. The $i$ indicates the length of repeated $y$ substrings and as it is a finite cardinality only natural numbers makes sense.