cl
play

cl a simple form of computation used widely one way to find - PowerPoint PPT Presentation

Finite-State Machines (Automata) lecture 12 cl a simple form of computation used widely one way to find patterns 1 current A A B C D D B B C D A next C 2 Application Fields Industry real-time control,


  1. Finite-State Machines (Automata) lecture 12 cl • a simple form of computation • used widely • one way to find patterns 1

  2. current A A B C D D B B C D A next C 2

  3. Application Fields Industry • real-time control, vending machines, cash dispensers, etc. Electronic circuits • data path / control path • memory / cache handling • protocols, USB, etc. Communication protocols • initiation and maintenance of communication links • error detection and handling, packet retransmission Language analysis • natural languages 001 • programming languages • search engines 3

  4. Finite State Machines • A conceptual tool for modelling reactive systems. • Not limited to software systems. • Used to specify required system behaviour in a precise way. • Then implement as software/hardware (and perhaps verify behaviour against FSM). • Finite state machines can also be viewed as rules for generating sets of strings 
 ( = sets of finite sequences of symbols) Informatics 1 School of Informatics, University of Edinburgh 4

  5. A Decimal Number skip ε d + ⎮ − . d d start d d end alternative paths repetition sta sta Each path from start to end, with a choice of one of the labels for each edge traversal, gives a decimal number. d = {"0","1","2","3","4","5","6","7","8","9"} + ⎮ − = { "+","-" } ε = "" . = "." 5

  6. This gives us a new way of defining sets by rules. ε d + ⎮ − . d d d d whole number number A whole number is a digit followed by any number of digits, or a sign followed by a digit followed by any number of digits 6

  7. This gives us a new way of defining sets by rules. ε d + ⎮ − . d d d d whole number number A whole number is a digit followed by any number of digits, or a sign followed by a digit followed by any number of digits. A number is a whole number or a whole number followed by a decimal point followed by a digit followed by any number of digits 7

  8. finite state machines A labelled directed graph nodes edges with R a set of start nodes and a set of end nodes Each edge is labelled with a set of strings 8

  9. finite state machines A labelled directed graph nodes edges with R a set of start nodes and a set of end nodes Each edge is labelled with a set of strings Each path from a start node to an end node, with a choice of one of the labels for each edge traversal, gives, by concatenation, a string. The language defined by the machine is the set of all such strings 9

  10. A Decimal Number skip ε d + ⎮ − . d d start d d end alternative paths repetition sta sta The language defined by this machine is the set of all decimal numerals 10

  11. finite state machines R S What happens when we link two machines together? 11

  12. sequence RS R S ε RS = { r ++ s | r ∈ R ∧ s ∈ S } 12

  13. alternation R | S R S R | S = R ∪ S 13

  14. iteration R* ε ε R ε "" ∈ R* x ∈ R*, r ∈ R ⇒ x ++ r ∈ R* 14

  15. finite state spaghetti A language is a set of finite sequences of words. A language is a set of finite sequences of symbols. A language is regular iff it is the language recognised by some Finite State Machine. 15

  16. Three states State 2 Six transitions Start state b a,b a,b Accepting state 0 1 a a,b Transitions s t each transition is labelled with a finite sequence of tokens, the tokens, depend on the application, they may be letters, symbols, words, actions, …

  17. Three states State One start state 2 One accepting Start state Six transitions b a,b a,b Accepting state 0 1 a a,b Transitions s t Normally we only use sequences of length 0 or 1 as labels. Then we write a for <a> and ε for <> We generate strings of tokens by tracing a path from a start state to an accepting state. Which strings are accepted by this automaton?

  18. Three states State One start state 2 One accepting Start state Six transitions b a,b a,b Accepting state 0 1 a a,b Transitions s t Normally we only use sequences of length 0 or 1 as labels. Then we write a for <a> and ε for <> Strings that begin with b and are of even length or begin with a and are of odd length

  19. Three states State Two start states One accepting 2 Start state Four transitions b b a Accepting state a,b 0 1 Transitions s t a This machine is non-deterministic some strings have more than one trace some strings have no traces Which of these strings are accepted? abba abab baba aba bab ab ba a b

  20. Three states State Two start states One accepting 2 Start state Four transitions b b a Accepting state a,b 0 1 Transitions s t a This machine is non-deterministic some strings have more than one trace some strings have no traces Which of these strings are accepted? abba abab baba aba bab ab ba a b

  21. Three states State Two start states One accepting 2 Start state Four transitions b b a Accepting state a,b 0 1 Transitions s t a This machine is non-deterministic some strings have more than one trace some strings have no traces a ε L Which of these strings are accepted? ba ε L x ε L → x ba ε L abba abab baba aba bab ab ba a b

  22. KISS – DFA D eterministic F inite A utomaton Exactly one start state, and from each state, q , for each token, t , there is exactly one transition from s with label t 22

  23. This machine has four states, 
 Q = { s0, s1, s2, s3 } Its alphabet has three symbols 
 Σ = { 0, 1, 2 } For each (state, symbol) pair, (q,s) there is exactly one transition 
 from q with label s s q q ʹ This means that 
 q ʹ is determined by (q,s)

  24. For each (state, symbol) pair, (q,s) there is exactly one transition 
 from q with label s s q q ʹ This means that 
 This is a q ʹ is determined by (q,s) deterministic 
 finite-state 
 It has only one start state, this automaton means that any input string DFA determines a sequence of states.

  25. 
 For each (state, symbol) pair, (q,s) there is exactly one transition 
 from q with label s s q q ʹ q ʹ is determined by (q,s) It has only one start state This is a Every DFA has a deterministic finite- next-state function state automaton, DFA q ʹ = F(q,s)

  26. DFA ⊂ NFA Every DFA has a next-state function A DFA has only one start state q ʹ = F(q,s) For each (state, symbol) pair, (q,s) there is exactly one transition 
 any input string from q with label s determines q ʹ is determined by q and s a sequence of states. We will focus now on DFA and return later to NFA. Then we will show that for any NFA there isa a DFA that defines the same language. 26

  27. Every DFA has a next-state function q ʹ = F(q,s) s q q ʹ Since we have finitely many symbols and states This can be given by a table This is a deterministic finite- 0 1 2 s0 s0 state automaton, s1 s2 DFA s2 s3 s3 s1

  28. Every DFA has a next-state function q ʹ = F(q,s) s q q ʹ Since we have finitely many symbols and states This can be given by a next-state table This is a deterministic finite- q\s 0 1 2 s0 s0 s1 s2 state automaton, s1 s3 s0 s1 DFA s2 s2 s3 s0 s3 s1 s2 s3

  29. Every DFA has a next-state function q ʹ = F(q,s) s q q ʹ We can also represent the transitions by a relation. Which symbol(s) take us from state q to state r ? This is a deterministic finite- q\r s0 s1 s2 s3 s0 0 1 2 state automaton, s1 DFA s2 s3 0 1

  30. Every DFA has a next-state function q ʹ = F(q,s) s q q ʹ We can also represent the transitions by a relation. Which symbol(s) take us from state q to state r ? This is a deterministic finite- q\r s0 s1 s2 s3 s0 0 1 2 state automaton, s1 1 2 0 DFA s2 2 0 1 s3 0 1 2

  31. For every DFA, any input string determines a path or trace input path 000 s0 s0 s0 s0 021 s0 s0 s2 s3 120 s0 s1 s1 s3 11 12 This is a 21 deterministic finite- 22 state automaton, 111 DFA 110 212

  32. For every DFA, any input string determines a path input path 000 s0 s0 s0 s0 021 s0 s0 s2 s3 120 s0 s1 s1 s3 11 s0 s1 s0 12 s0 s1 s1 This is a 21 s0 s2 s3 deterministic finite- 22 s0 s2 s0 state automaton, 111 s0 s1 s0 s1 DFA 110 s0 s1 s0 s0 212 s0 s2 s3 s3

  33. Which paths end in an accepting state? input path 000 s0 s0 s0 s0 021 s0 s0 s2 s3 120 s0 s1 s1 s3 11 s0 s1 s0 12 s0 s1 s1 This is a 21 s0 s2 s3 deterministic finite- 22 s0 s2 s0 state automaton, 111 s0 s1 s0 s1 DFA 110 s0 s1 s0 s0 212 s0 s2 s3 s3

  34. Which paths end in an accepting state? input path 0 000 s0 s0 s0 s0 7 021 s0 s0 s2 s3 15 120 s0 s1 s1 s3 4 11 s0 s1 s0 5 12 s0 s1 s1 This is a 7 21 s0 s2 s3 deterministic finite- 8 22 s0 s2 s0 state automaton, 13 111 s0 s1 s0 s1 DFA 12 110 s0 s1 s0 s0 23 212 s0 s2 s3 s3

  35. What is the meaning of each state? 0 .Express each of these 1 decimal numbers 2 in ternary notation, 3 and find out 4 what state is reached 5 by the trace they determine This is a 6 deterministic finite- 7 state automaton, 8 DFA 9

  36. What is the meaning of each state? 0 This machine counts 1 ternary 2 mod 4 3 4 F(q, s) = 3 * q + s (mod 4) 5 This is a 6 deterministic finite- 7 state automaton, 8 DFA 9

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