cl
play

cl a simple form of computation used widely one way to find - PDF document

Finite-State Machines (Automata) lecture 12 cl a simple form of computation used widely one way to find patterns one way to describe reactive systems 1 Reactive Systems Wait to receive an input Respond with: an output


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

  2. Reactive Systems • Wait to receive an input • Respond with: an output (possibly changing to a new state) or change to new state without output • Response depends on (finite) history Informatics 1 School of Informatics, University of Edinburgh 2

  3. 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). Informatics 1 School of Informatics, University of Edinburgh 3

  4. A formal mathematical Formal Definition DFA definition of a finite state Deterministic FSM, deterministic finite automaton D = ( Q ,s 0 , F , Σ , N ) machine • Set of states, Q • I nitial state s 0 ∈ Q a • Accepting states F ⊆ Q • A lphabet Σ t t ʹ • Next state function, t ′ = N (t, a) where t, t ′ ∈ Q and a ∈ Σ . Informatics 1 School of Informatics, University of Edinburgh 4

  5. A formal mathematical Formal Definition NFA definition of a finite state Non-deterministic FSM, non-deterministic finite automaton machine N = ( Q ,s 0 , F , Σ , T ) • Set of states, Q a • I nitial state s 0 ∈ Q • Accepting states F ⊆ Q s t • A lphabet Σ • Transition relation, T (s, a, t) a where s, t ∈ Q and a ∈ Σ ∪ { ε } . Informatics 1 School of Informatics, University of Edinburgh 5

  6. A formal mathematical Formal Definition definition of a finite state Every DFA is a NFA machine Deterministic FSM, Non-deterministic FSM, D = ( Q ,s 0 , F , Σ , N ) N = ( Q ,s 0 , F , Σ , T ) a • Set of states, Q s t • I nitial state s 0 ∈ Q • Accepting states F ⊆ Q • A lphabet Σ • T (s, a, t) iff t = N(s, a) Informatics 1 School of Informatics, University of Edinburgh 6

  7. Deterministic FSMs Many authors give an informal definition of deterministic • all states have no more than one transition leaving the state for each input symbol. Formal definition says, exactly one state … • We consider the informal presentation to include an implicit “black hole”, or “sink” state, from which there is no escape. • Where there is no explicit transition for a symbol, it takes us to the black hole. Informatics 1 School of Informatics, University of Edinburgh 7

  8. Formal Definition FSM transducer model, M , consists of: • Set of states, Q • I nitial state s 0 ∈ Q • A lphabets of input and output symbols i / o • Transition relation, T (s, a, t) where s, t ∈ Q and a ∈ ( In ∪ { ε }) x ( Out ∪ { ε }) . i/o s 1 s 2 state transition next state Informatics 1 School of Informatics, University of Edinburgh 8

  9. Parking Meter Example Σ = {m,t,r} money, ticket request, refund request Λ = {p,d} print ticket, deliver refund Q = {1,2} T = {(1,t/ ε ,1), (1,r/ ε ,1), (1,m/ ε ,2), (2,t/p,1), (2,r/d,1), (2,m/ ε ,2)} t/p t/ m/ 2 m/ 1 r/d r/ This is a transducer FSM because it has some outputs. Informatics 1 School of Informatics, University of Edinburgh 9

  10. FSM Traces • Finite sequence of state and transition labels, starting, alternating, and ending with a state: [s 0 , i 1 /o 1 , s 1 , i 2 /o 2 , s 2 , … s n-1 , i n /o n , s n ] • s 0 is the initial state. • Each [s i-1 , i i /o i , s i ] subsequence must appear as a transition in T Informatics 1 School of Informatics, University of Edinburgh 10

  11. Parking Meter Trace Example t/ t/p m/ m/ 1 2 r/d r/ Traces include: [1, m/, 2, t/p, 1] [1, m/, 2, m/, 2, r/d, 1] [1, m/, 2, t/p, 1, m/, 2, m/, 2] [1, t/, 1, t/, 1, m/, 2] … etc Behaviour of FSM is the set of all possible traces. This is not necessarily a finite set. Informatics 1 School of Informatics, University of Edinburgh 11

  12. Determinism i 1 /o 1 • In a deterministic FSM, all states have no i 1 ≠ i 2 s 2 more than one transition leaving the state s 1 for each input symbol. i 2 /o 2 s 3 i/o 1 • In a non-deterministic FSM, states may s 2 have more than one transition leaving to s 1 different successor states for the same i/o 2 s 3 input symbol. • Sometimes non-deterministic FSMs are easier to define. • Can always convert from a non- deterministic to a deterministic FSM. Informatics 1 School of Informatics, University of Edinburgh 12

  13. Determinism and Traces A FSM, M , is deterministic if for every string x ∈Σ * there is at most one trace for x in M (where Σ * is the set of all strings in alphabet of M ) non-deterministic (choice) deterministic (no choice) a b a a 1 2 1 2 Sequence Trace Sequence Trace aa [1,a,1,a,2] ba [1,b,1,a,2] aa [1,a,1,a,1] bb [1,b,1,b,1] Informatics 1 School of Informatics, University of Edinburgh 13

  14. Acceptors Definition as before but: • Empty output alphabet (all outputs are ε ) • Some states marked as accepting. i acceptor state Input sequence is accepted if there is a trace from the initial state to an acceptor state. Language of the FSM is the set of sequences it accepts. Informatics 1 School of Informatics, University of Edinburgh 14

  15. Acceptor Example number of 1’s is number of 1’s and number of 0’s is one larger than number of 0’s one larger than number of 0’s are the same number of 1’s 1 0 2 1 3 0 1 0 1 Black hole; we can never escape from 4 here to an acceptor 0 1 Accepts strings of 0’s and 1’s for which the difference between number of 0’s and number of 1’s in a subsequence is at most 1. Informatics 1 School of Informatics, University of Edinburgh 15

  16. Language of a Deterministic FSM Acceptor Set of strings whose (unique) traces end in an accepting state (s a ∈ F) b Accepts: ba bba a bbba 1 2 … etc Rejects: aba (no trace) bbb (trace but not ending in accepting state) Informatics 1 School of Informatics, University of Edinburgh 16

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