Finite-state machine
This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these messages)
No issues specified. Please specify issues, or remove this template. |
A finite-state machine (FSM) or finite-state automaton (plural: automata), or simply a state machine, is a mathematical abstraction sometimes used to design digital logic or computer programs. It is a behavior model composed of a finite number of states, transitions between those states, and actions, similar to a flow graph in which one can inspect the way logic runs when certain conditions are met. It has finite internal memory, an input feature that reads symbols in a sequence, one at a time without going backward; and an output feature, which may be in the form of a user interface, once the model is implemented. The operation of an FSM begins from one of the states (called a start state), goes through transitions depending on input to different states and can end in any of those available, however only a certain set of states mark a successful flow of operation (called accept states).
Finite-state machines can solve a large number of problems, among which are electronic design automation, communication protocol design, parsing and other engineering applications. In biology and artificial intelligence research, state machines or hierarchies of state machines are sometimes used to describe neurological systems and in linguistics—to describe the grammars of natural languages.
Concepts and vocabulary
A current state is determined by past states of the system. As such, it can be said to record information about the past, i.e., it reflects the input changes from the system start to the present moment. The number and names of the states typically depend on the different possible states of the memory, e.g. if the memory is three bits long, there are 8 possible states. A transition indicates a state change and is described by a condition that would need to be fulfilled to enable the transition. An action is a description of an activity that is to be performed at a given moment. There are several action types:
- Entry action
- which is performed when entering the state
- Exit action
- which is performed when exiting the state
- Input action
- which is performed depending on present state and input conditions
- Transition action
- which is performed when performing a certain transition
An FSM can be represented using a state diagram (or state transition diagram) as in figure 1 above. Besides this, several state transition table types are used. The most common representation is shown below: the combination of current state (e.g. B) and input (e.g. Y) shows the next state (e.g. C). The complete actions information can be added only using footnotes. An FSM definition including the full actions information is possible using state tables (see also VFSM).
Current state → Input ↓ |
State A | State B | State C |
---|---|---|---|
Input X | ... | ... | ... |
Input Y | ... | State C | ... |
Input Z | ... | ... | ... |
In addition to their use in modeling reactive systems presented here, finite state automata are significant in many different areas, including electrical engineering, linguistics, computer science, philosophy, biology, mathematics, and logic. Finite state machines are a class of automata studied in automata theory and the theory of computation. In computer science, finite state machines are widely used in modeling of application behavior, design of hardware digital systems, software engineering, compilers, network protocols, and the study of computation and languages.
Classification
There are two different groups of state machines: Acceptors/Recognizers and Transducers.
Acceptors and recognizers
Acceptors and recognizers (also sequence detectors) produce a binary output, saying either yes or no to answer whether the input is accepted by the machine or not. All states of the FSM are said to be either accepting or not accepting. At the time when all input is processed, if the current state is an accepting state, the input is accepted; otherwise it is rejected. As a rule the input are symbols (characters); actions are not used. The example in figure 2 shows a finite state machine which accepts the word "nice". In this FSM the only accepting state is number 7.
The machine can also be described as defining a language, which would contain every word accepted by the machine but none of the rejected ones; we say then that the language is accepted by the machine. By definition, the languages accepted by FSMs are the regular languages—that is, a language is regular if there is some FSM that accepts it.
Start state
The start state is usually shown drawn with an arrow "pointing at it from any where" (Sipser (2006) p. 34).
Accept (or final) states
Accept states (also referred to as accepting or final states) are those at which the machine reports that the input string, as processed so far, is a member of the language it accepts. It is usually represented by a double circle.
An example of an accepting state appears in the diagram to the right: a deterministic finite automaton (DFA) that detects whether the binary input string contains an even number of 0's.
S1 (which is also the start state) indicates the state at which an even number of 0's has been input. S1 is therefore an accepting state. This machine will finish in an accept state, if the binary string contains an even number of 0's (including any binary string containing no 0's). Examples of strings accepted by this DFA are epsilon (the empty string), 1, 11, 11..., 00, 010, 1010, 10110, etc...
Transducers
Transducers generate output based on a given input and/or a state using actions. They are used for control applications and in the field of computational linguistics. Here two types are distinguished:
- Moore machine
- The FSM uses only entry actions, i.e., output depends only on the state. The advantage of the Moore model is a simplification of the behaviour. Consider an elevator door. The state machine recognizes two commands: "command_open" and "command_close" which trigger state changes. The entry action (E:) in state "Opening" starts a motor opening the door, the entry action in state "Closing" starts a motor in the other direction closing the door. States "Opened" and "Closed" stop the motor when fully opened or closed. They signal to the outside world (e.g., to other state machines) the situation: "door is open" or "door is closed".
- Mealy machine
- The FSM uses only input actions, i.e., output depends on input and state. The use of a Mealy FSM leads often to a reduction of the number of states. The example in figure 4 shows a Mealy FSM implementing the same behaviour as in the Moore example (the behaviour depends on the implemented FSM execution model and will work, e.g., for virtual FSM but not for event driven FSM). There are two input actions (I:): "start motor to close the door if command_close arrives" and "start motor in the other direction to open the door if command_open arrives". The "opening" and "closing" intermediate states are not shown.
In practice[of what?] mixed models are often used.[citation needed]
More details about the differences and usage of Moore and Mealy models, including an executable example, can be found in the external technical note "Moore or Mealy model?"
Determinism
A further distinction is between deterministic (DFA) and non-deterministic (NFA, GNFA) automata. In deterministic automata, every state has exactly one transition for each possible input. In non-deterministic automata, an input can lead to one, more than one or no transition for a given state. This distinction is relevant in practice, but not in theory, as there exists an algorithm (the powerset construction) which can transform any NFA into a more complex DFA with identical functionality.
The FSM with only one state is called a combinatorial FSM and uses only input actions. This concept is useful in cases where a number of FSM are required to work together, and where it is convenient to consider a purely combinatorial part as a form of FSM to suit the design tools.
UML state machines
The Unified Modeling Language has very rich semantics and notation for describing state machines. UML state machines overcome the limitations of traditional finite state machines while retaining their main benefits. UML state machines introduce the new concepts of hierarchically nested states and orthogonal regions, while extending the notion of actions. UML state machines have the characteristics of both Mealy machines and Moore machines. They support actions that depend on both the state of the system and the triggering event, as in Mealy machines, as well as entry and exit actions, which are associated with states rather than transitions, as in Moore machines.
Alternative semantics
There are other sets of semantics available to represent state machines. For example, there are tools for modeling and designing logic for embedded controllers.[1] They combine hierarchical state machines, flow graphs, and truth tables into one language, resulting in a different formalism and set of semantics.[2] Figure 6 illustrates this mix of state machines and flow graphs with a set of states to represent the state of a stopwatch and a flow graph to control the ticks of the watch. These charts, like Harel's original state machines,[3] support hierarchically nested states, orthogonal regions, state actions, and transition actions.[4]
FSM logic
The next state and output of an FSM is a function of the input and of the current state. The FSM logic is shown in Figure 7.
Mathematical model
In accordance with the general classification, the following formal definitions are found:
- A deterministic finite state machine or acceptor deterministic finite state machine is a quintuple , where:
- is the input alphabet (a finite, non-empty set of symbols).
- is a finite, non-empty set of states.
- is an initial state, an element of .
- is the state-transition function: (in a nondeterministic finite state machine it would be , i.e., would return a set of states).
- is the set of final states, a (possibly empty) subset of .
For both deterministic and non-deterministic FSMs, it is conventional to allow to be a partial function, i.e. does not have to be defined for every combination of and . If an FSM is in a state , the next symbol is and is not defined, then can announce an error (i.e. reject the input). This is useful in definitions of general state machines, but less useful when transforming the machine. Some algorithms in their default form may require total functions.
- A finite state transducer is a sextuple , where:
- is the input alphabet (a finite non empty set of symbols).
- is the output alphabet (a finite, non-empty set of symbols).
- is a finite, non-empty set of states.
- is the initial state, an element of . In a nondeterministic finite state machine, is a set of initial states.
- is the state-transition function: .
- is the output function.
If the output function is a function of a state and input alphabet () that definition corresponds to the Mealy model, and can be modelled as a Mealy machine. If the output function depends only on a state () that definition corresponds to the Moore model, and can be modelled as a Moore machine. A finite-state machine with no output function at all is known as a semiautomaton or transition system.
If we disregard the first output symbol of a Moore machine, , then it can be readily converted to an output-equivalent Mealy machine by setting the output function of very Mealy transition (i.e. labeling every edge) with the output symbol given of the destination Moore state. The converse transformation is less straightforward because a Mealy machine state may have different output labels on its incoming transitions (edges). Every such state needs to be split in multiple Moore machine states, one for every incident output symbol.[5]
Optimization
Optimizing an FSM means finding the machine with the minimum number of states that performs the same function. The fastest known algorithm doing this is the Hopcroft minimization algorithm.[6][7] Other techniques include using an implication table, or the Moore reduction procedure. Additionally, acyclic FSAs can be optimized using a simple bottom up algorithm.[citation needed]
Implementation
Hardware applications
In a digital circuit, an FSM may be built using a programmable logic device, a programmable logic controller, logic gates and flip flops or relays. More specifically, a hardware implementation requires a register to store state variables, a block of combinational logic which determines the state transition, and a second block of combinational logic that determines the output of an FSM. One of the classic hardware implementations is the Richards controller.
Mealy and Moore machines produce logic with asynchronous output, because there is a propagation delay between the flip-flop and output. This causes slower operating frequencies in FSM. A Mealy or Moore machine can be convertible to a FSM which output is directly from a flip-flop, which makes the FSM run at higher frequencies. This kind of FSM is sometimes called Medvedev FSM.[8] A counter is the simplest form of this kind of FSM.
Software applications
The following concepts are commonly used to build software applications with finite state machines:
See also
- Abstract state machines (ASM)
- Artificial intelligence (AI)
- Abstract State Machine Language (AsmL)
- Control system
- Control table
- Decision tables
- DEVS: Discrete Event System Specification
- Extended finite-state machine (EFSM)
- Finite state machine with datapath
- Hidden Markov model
- Petri net
- Pushdown automaton
- Quantum finite automata (QFA)
- Recognizable language
- Sequential logic
- State diagram
- Transition system
- Tree automaton
- Turing machine
- UML state machine
- SCXML
- OpenGL
References
- ^ Tiwari, A. (2002). Formal Semantics and Analysis Methods for Simulink Stateflow Models.
- ^ Hamon, G. (2005). A Denotational Semantics for Stateflow. International Conference on Embedded Software (pp. 164–172). Jersey City, NJ: ACM.
- ^ Harel, D. (1987). A Visual Formalism for Complex Systems. Science of Computer Programming , 231–274.
- ^ Alur, R., Kanade, A., Ramesh, S., & Shashidhar, K. C. (2008). Symbolic analysis for improving simulation coverage of Simulink/Stateflow models. Internation Conference on Embedded Software (pp. 89–98). Atlanta, GA: ACM.
- ^ James Andrew Anderson; Thomas J. Head (2006). Automata theory with modern applications. Cambridge University Press. pp. 105–108. ISBN 9780521848879.
- ^ Hopcroft, John E (1971). An n log n algorithm for minimizing states in a finite automaton [1]
- ^ Almeida, Marco; Moreira, Nelma; Reis, Rogerio (2007). On the performance of automata minimization algorithms. [2]
- ^ "FSM: Medvedev".
Further reading
General
- Wagner, F., "Modeling Software with Finite State Machines: A Practical Approach", Auerbach Publications, 2006, ISBN 0-8493-8086-3.
- Samek, M., Practical Statecharts in C/C++, CMP Books, 2002, ISBN 1-57820-110-1.
- Samek, M., Practical UML Statecharts in C/C++, 2nd Edition, Newnes, 2008, ISBN 0-7506-8706-1.
- Gardner, T., Advanced State Management, 2007
- Cassandras, C., Lafortune, S., "Introduction to Discrete Event Systems". Kluwer, 1999, ISBN 0-7923-8609-4.
- Timothy Kam, Synthesis of Finite State Machines: Functional Optimization. Kluwer Academic Publishers, Boston 1997, ISBN 0-7923-9842-4
- Tiziano Villa, Synthesis of Finite State Machines: Logic Optimization. Kluwer Academic Publishers, Boston 1997, ISBN 0-7923-9892-0
- Carroll, J., Long, D. , Theory of Finite Automata with an Introduction to Formal Languages. Prentice Hall, Englewood Cliffs, 1989.
- Kohavi, Z., Switching and Finite Automata Theory. McGraw-Hill, 1978.
- Gill, A., Introduction to the Theory of Finite-state Machines. McGraw-Hill, 1962.
- Ginsburg, S., An Introduction to Mathematical Machine Theory. Addison-Wesley, 1962.
Finite state machines (automata theory) in theoretical computer science
- Arbib, Michael A. (1969). Theories of Abstract Automata (1st ed.). Englewood Cliffs, N.J.: Prentice-Hall, Inc. ISBN 0139133682.
{{cite book}}
: Cite has empty unknown parameter:|coauthors=
(help) - Bobrow, Leonard S. (1974). Discrete Mathematics: Applied Algebra for Computer and Information Science (1st ed.). Philadelphia: W. B. Saunders Company, Inc. ISBN 0721617689.
{{cite book}}
: Unknown parameter|coauthors=
ignored (|author=
suggested) (help) - Booth, Taylor L. (1967). Sequential Machines and Automata Theory (1st ed.). New York: John Wiley and Sons, Inc. Library of Congress Card Catalog Number 67-25924.
{{cite book}}
: Cite has empty unknown parameter:|coauthors=
(help) Extensive, wide-ranging book meant for specialists, written for both theoretical computer scientists as well as electrical engineers. With detailed explanations of state minimization techniques, FSMs, Turing machines, Markov processes, and undecidability. Excellent treatment of Markov processes. - Boolos, George (1989, 1999). Computability and Logic (3rd ed.). Cambridge, England: Cambridge University Press. ISBN 0-521-20402-X.
{{cite book}}
: Check date values in:|year=
(help); Unknown parameter|coauthors=
ignored (|author=
suggested) (help)CS1 maint: year (link) Excellent. Has been in print in various editions and reprints since 1974 (1974, 1980, 1989, 1999). - Brookshear, J. Glenn (1989). Theory of Computation: Formal Languages, Automata, and Complexity. Redwood City, California: Benjamin/Cummings Publish Company, Inc. ISBN 0-8053-0143-7. Approaches Church-Turing thesis from three angles: levels of finite automata as acceptors of formal languages, primitive and partial recursive theory, and power of bare-bones programming languages to implement algorithms, all in one slim volume.
- Davis, Martin (1994). Computability, Complexity, and Languages and Logic: Fundamentals of Theoretical Computer Science (2nd ed.). San Diego: Academic Press, Harcourt, Brace & Company. ISBN 0122063821.
{{cite book}}
: Unknown parameter|coauthors=
ignored (|author=
suggested) (help) - Hopcroft, John (1979). Introduction to Automata Theory, Languages, and Computation (1st ed.). Reading Mass: Addison-Wesley. ISBN 0-201-02988-X.
{{cite book}}
: Unknown parameter|coauthors=
ignored (|author=
suggested) (help) An excellent book centered around the issues of machine-interpretation of "languages", NP-Completeness, etc. - Hopcroft, John E. (2001). Introduction to Automata Theory, Languages, and Computation (2nd ed.). Reading Mass: Addison-Wesley. ISBN 0201441241.
{{cite book}}
: Unknown parameter|coauthors=
ignored (|author=
suggested) (help) Distinctly different and less intimidating than the first edition. - Hopkin, David (1976). Automata. New York: Elsevier North-Holland. ISBN 0-444-00249-9.
{{cite book}}
: Unknown parameter|coauthors=
ignored (|author=
suggested) (help) - Kozen, Dexter C. (1997). Automata and Computability (1st ed.). New York: Springer-Verlag. ISBN 0-387-94907-0.
{{cite book}}
: Cite has empty unknown parameter:|coauthors=
(help) - Lewis, Harry R. (1998). Elements of the Theory of Computation (2nd ed.). Upper Saddle River, New Jersey: Prentice-Hall. ISBN 0-13-262478-8.
{{cite book}}
: Unknown parameter|coauthors=
ignored (|author=
suggested) (help) - Linz, Peter (2006). Formal Languages and Automata (4th ed.). Sudbury, MA: Jones and Bartlett. ISBN 978-0-7637-3798-6.
{{cite book}}
: Cite has empty unknown parameter:|coauthors=
(help) - Minsky, Marvin (1967). Computation: Finite and Infinite Machines (1st ed.). New Jersey: Prentice-Hall.
{{cite book}}
: Cite has empty unknown parameter:|coauthors=
(help) Minsky spends pages 11–20 defining what a "state" is in context of FSMs. His state diagram convention is unconventional. Excellent, i.e., relatively readable, sometimes funny. - Christos Papadimitriou (1993). Computational Complexity (1st ed.). Addison Wesley. ISBN 0-201-53082-1.
- Pippenger, Nicholas (1997). Theories of Computability (1st ed.). Cambridge, England: Cambridge University Press. ISBN 0-521-55380-6 (hc).
{{cite book}}
: Check|isbn=
value: invalid character (help); Cite has empty unknown parameter:|coauthors=
(help) Abstract algebra is at the core of the book, rendering it advanced and less accessible than other texts. - Rodger, Susan (2006). JFLAP: An Interactive Formal Languages and Automata Package (1st ed.). Sudbury, MA: Jones and Bartlett. ISBN 0-7637-3834-4.
{{cite book}}
: Unknown parameter|coauthors=
ignored (|author=
suggested) (help) - Sipser, Michael (2006). Introduction to the Theory of Computation (2nd ed.). Boston Mass: Thomson Course Technology. ISBN 0-534-95097-3.
{{cite book}}
: Cite has empty unknown parameter:|coauthors=
(help) cf Finite state machines (finite automata) in chapter 29. - Wood, Derick (1987). Theory of Computation (1st ed.). New York: Harper & Row, Publishers, Inc. ISBN 0-06-047208-1.
{{cite book}}
: Cite has empty unknown parameter:|coauthors=
(help)
Abstract state machines in theoretical computer science
- Yuri Gurevich (2000), Sequential Abstract State Machines Capture Sequential Algorithms, ACM Transactions on Computational Logic, vl. 1, no. 1 (July 2000), pages 77–111. http://research.microsoft.com/~gurevich/Opera/141.pdf
Machine learning using finite-state algorithms
- Mitchell, Tom M. (1997). Machine Learning (1st ed.). New York: WCB/McGraw-Hill Corporation. ISBN 0-07-042807-7.
{{cite book}}
: Cite has empty unknown parameter:|coauthors=
(help) A broad brush but quite thorough and sometimes difficult, meant for computer scientists and engineers. Chapter 13 Reinforcement Learning deals with robot-learning involving state-machine-like algorithms.
Hardware engineering: state minimization and synthesis of sequential circuits
- Booth, Taylor L. (1967). Sequential Machines and Automata Theory (1st ed.). New York: John Wiley and Sons, Inc. Library of Congress Card Catalog Number 67-25924.
{{cite book}}
: Cite has empty unknown parameter:|coauthors=
(help) Extensive, wide-ranging book meant for specialists, written for both theoretical computer scientists as well as electrical engineers. With detailed explanations of state minimization techniques, FSMs, Turing machines, Markov processes, and undecidability. Excellent treatment of Markov processes. - Booth, Taylor L. (1971). Digital Networks and Computer Systems (1st ed.). New York: John Wiley and Sons, Inc. ISBN 0-471-08840-4.
{{cite book}}
: Cite has empty unknown parameter:|coauthors=
(help) Meant for electrical engineers. More focused, less demanding than his earlier book. His treatment of computers is out-dated. Interesting take on definition of "algorithm". - McCluskey, E. J. (1965). Introduction to the Theory of Switching Circuits (1st ed.). New York: McGraw-Hill Book Company, Inc. Library of Congress Card Catalog Number 65-17394.
{{cite book}}
: Cite has empty unknown parameter:|coauthors=
(help) Meant for hardware electrical engineers. With detailed explanations of state minimization techniques and synthesis techniques for design of combinatory logic circuits. - Hill, Fredrick J. (1965). Introduction to the Theory of Switching Circuits (1st ed.). New York: McGraw-Hill Book Company. Library of Congress Card Catalog Number 65-17394.
{{cite book}}
: Unknown parameter|coauthors=
ignored (|author=
suggested) (help) Meant for hardware electrical engineers. Excellent explanations of state minimization techniques and synthesis techniques for design of combinatory and sequential logic circuits.
Finite Markov chain processes
- "We may think of a Markov chain as a process that moves successively through a set of states s1, s2, ..., sr. ... if it is in state si it moves on to the next stop to state sj with probability pij. These probabilities can be exhibited in the form of a transition matrix" (Kemeny (1959), p. 384)
Finite Markov-chain processes are also known as subshifts of finite type.
- Booth, Taylor L. (1967). Sequential Machines and Automata Theory (1st ed.). New York: John Wiley and Sons, Inc. Library of Congress Card Catalog Number 67-25924.
{{cite book}}
: Cite has empty unknown parameter:|coauthors=
(help) Extensive, wide-ranging book meant for specialists, written for both theoretical computer scientists as well as electrical engineers. With detailed explanations of state minimization techniques, FSMs, Turing machines, Markov processes, and undecidability. Excellent treatment of Markov processes. - Kemeny, John G. (1959). Finite Mathematical Structures (1st ed.). Englewood Cliffs, N.J.: Prentice-Hall, Inc. Library of Congress Card Catalog Number 59-12841.
{{cite book}}
: Unknown parameter|coauthors=
ignored (|author=
suggested) (help) Classical text. cf. Chapter 6 "Finite Markov Chains".
External links
- Free On-Line Dictionary of Computing description of Finite State Machines
- NIST Dictionary of Algorithms and Data Structures description of Finite State Machines
- SourceForge open-source projects focused on state machines
- Intelliwizard - UML StateWizard - A ClassWizard-like round-trip UML dynamic modeling/development framework and tool running in popular IDEs.
- A registry of finite-state technology at the IT Center for Science, Finland.