1 / 68

Chapter 3 Regular languages and expressions

Chapter 3 Regular languages and expressions. Operations on formal languages. Let L 1 = {10} and L 2 = {011, 11}. Union : L 1  L 2 = {10, 011, 11} Concatenation : L 1 L 2 = {10011, 1011} Kleene Star : L 1 * = { λ , 10, 1010, 101010, … }

ramona-wynn
Télécharger la présentation

Chapter 3 Regular languages and expressions

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Chapter 3Regular languages and expressions

  2. Operations on formal languages Let L1 = {10} and L2 = {011, 11}. Union: L1 L2 = {10, 011, 11} Concatenation: L1 L2 = {10011, 1011} Kleene Star: L1* = {λ, 10, 1010, 101010, … } Other operations: intersection, complement, difference

  3. Definition Of Regular Languages A regular language over an alphabet  is one that contains either a single string of length 0 or 1, or strings which can be obtained by using the operations of union, concatenation, or Kleene* on strings of length 0 or 1.

  4. Alternative definition of regular languages The simplest possible regular languages are the empty set and languages consisting of a single string that is either the empty string or has length one. For example; if  = {a,b}, the simplest languages are , {λ}, {a}, and {b}. A regular language is a language that can be built from these simple languages, by using the three operations of union, concatenation, and Kleene star.

  5. Regular Languages correspond to Regular Expressions • L = Ø RE is Ø • L = {} RE =  • L = {a} RE = a • L = L1  L2 RE = (r1 + r2) • L = L1 L2 RE = (r1r2) • L = L1* RE = (r1*)

  6. Regular expressions A useful shorthand for describing regular languages. Compare to arithmetic expressions, such as (x + 3)/2. An arithmetic expression is constructed using arithmetic operators, such as addition and division. A regular expression is constructed using operations on languages, such as concatenation, union, and Kleene star. The value of an arithmetic expression is a number. The value of a regular expression is a language.

  7. Recursive definition of a regular expression  is a regular expression corresponding to the language . λ is a regular expression corresponding to the language {λ}. For each symbol a  , a is a regular expression corresponding to the language {a}. For any regular expressions r and s, corresponding to the regular languages L(r) and L(s), respectively, each of the following is a regular expression: (r + s) corresponds to the language L(r)  L(s) (r · s) or (rs) corresponds to the language L(r)L(s) (r*) corresponds to the language (L(r))*

  8. Examples a*+ b= {λ, a, b, aa, aaa, aaaa, aaaaa, … } a*ba* = {w  * : w has exactly one b} (a + b)* = any string of a’s and b’s (a + b)*aa (a + b)* = {w  * : w contains aa} (a + b)*aa (a + b)* + (a + b)*bb (a + b)* = {w  * : w contains aa or bb} (a +λ)b* = {abn : n  0} + {bn : n  0} As with arithmetic expressions, there is an order of precedence for operators -- unless you change it using parentheses. The order is: star closure first, then concatenation, then union.

  9. More examples All strings containing no more than two a’s: (b + c)*(λ + a)(b + c)*(λ + a)(b + c)* All strings containing no runs of a’s of length greater than two: (b + c)*(λ + a + aa)(b + c)*((b + c)(b + c)*(λ + a + aa)(b + c)*)* All strings in which all runs of a’s have lengths that are multiples of three: (aaa + b + c)*

  10. Hints for writing regular expressions Assume  = {a, b, c}. Zero or more a’s: a* One or more a’s: aa* Any string at all: (a + b + c)* Any nonempty string: (a + b + c)(a + b + c)* Any string that does not contain a: (b + c)* Any string containing exactly one a: (b + c)*a(b + c)*

  11. Practice Let  = {a,b,c}. Give a regular expression for the following languages: (a) all strings containing exactly two a’s (b) all strings containing no more than three a’s

  12. Practice Let  = {a,b,c}. Give a regular expression for the following languages: (a) all strings containing exactly two a’s (b + c)*a(b + c)*a(b + c)* (b) all strings containing no more than three a’s (b + c)*(λ + a)(b + c)*(λ + a)(b + c)*(λ + a)(b + c)*

  13. Practice What languages correspond to the following regular expressions? a*b (aaa + bba) (ab)*

  14. More practice Give regular expressions for the following languages, where the alphabet is  = {a, b, c}. --all strings ending in b --all strings containing no more than two a’s -- all strings of even length

  15. More practice Give regular expressions for the following languages, where the alphabet is  = {0, 1}. --all strings of one or more 0’s followed by a 1 --all strings of two or more symbols followed by three or more 0’s -- all strings that do not end with 01

  16. Do these strings match the regular expression? Regular expressionString (01* + 1) 0101 (a +λ)b b (ab)*a* λ (a + b)(ab) bb

  17. Let M = (Q, S, q0, d, A) be an FA. A string x  S *is accepted by M if d*(q0, x)  A The language accepted (or recognized) by M is the set L(M) = {x  S *| x is accepted by M} A language L over the alphabet S is regular iff there is a Finite Automaton that accepts L. Accepting (review)

  18. Kleene’s theorem 1) For any regular expression r that represents language L(r), there is a finite automaton that accepts that same language. 2) For any finite automaton M that accepts language L(M), there is a regular expression that represents the same language. Therefore, the class of languages that can be represented by regular expressions is equivalent to the class of languages accepted by finite automata -- the regular languages.

  19. Kleene’s theorem part 1 NFA regular expression proved Kleene’s Theorem part 2 DFA

  20. Theorem 3.1 1st half of Kleene’s theorem: Let r be a regular expression. Then there exists some nondeterministic regular accepter that accepts L(r). Consequently, L(r) is a regular language. Proof strategy: for any regular expression, we show how to construct an equivalent NFA. Because regular expressions are defined recursively, the proof is by induction.

  21. Base step: Give a NFA that accepts each of the simple or “base” languages, , {λ}, and {a} for each a  . a

  22. Inductive step: For each of the operations -- union, concatenation and Kleene star -- show how to construct an accepting NFA. Closure under union: M1 λ λ M2 λ λ

  23. M2 λ M1 Closure under concatenation:

  24. Closure under Kleene Star: λ M1 λ λ λ

  25. Union, concatenation, and Kleene star of two regular languages will result in a regular language, since we can write a regular expression for them. Intersection and difference (complement) of two regular languages will also produce a regular language. The class of regular languages is said to be closed under these operations. (More in Ch. 4.) Closure properties of Regular Languages

  26. Exercise Use the construction of the first half of Kleene’s theorem to construct a NFA that accepts the language L(ab*aa + bba*ab).

  27. Exercise Use the construction of the first half of Kleene’s theorem to construct a NFA that accepts the language L(ab*aa + bba*ab). λ λ FA accepting ab*aa q0 qf λ λ FA accepting bba*ab

  28. Exercise Construct a NFA that accepts the language corresponding to the regular expression: ((b(a+b)*a) + a)

  29. Theorem 3.2 Kleene’s theorem part 2: Let L be a regular language. Then there exists a regular expression r such that L = L(r). Any language accepted by a finite automaton can be represented by a regular expression. The proof strategy: For any DFA, we show how create an equivalent regular expression. In other words, we describe an algorithm for converting any DFA to a regular expression.

  30. ab (a+b) a* Expression diagram • A labeled directed graph (similar to a finite state diagram) in which transitions are labeled by regular expressions • Has a single start state with no incoming transitions • Has a single accepting state with no outgoing transitions • Example:

  31. Algorithm for converting a DFA into an equivalent regular expression Initial step: Change every transition labeled a,b to (a+b). Add a single start state with an outgoing λ-transition to the current start state, and add a single final state with incoming λ-transitions from every previous final state. Main step: Until expression diagram has only two states (initial state and final state), repeat the following: -- pick some non-start, non-final state -- remove it from the diagram and re-label transitions with regular expressions so that the same language is accepted

  32. ab*b ab*a The key step is removing states and re-labeling transitions with regular expressions. Here are some examples of how to do this. b a a ab*a b ab*a a b ab*b a b b a a

  33. Exercise a,b a a (a+b) λ λ b b Continue ...

  34. Exercise a (a+b) λ λ b (a+b) λ a*b a*b (a+b)*

  35. a b a b Exercise Find a regular expression that corresponds to the language accepted by the following DFA.

  36. a b a b Exercise λ λ a*bb*a a*bb* λ (a*bb*a)*a*bb*

  37. Homework Find a regular expression that corresponds to the language accepted by the following DFA. 0 q1 q0 0 1 1 q2 1 0

  38. Applications of regular expressions • Validation • checking that an input string is in valid format • example 1: checking format of email address on WWW entry form • example 2: UNIX regex command • Search and selection • looking for strings that match a certain pattern • example: UNIX grep command • Tokenization • converting sequence of characters (a string) into sequence of tokens (e.g., keywords, identifiers) • used in lexical analysis phase of compiler

  39. Grammar • A grammar G = (V, T, S, P) consists of the following quadruple: • a set V of variables (non-terminal symbols), including a starting symbol S  NT • a set T of terminals (same as an alphabet, ) • A start symbol S  V • a set P of production rules • Example: S  aS | A A bA | λ

  40. Derivation • Strings are “derived” from a grammar • Example of a derivation S  aS  aaS  aaA  aabA  aab • At each step, a nonterminal is replaced by the sentential form on the right-hand side of a rule (a sentential form can contain nonterminals and/or terminals) • Automata recognize languages; grammars generate languages

  41. Context-free grammar • A grammar is said to be context-free if every rule has a single non-terminal on the left-hand side • This means you can apply the rule in any context. More complicated languages (such as English) have context-dependent rules. A language generated from a context-free grammar is called a context-free language

  42. Regular grammar • A grammar is said to be right-linear if all productions are of the form AxB or Ax, where A and B are variables and x is a string of terminals • A grammar is said to be left-linear if all productions are of the form ABx or Ax • A regular grammar is either right-linear or left-linear.

  43. Linear grammar • A grammar can be linear without being right- or left-linear. • A linear grammar is a grammar in which at most one variable can occur on the right side of any production rule, without any restriction on the position of the variable. • Example: S  aS | A A Ab | λ

  44. Another formalism for regular languages • Every regular grammar generates a regular language, and every regular language can be generated by a regular grammar. • A regular grammar is a simpler, special-case of a context-free grammar • The regular languages are a proper subset of the context-free languages

  45. Exercises • Find a regular grammar that generates the language on  = {a,b} consisting of all strings with no more than three a’s

  46. Exercises • Find a regular grammar that generates the language on  = {a,b} consisting of all strings with no more than three a’s S  bS | aA | λ A  bA | aB | λ B  bB | aC | λ C  bC | λ

  47. Exercises • Find a regular grammar that generates the language consisting of even-length strings over {a,b}

  48. Exercises • Find a regular grammar that generates the language consisting of even-length strings over {a,b} S  aaS | abS | baS | bbS | λ

  49. Exercise What language is generated by the following context-free (but not regular) grammar? S  aSa | bSb | a | b | λ

  50. Exercise What language is generated by the following context-free grammar? S  aSa | bSb | a | b | λ The odd/even palindrome language: L = {w(a+b+λ)wR}

More Related