formal languages and automata theory

6

Click here to load reader

Upload: jorden-zimmerman

Post on 31-Dec-2015

26 views

Category:

Documents


3 download

DESCRIPTION

Formal languages and automata theory. Li Fan. Pumping Lemma. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Formal languages and automata theory

Formal languages and automata theory

Li Fan

Page 2: Formal languages and automata theory

Pumping Lemma

• Let L be a regular set. Then there is a constant n such that if z is any word in L, and |z|>=n, we may write z=uvw in such a way that |uv|<=n, |v|>=1, and for all i>=0, u(v^i)w is in L. Furthermore, n is no greater than the number of states of the smallest FA accepting L.

Page 3: Formal languages and automata theory

Exercise

• The set L={0^(i^2) | i is an integer, i>=1}, which consists of all strings of 0’s whose length is a perfect square, is not regular.

• Prove that L = {(a^n)(b^k): n > k and n>=0} is not regular.

Page 4: Formal languages and automata theory

Which of the following languages are regular sets?

• {0^(2n) | n>=1}

• {(0^m)(1^n)(0^(m+n)) | m>=1 and n>=1}

• {0^n | n is a prime}

• The set of all strings that do not have three consecutive 0’s

Page 5: Formal languages and automata theory

• The set of all strings with an equal number of 0’s and 1’s

• {x | x in (0+1)*, and x=x^R} x^R is x written backward; for example, (011)^R=110.

• {xwx^R | x,w in (0+1)+}.

Page 6: Formal languages and automata theory

Thank you