Intro To Automata Theory
Intro To Automata Theory
Reading: Chapter 1
1940-1950s Finite automata machines studied Noam Chomsky proposes the Chomsky Hierarchy for formal languages 1969 1970Cook introduces intractable problems or NP-Hard problems Modern computer science: compilers, computational & complexity theory evolve
4
Languages: A language is a collection of sentences of finite length all constructed from a finite alphabet of symbols Grammars: A grammar can be regarded as a device that enumerates the sentences of a language - nothing more, nothing less N. Chomsky, Information and Control, Vol 2, 1959
Regular (DFA)
Contextfree (PDA)
Contextsensitive (LBA)
Recursivelyenumerable (TM)
Finite Automata
Some Applications
Software for designing and checking the behavior of digital circuits Lexical analyzer of a typical compiler Software for scanning large bodies of text (e.g., web pages) for pattern finding Software for verifying systems of all types that have a finite number of states (e.g., stock market transaction, communication/network protocol)
On/Off switch
state
Start state
Transition
Intermediate state
Final state
8
Alphabet
An alphabet is a finite, non-empty set of symbols We use the symbol (sigma) to denote an alphabet Examples:
Binary: = {0,1} All lower case letters: = {a,b,c,..z} Alphanumeric: = {a-z, A-Z, 0-9} DNA molecule letters: = {a,c,g,t}
10
Strings
A string or word is a finite sequence of symbols chosen from Empty string is (or epsilon) Length of a string w is |w|
= number of characters in the string
Powers of an alphabet
k = the set of all strings of length k * = 0 U 1 U 2 U + = 1 U 2 U 3 U xy = concatentation of two strings x and y
11
Languages
L is a said to be a language over alphabet , if L is a subset of strings in * Examples:
The language of all strings consisting of n 0s followed by n 1s: {,01,0011,000111,} The set of strings of with equal number of 0s and 1s: {, 01,10,0011,1100,0101,1010,1001,}
Structural expressions
Grammars Regular expressions
E.g., unix style to capture city names such as Palo Alto CA:
[A-Z][a-z]*([ ][A-Z][a-z]*)*[ ][A-Z][A-Z]
Start with a letter A string of other letters (possibly empty) Should end w/ 2-letter state code
14
Formal Proofs
15
Deductive Proofs
From the hypothesis or the given statement, to a conclusion statement (what we want to prove) Logical progression by direct implications Theorem 1: If x4, then 2xx2.
hypothesis conclusion
Given: x = a2 + b2 + c2 + d2 Given: a1, b1, c1, d1 a21, b21, c21, d21 (by 2) x4 (by 1 & 3) 2x x2 (by 4 and previous theorem)
implies or follows
17
Quantifiers
For all or For every
Universal proofs Notation=?
There exists
Used in existential proofs Notation=?
Other notation:
Implication is denoted by =>
E.g., IF A THEN B can also be written as A=>B
18
Proving techniques
By contradiction
Start with a contradictory statement E.g., To prove (A and B => C or D), we could start with:
A and B and not(C or D) and show that could never happen
By induction
(3 steps) Basis, inductive hypothesis, inductive step
By contrapositive statement
If A then B == If not B then not A
19
Proving techniques
By counter-example Show an example that disproves the claim Note: There is no such thing called a proof by example! So when asked to prove a claim, an example that satisfied that claim is not a proof
20
21
If-and-Only-If statements
A if and only if B (A <==> B)
(if part) if B then A ( <= ) (only if part) A only if B ( => ) (same as if A then B)
Example:
Theorem: Let x be a real number. Then floor of x = ceiling of x if and only if x is an integer.
Summary
Automata theory & a historical perspective Chomsky hierarchy Finite automata Alphabets, strings/words/sentences, languages Membership problem Proofs: Deductive, induction, contrapositive, contradiction, counterexample If and only if Read chapter 1 for more examples and exercises Gradiance homework 1
23