1 / 15

CSC312 Automata Theory Lecture # 3 Languages-II

CSC312 Automata Theory Lecture # 3 Languages-II. Formal Language. A formal language is a set of words—that is, strings of symbols drawn from a common alphabet.

pparrott
Télécharger la présentation

CSC312 Automata Theory Lecture # 3 Languages-II

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. CSC312 Automata Theory Lecture # 3 Languages-II

  2. Formal Language • A formal languageis a set of words—that is, strings of symbols drawn from a common alphabet. • The word "formal” refers to the fact that all the rules for the language are explicitly stated in terms of what strings of symbols can occur. • Language will be considered solely as symbols on paper and not as expressions of ideas in the minds of humans. The term "formal" used here emphasizes that it is the formof the string of symbols we are interested in, not the meaning.

  3. Descriptive definition of Languages • The language is defined, describing the conditions imposed on its words. • Example: The language L of strings of odd length, defined over Σ={a}, can be written as • L={a, aaa, aaaaa,…..} • Example: The language L of strings that does not start with a, defined over Σ ={a,b,c}, can be written as • L ={Λ, b, c, ba, bb, bc, ca, cb, cc, …}

  4. Descriptive definition of Languages • Example:The language L of strings of length 2, defined over Σ ={0,1,2}, can be written as • L={00, 01, 02,10, 11,12,20,21,22} • Example: The language L of strings ending in 0, defined over Σ ={0,1}, can be written as • L={0,00,10,000,010,100,110,…} • Example:The language EQUAL, of strings with number of a’s equal to number of b’s, defined over Σ={a,b}, can be • written as • {Λ ,ab, aabb, abab, baba, abba,…}

  5. Example: The language EVEN-EVEN, of strings with even number of a’s and even number of b’s, defined over Σ={a,b}, • can be written as • {Λ, aa, bb, aaaa, aabb, abab, abba, baab, baba, bbaa, bbbb,…} • Example: The language INTEGER, of strings defined over Σ={-,0,1,2,3,4,5,6,7,8,9}, can be written as • INTEGER = {…,-2,-1,0,1,2,…}

  6. Example: The language {anbn }, of strings defined over Σ={a,b}, as • {an bn : n=1,2,3,…}, can be written as • {ab, aabb, aaabbb,aaaabbbb,…} • Example: • The language {anbnan }, of strings defined over Σ={a,b}, as • {an bn an: n=1,2,3,…}, can be written as • {aba, aabbaa, aaabbbaaa,aaaabbbbaaaa,…}

  7. Example: The language factorial, of strings defined over Σ={0,1,2,3,4,5,6,7,8,9} i.e. • {1,2,6,24,120,…} • Example: • The language FACTORIAL, of strings defined over Σ={a}, as • {an! : n=1,2,3,…}, can be written as • {a,aa,aaaaaa,…}. It is to be noted that the language FACTORIAL can be defined over any single letter alphabet.

  8. Example: • The language DOUBLEFACTORIAL, of strings defined over Σ={a, b}, as • {an!bn! : n=1,2,3,…}, can be written as • {ab, aabb, aaaaaabbbbbb,…} • Example: • The language SQUARE, of strings defined over Σ={a}, as • { : n=1,2,3,…}, can be written as • {a, aaaa, aaaaaaaaa,…}

  9. PALINDROME • The language consisting of Λ and the strings s defined over Σ such that Rev(s)=s. • It is to be noted that the words of PALINDROME are called palindromes. • Example: For Σ={a,b}, • PALINDROME={Λ , a, b, aa, bb, aaa, aba, bab, bbb, ...} • Remark: There are as many palindromes of length 2n as there are of length 2n-1.

  10. Regular ExpressionsCh # 4 by Cohen

  11. Regular Expressions (REs) • Any language-defining symbols generated according to some rule are called regular expressions OR a regular expression is a pattern describing a certain amount of text OR • A regular expression represents a "pattern“; strings that match the pattern are in the language, strings that do not match the pattern are not in the language. • Regular expressions describe regular languages.

  12. Not a regular expression: REs • Example: • describes the language • Example: • describes the language • Example:

  13. REs • Here instead of applying Kleene Star Operation (KSO) over some set S, we shall straight away apply KSO on some alphabet say “a” and write it as “a*” which means • a* = , a, aa, aaa, ……. • And Kleene plus closure is • a+ = a, aa, aaa, ……. • Where a+ = aa* • a* =  + a+ • Note: Every RE contains concatenation, + operator “or”, Kleene Star Closure, Kleene Plus Closure and parenthesis only.

  14. Given regular expressions and Are regular expressions Recursive Definition Primitive regular expressions: Thus, if |Σ| = n, then there are n+2 primitive regular expressions defined over Σ . Courtesy Costas Busch - RPI

  15. Languages of Regular Expressions • : language of regular expression • Example: • The languages defined by the primitive regular expressions are: • (i) The primitive regular expression  denotes the language {}. There are no strings in this language. • (ii) The primitive regular expression  denotes the language {}. The only string in this language is the empty string. • (iii) For each xЄΣ , the primitive regular expression x denotes the language {x}. That is, the only string in the language is the string "x".

More Related