1 / 16

CS 454 Theory of Computation

CS 454 Theory of Computation. Sonoma State University, Fall 2012 Instructor: B. (Ravi) Ravikumar Office: 116 I Darwin Hall. Lecture 1 Goals: overview (45 minutes) Course overview Field overview Chapter 1 (55 minutes).

Download Presentation

CS 454 Theory of Computation

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. CS 454 Theory of Computation Sonoma State University, Fall 2012 Instructor: B. (Ravi) Ravikumar Office: 116 I Darwin Hall

  2. Lecture 1 • Goals: • overview (45 minutes) • Course overview • Field overview • Chapter 1 (55 minutes)

  3. What is theory of computation? Theory of computation deals with computational models – what they can and can’t do. Computational models: instead of defining it, we will give some examples. • Cellular automaton • L-system • finite automaton

  4. Virtual cities generated using L systems

  5. Course overview • finite automata • DFA, NFA, regular expressions • proof of equivalence, algorithms for conversions • What can’t be done by FA? • DFA minimization • context-free languages • grammar, pushdown automaton • equivalence • what can’t be done by cfg’s?

  6. Turing machines • computability • variations of Turing machines • reductions, unsolvability • other computational models • Complexity Theory • time complexity • NP-completeness • Other topics • applications (e.g. compilers, image compression, graphics etc.) • cryptography, interactive proof systems • biologically inspired models of computation

  7. Why Study Theory of Computation?From Stanford survey (Jeff Ullman) • A survey of Stanford grads 5 years out asked which of their courses did they use in their job. • Basics like CS106 (~ CS 215) took the top spots, of course. • But among optional courses, CS154 stood remarkably high. • 3X the score for AI, for example.

  8. How Could That Be? • Regular expressions are used in many systems. • E.g., UNIX a.*b. • E.g., DTD's (Document Type Definition) describe XML tags with a RE format like person (name, addr, child*). • Finite automata model protocols, electronic circuits. • Theory is used in model-checking.

  9. 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.

  10. 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. • CS 454 (and CS 415) give you the tools.

  11. Other aspects of CS 454 • 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. • Abstract models are important to design and understand complex software. • Abstract State Machine used to design Microsoft products • State Charts play a key role in software systems.

  12. Text • Hopcroft, Motwani, Ullman, Automata Theory, Languages, and Computation 3rd Edition. • Goal is to cover roughly ¾ of the book.

  13. Gradiance Registration • The “class token” for this edition of CS 454 is 7AC0798E • Register it at www.gradiance.com

  14. Homework • The intent is that everyone will get 100% on all homeworks. • You are allowed to try as many times as you like. • Only the last try counts. • Don’t be afraid to guess and try again. • You’ll get some advice if you make a mistake.

More Related