automata theory
play

Automata Theory Why Study Automata? What the Course is About 1 - PowerPoint PPT Presentation

Automata Theory Why Study Automata? What the Course is About 1 Why Study Automata? A survey of Stanford grads 5 years out asked which of their courses did they use in their job. Basics like intro-programming took the top spots, of course.


  1. Automata Theory Why Study Automata? What the Course is About 1

  2. Why Study Automata? A survey of Stanford grads 5 years out asked which of their courses did they use in their job. Basics like intro-programming took the top spots, of course. But among optional courses, CS154 stood remarkably high. 3X the score for AI, for example. 2

  3. How Could That Be? Regular expressions are used in many systems. E.g., UNIX a.*b. E.g., DTD’s describe XML tags with a RE format like person (name, addr, child*). Finite automata model protocols, electronic circuits. 3

  4. How? – (2) Context-free grammars are used to describe the syntax of essentially every programming language. Not to forget their important role in describing natural languages. And DTD’s taken as a whole, are really CFG’s. 4

  5. How? – (3) When developing solutions to real problems, we often confront the limitations of what software can do. Undecidable things – no program whatever can do it. Intractable things – there are programs, but no fast programs. Automata theory gives you the tools. 5

  6. Other Good Stuff We’ll learn how to deal formally with discrete systems. Proofs: You never really prove a program correct, but you need to be thinking of why a tricky technique really works. We’ll gain experience with abstract models and constructions. Models layered software architectures. 6

  7. Automata Theory – Gateway Drug This theory has attracted people of a mathematical bent to CS, to the betterment of all. Ken Thompson – before UNIX was working on compiling regular expressions. Jim Gray – thesis was automata theory before he got into database systems and made fundamental contributions there. 7

  8. Course Outline Regular Languages and their descriptors: Finite automata, nondeterministic finite automata, regular expressions. Algorithms to decide questions about regular languages, e.g., is it empty? Closure properties of regular languages. 8

  9. Course Outline – (2) Context-free languages and their descriptors: Context-free grammars, pushdown automata. Decision and closure properties. 9

  10. Course Outline – (3) Recursive and recursively enumerable languages. Turing machines, decidability of problems. The limit of what can be computed. Intractable problems. Problems that (appear to) require exponential time. NP-completeness and beyond. 10

  11. Finite Automata What Are They? Who Needs ‘em? An Example: Scoring in Tennis 11

  12. What is a Finite Automaton? A formal system. Remembers only a finite amount of information. Information represented by its state . State changes in response to inputs . Rules that tell how the state changes in response to inputs are called transitions . 12

  13. Why Study Finite Automata? Used for both design and verification of circuits and communication protocols. Used for many text-processing applications. An important component of compilers. Describes simple patterns of events, etc. 13

  14. Tennis Like ping-pong, except you are very tiny and stand on the table. Match = 3-5 sets. Set = 6 or more games. 14

  15. Scoring a Game One person serves throughout. To win, you must score at least 4 points. You also must win by at least 2 points. Inputs are s = “server wins point” and o = “opponent wins point.” 15

  16. Server Wins s s 40-Love s s Ad-in o s 30-Love 40-15 s o s o o Start s 15-Love 30-15 40-30 s s s o o o Love 15-all 30-all deuce o s s s o o 30-40 15-30 Love-15 s o s o o s Love-30 15-40 o s o Ad-out o Love-40 o o Opp’nt Wins 16

  17. Acceptance of Inputs Given a sequence of inputs ( input string ), start in the start state and follow the transition from each symbol in turn. Input is accepted if you wind up in a final (accepting) state after all inputs have been read. 17

  18. Example: Processing a String s o s o s o s o s o s s Server Wins s 40-Love s s s Ad-in o s 30-Love 40-15 s o s o o Start 15-Love s 30-15 40-30 s s s o o o Love 15-all 30-all deuce o s s s * o o 30-40 15-30 Love-15 s o s o o s Love-30 15-40 o s o Ad-out Love-40 o o o Opp’nt 18 Wins

  19. Example: Processing a String s o s o s o s o s o s s Server Wins s 40-Love s s s Ad-in o s 30-Love * 40-15 s o s o o Start 15-Love s 30-15 40-30 s s s o o o Love 15-all 30-all deuce o s s s o o 30-40 15-30 Love-15 s o s o o s Love-30 15-40 o s o Ad-out Love-40 o o o Opp’nt 19 Wins

  20. Example: Processing a String s o s o s o s o s o s s Server Wins s 40-Love s s s Ad-in o s 30-Love 40-15 s o s o o Start 15-Love s 30-15 40-30 * s s s o o o Love 15-all 30-all deuce o s s s o o 30-40 15-30 Love-15 s o s o o s Love-30 15-40 o s o Ad-out Love-40 o o o Opp’nt 20 Wins

  21. Example: Processing a String s o s o s o s o s o s s Server Wins s 40-Love s s s Ad-in o s 30-Love 40-15 s o * s o o Start 15-Love s 30-15 40-30 s s s o o o Love 15-all 30-all deuce o s s s o o 30-40 15-30 Love-15 s o s o o s Love-30 15-40 o s o Ad-out Love-40 o o o Opp’nt 21 Wins

  22. Example: Processing a String s o s o s o s o s o s s Server Wins s 40-Love s s s Ad-in o s 30-Love 40-15 s o s o o Start 15-Love s 30-15 40-30 s * s s o o o Love 15-all 30-all deuce o s s s o o 30-40 15-30 Love-15 s o s o o s Love-30 15-40 o s o Ad-out Love-40 o o o Opp’nt 22 Wins

  23. Example: Processing a String s o s o s o s o s o s s Server Wins s 40-Love s s s Ad-in o s 30-Love 40-15 s o * s o o Start 15-Love s 30-15 40-30 s s s o o o Love 15-all 30-all deuce o s s s o o 30-40 15-30 Love-15 s o s o o s Love-30 15-40 o s o Ad-out Love-40 o o o Opp’nt 23 Wins

  24. Example: Processing a String s o s o s o s o s o s s Server Wins s 40-Love s s s Ad-in o s 30-Love 40-15 s o s o o Start 15-Love s 30-15 40-30 * s s s o o o Love 15-all 30-all deuce o s s s o o 30-40 15-30 Love-15 s o s o o s Love-30 15-40 o s o Ad-out Love-40 o o o Opp’nt 24 Wins

  25. Example: Processing a String s o s o s o s o s o s s Server Wins s * 40-Love s s s Ad-in o s 30-Love 40-15 s o s o o Start 15-Love s 30-15 40-30 s s s o o o Love 15-all 30-all deuce o s s s o o 30-40 15-30 Love-15 s o s o o s Love-30 15-40 o s o Ad-out Love-40 o o o Opp’nt 25 Wins

  26. Example: Processing a String s o s o s o s o s o s s Server Wins s 40-Love s s s Ad-in o s 30-Love 40-15 s o s o o Start 15-Love s 30-15 40-30 s s * s o o o Love 15-all 30-all deuce o s s s o o 30-40 15-30 Love-15 s o s o o s Love-30 15-40 o s o Ad-out Love-40 o o o Opp’nt 26 Wins

  27. Example: Processing a String s o s o s o s o s o s s Server Wins s * 40-Love s s s Ad-in o s 30-Love 40-15 s o s o o Start 15-Love s 30-15 40-30 s s s o o o Love 15-all 30-all deuce o s s s o o 30-40 15-30 Love-15 s o s o o s Love-30 15-40 o s o Ad-out Love-40 o o o Opp’nt 27 Wins

  28. Example: Processing a String s o s o s o s o s o s s Server Wins s 40-Love s s s Ad-in o s 30-Love 40-15 s o s o o Start 15-Love s 30-15 40-30 s s * s o o o Love 15-all 30-all deuce o s s s o o 30-40 15-30 Love-15 s o s o o s Love-30 15-40 o s o Ad-out Love-40 o o o Opp’nt 28 Wins

  29. Example: Processing a String s o s o s o s o s o s s Server Wins s * 40-Love s s s Ad-in o s 30-Love 40-15 s o s o o Start 15-Love s 30-15 40-30 s s s o o o Love 15-all 30-all deuce o s s s o o 30-40 15-30 Love-15 s o s o o s Love-30 15-40 o s o Ad-out Love-40 o o o Opp’nt 29 Wins

  30. Example: Processing a String * s o s o s o s o s o s s Server Wins s 40-Love s s s Ad-in o s 30-Love 40-15 s o s o o Start 15-Love s 30-15 40-30 s s s o o o Love 15-all 30-all deuce o s s s o o 30-40 15-30 Love-15 s o s o o s Love-30 15-40 o s o Ad-out Love-40 o o o Opp’nt 30 Wins

  31. Language of an Automaton The set of strings accepted by an automaton A is the language of A. Denoted L(A). Different sets of final states -> different languages. Example: As designed, L(Tennis) = strings that determine the winner. 31

  32. Text (Not Required) Hopcroft, Motwani, Ullman, Automata Theory, Languages, and Computation 3 rd Edition. Course covers essentially the entire book. 32

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