grammar
play

Grammar A grammar consists of the following: CS 3813: Introduction - PDF document

Grammar A grammar consists of the following: CS 3813: Introduction to Formal a set of terminals (same as an alphabet) Languages and Automata a set NT of nonterminal symbols, including a starting symbol S NT a set R of


  1. Grammar • A grammar consists of the following: CS 3813: Introduction to Formal – a set ∑ of terminals (same as an alphabet) Languages and Automata – a set NT of nonterminal symbols, including a starting symbol S ∈ NT – a set R of rules Regular grammars (Sec 3.3) • Example S → aS | A A → bA | e Context-free grammar Derivation • Strings are “derived” from a grammar • A grammar is said to be context-free if every rule • Example of a derivation has a single nonterminal on the left-hand side S ⇒ aS ⇒ aaS ⇒ aabA ⇒ aab • This means you can apply the rule in any • At each step, a nonterminal is replaced by context. More complicated languages (such as the sentential form on the right-hand side English) have context-dependent rules. But we of a rule (a sentential form can contain only consider context-free grammars in this nonterminals and/or terminals) course. • Automata recognize languages … • A language generated from a context-free grammars generate languages grammar is called a context-free language Regular grammar Another formalism for regular languages • Every regular grammar generates a regular • A grammar is said to be right-linear if all productions are of the form A → xB|x, where language, and every regular language can be generated by a regular grammar. (We can A and B are nonterminals and x is a string prove this, but won’t in this class …) of terminals • A regular grammar is a simpler, special- • A grammar is said to be left-linear if all productions are of the form A → Bx|x case of a context-free grammar • The regular languages are a proper subset of • A regular grammar is either right-linear or the context-free languages left-linear. 1

  2. Exercises Exercises • Find a regular grammar that generates the • Find a regular grammar that generates the language on Σ = {a,b} consisting of all language L(aa*(ab+a)*). (page 97 #2 in strings with no more than three a’s (page 97 book) #6) • Find a regular grammar that generates the language L = {w ∈ {a,b}* | n a (w) + n b (w) is • Find a regular grammar that generates the language consisting of even-length strings even} over {a,b} Languages are just sets of strings. We can use operations on these sets to create other languages. For example, if L 1 and L 2 are regular languages, CS 3813: Introduction to Formal we can create another language using the union Languages and Automata operator as follows: L 3 = L 1 ∪ L 2 Closure properties of regular languages We say that the regular languages are closed (Sec 4.1) under union because L 3 is regular whenever L 1 and L 2 are regular. (Why?) The regular languages are also closed under the The regular languages are also closed under the following operations: following operations: reversal (given an NFA that accepts language, reverse Concatenation (by construction used in Kleene’s transitions and switch start and final states) theorem) complement (given DFA, switch final and non-final Kleene star , or star-closure (also by the construction states) used in Kleene’s theorem) ∩ = ∪ intersection (because ) L L L L 1 2 1 2 − = ∩ L L L L difference (because ) 1 2 1 2 2

  3. Consider a language L as defined by a finite acceptor, a regular expression or a regular grammar: CS 3813: Introduction to Formal • Given a string w, can we determine whether Languages and Automata or not w is a member of L? • Can we determine whether L is empty, finite or infinite? Questions about regular languages • Can we determine whether two regular (Sec 4.2) languages L 1 and L 2 are the same? Non-regular languages • There are non-regular languages that can be CS 3813: Introduction to Formal generated by context-free grammars Languages and Automata • The language {a n b n : n ≥ 0} is generated by the grammar S → aSb | e • The language L = {w : n a (w) = n b (w)} is The pumping lemma for regular languages generated by the grammar S → SS | e | aSb | bSa (Sec 4.3) Pumping Lemma Idea of pumping lemma If a string in a regular language is sufficiently long, Let L be a regular language accepted by some DFA with k states. Then for any string w ∈ L with you can always find a substring in it that you can |w| ≥ m, w may be written as w = xyz, for some “pump” to get other strings in the language. x, y, and z satisfying the following: So if you find a string in a language (that meets the |xy| ≤ m, conditions of the pumping lemma) such that |y| ≥ 1, pumping it produces any string that is not in the xy i z ∈ L for every i ≥ 1 language, then the language is not regular. and 3

  4. Proof idea Proof idea again If an infinite language is regular, it is accepted by a DFA. If a DFA has k states, then any path of length k must The DFA has some finite number of states, say, m. visit k+1 states, and contains a cycle. (This is an Because the language is infinite, some strings must application of the “pigeonhole principle.”) have length > m. y For a string of length > m accepted by the DFA, a “walk” through the DFA must contain a cycle. z x Repeating the cycle an arbitrary number of times must yield another string accepted by the DFA. This part of the string can be “pumped” to produce other strings in the language. How to use the pumping lemma Example Theorem: The language L = {a n b n | n ≥ 0} is not regular. The Pumping Lemma describes a property that is possessed by every regular language. The proof is by contradiction. If L is regular, it must be So if we show that a language does not possess accepted by some DFA. Let m be the number of states of this property, we know that it is not regular. the DFA and consider some w ∈ L such that |w| ≥ m. By the pumping lemma, we can split w into three pieces, The strategy is proof by contradiction. We w = xyz, such that for any i ≥ 0, the string xy i z is in L. assume a language has the property described So let w = a i b i . Because |xy| ≤ m, y must consist of by the pumping lemma, and then we show all a’s. But then xy 2 z will contain more a’s than b’s, that this leads to a contradiction. which is a contradiction. Exercises Practice with pumping lemma For each of the following languages, say whether Use the pumping lemma to show that the language it is regular or not and give a proof. L = {w ∈ {a,b}* | w contains equal number of a’s and b’s} is not regular. L = {a n b n a n | n ≥ 0} L = {w | w contains 3 more a’s than b’s} How can you prove the complement of L = {a n b n | n ≥ 0} is not regular? (Remember closure properties.) L = {w ∈ {a,b}* | w does not have 3 consecutive a’s} L = {ww | w ∈ {a,b}*} 4

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend