"SFSM" redirects here. For the Italian railway company, seeCircumvesuviana.
"Finite automata" redirects here. For the electro-industrial group, seeFinite Automata (band).
Classes of automata
(Clicking on each layer gets an article on that subject)
Afinite-state machine (FSM) orfinite-state automaton (FSA, plural:automata),finite automaton, or simply astate machine, is a mathematicalmodel of computation. It is anabstract machine that can be in exactly one of a finite number ofstates at any given time. The FSM can change from one state to another in response to someinputs; the change from one state to another is called atransition.[1] An FSM is defined by a list of its states, its initial state, and the inputs that trigger each transition. Finite-state machines are of two types—deterministic finite-state machines andnon-deterministic finite-state machines.[2][better source needed] For any non-deterministic finite-state machine, an equivalent deterministic one can be constructed.[citation needed]
The behavior of state machines can be observed in many devices in modern society that perform a predetermined sequence of actions depending on a sequence of events with which they are presented. Simple examples arevending machines, which dispense products when the proper combination of coins is deposited;elevators, whose sequence of stops is determined by the floors requested by riders;traffic lights, which change sequence when cars are waiting; andcombination locks, which require the input of a sequence of numbers in the proper order.
The finite-state machine has less computational power than some other models of computation such as theTuring machine.[3] The computational power distinction means there are computational tasks that a Turing machine can do but an FSM cannot. This is because an FSM'smemory is limited by the number of states it has. A finite-state machine has the same computational power as a Turing machine that is restricted such that its head may only perform "read" operations, and always has to move from left to right. FSMs are studied in the more general field ofautomata theory.
An example of a simple mechanism that can be modeled by a state machine is aturnstile.[4][5] A turnstile, used to control access to subways and amusement park rides, is a gate with three rotating arms at waist height, one across the entryway. Initially the arms are locked, blocking the entry, preventing patrons from passing through. Depositing a coin ortoken in a slot on the turnstile unlocks the arms, allowing a single customer to push through. After the customer passes through, the arms are locked again until another coin is inserted.
Considered as a state machine, the turnstile has two possible states:Locked andUnlocked.[4] There are two possible inputs that affect its state: putting a coin in the slot (coin) and pushing the arm (push). In the locked state, pushing on the arm has no effect; no matter how many times the inputpush is given, it stays in the locked state. Putting a coin in – that is, giving the machine acoin input – shifts the state fromLocked toUnlocked. In the unlocked state, putting additional coins in has no effect; that is, giving additionalcoin inputs does not change the state. A customer pushing through the arms gives apush input and resets the state toLocked.
The turnstile state machine can be represented by astate-transition table, showing for each possible state, the transitions between them (based upon the inputs given to the machine) and the outputs resulting from each input:
Current State
Input
Next State
Output
Locked
coin
Unlocked
Unlocks the turnstile so that the customer can push through.
push
Locked
None
Unlocked
coin
Unlocked
None
push
Locked
When the customer has pushed through, locks the turnstile.
The turnstile state machine can also be represented by adirected graph called astate diagram(above). Each state is represented by anode (circle). Edges (arrows) show the transitions from one state to another. Each arrow is labeled with the input that triggers that transition. An input that doesn't cause a change of state (such as acoin input in theUnlocked state) is represented by a circular arrow returning to the original state. The arrow into theLocked node from the black dot indicates it is the initial state.
Astate is a description of the status of a system that is waiting to execute atransition. A transition is a set of actions to be executed when a condition is fulfilled or when an event is received.For example, when using an audio system to listen to the radio (the system is in the "radio" state), receiving a "next" stimulus results in moving to the next station. When the system is in the "CD" state, the "next" stimulus results in moving to the next track. Identical stimuli trigger different actions depending on the current state.
In some finite-state machine representations, it is also possible to associate actions with a state:
an entry action: performedwhen entering the state, and
Severalstate-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). By itself, the table cannot completely describe the action, so it is common to use footnotes. Other related representations may not have this limitation. For example, an FSM definition including the full action's information is possible usingstate tables (see alsovirtual finite-state machine).
SDL embeds basic data types called "Abstract Data Types", an action language, and an execution semantic in order to make the finite-state machine executable.[citation needed]
Fig. 4: Acceptor FSM: parsing the string "nice".Fig. 5: Representation of an acceptor; this example shows one that determines whether a binary number has an even number of 0s, whereS1 is anaccepting state andS2 is anon accepting state.
Acceptors (also calleddetectors orrecognizers) produce binary output, indicating whether or not the received input is accepted. Each state of an acceptor is eitheraccepting ornon accepting. Once all input has been received, if the current state is an accepting state, the input is accepted; otherwise it is rejected. As a rule, input is asequence of symbols (characters); actions are not used. The start state can also be an accepting state, in which case the acceptor accepts the empty string. The example in figure 4 shows an acceptor that accepts the string "nice". In this acceptor, the only accepting state is state 7.
A (possibly infinite) set of symbol sequences, called aformal language, is aregular language if there is some acceptor that acceptsexactly that set.[7] For example, the set of binary strings with an even number of zeroes is a regular language (cf. Fig. 5), while the set of all strings whose length is a prime number is not.[8]
An acceptor could also be described as defining a language that would contain every string accepted by the acceptor but none of the rejected ones; that language isaccepted by the acceptor. By definition, the languages accepted by acceptors are theregular languages.
An example of an accepting state appears in Fig. 5: adeterministic finite automaton (DFA) that detects whether thebinary input string contains an even number of 0s.
S1 (which is also the start state) indicates the state at which an even number of 0s has been input. S1 is therefore an accepting state. This acceptor will finish in an accept state, if the binary string contains an even number of 0s (including any binary string containing no 0s). Examples of strings accepted by this acceptor areε (theempty string), 1, 11, 11..., 00, 010, 1010, 10110, etc.
Fig. 6 Transducer FSM: Moore model exampleFig. 7 Transducer FSM: Mealy model example
Transducers produce output based on a given input and/or a state using actions. They are used for control applications and in the field ofcomputational linguistics.
In control applications, two types are distinguished:
The FSM uses only entry actions, i.e., output depends only on 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".
The FSM also uses 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 7 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., forvirtual FSM but not forevent-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.
Sequencers (also calledgenerators) are a subclass of acceptors and transducers that have a single-letter input alphabet. They produce only one sequence, which can be seen as an output sequence of acceptor or transducer outputs.[6]
A further distinction is betweendeterministic (DFA) andnon-deterministic (NFA,GNFA) automata. In a deterministic automaton, every state has exactly one transition for each possible input. In a non-deterministic automaton, an input can lead to one, more than one, or no transition for a given state. Thepowerset construction algorithm can transform any nondeterministic automaton into a (usually more complex) deterministic automaton with identical functionality.
A finite-state machine with only one state is called a "combinatorial FSM". It only allows actions upon transitioninto a state. This concept is useful in cases where a number of finite-state machines are required to work together, and when it is convenient to consider a purely combinatorial part as a form of FSM to suit the design tools.[12]
There are other sets of semantics available to represent state machines. For example, there are tools for modeling and designing logic for embedded controllers.[13] They combinehierarchical state machines (which usually have more than one current state), flow graphs, andtruth tables into one language, resulting in a different formalism and set of semantics.[14] These charts, likeHarel's original state machines,[15] support hierarchically nested states,orthogonal regions, state actions, and transition actions.[16]
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 apartial 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 machine has the same computational power as aTuring machine that is restricted such that its head may only perform "read" operations, and always has to move from left to right. That is, each formal language accepted by a finite-state machine is accepted by such a kind of restricted Turing machine, and vice versa.[17]
is the inputalphabet (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;
is the state-transition function:;
is the output function.
If the output function depends on the state and input symbol () that definition corresponds to theMealy model, and can be modelled as aMealy machine. If the output function depends only on the state () that definition corresponds to theMoore model, and can be modelled as aMoore machine. A finite-state machine with no output function at all is known as asemiautomaton ortransition 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 every 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.[18]
Optimizing an FSM means finding a machine with the minimum number of states that performs the same function. The fastest known algorithm doing this is theHopcroft minimization algorithm.[19][20] Other techniques include using animplication table, or the Moore reduction procedure.[21] Additionally, acyclic FSAs can be minimized inlinear time.[22]
Finite automata are often used in thefrontend of programming language compilers. Such a frontend may comprise several finite-state machines that implement alexical analyzer and a parser.Starting from a sequence of characters, the lexical analyzer builds a sequence of language tokens (such as reserved words, literals, and identifiers) from which the parser builds a syntax tree. The lexical analyzer and the parser handle the regular andcontext-free parts of the programming language's grammar.[25]
^Wright, David R. (2005)."Finite State Machines"(PDF).CSC215 Class Notes. David R. Wright website, N. Carolina State Univ. Archived fromthe original(PDF) on 2014-03-27. Retrieved2012-07-14.
^Pouly, Marc; Kohlas, Jürg (2011).Generic Inference: A Unifying Theory for Automated Reasoning. John Wiley & Sons. Chapter 6. Valuation Algebras for Path Problems, p. 223 in particular.ISBN978-1-118-01086-0.
^Felkin, M. (2007). Guillet, Fabrice; Hamilton, Howard J. (eds.).Quality Measures in Data Mining - Studies in Computational Intelligence. Vol. 43. Springer, Berlin, Heidelberg. pp. 277–278.doi:10.1007/978-3-540-44918-8_12.ISBN978-3-540-44911-9.
^Brutscheck, M., Berger, S., Franke, M., Schwarzbacher, A., Becker, S.: Structural Division Procedure for Efficient IC Analysis. IET IrishSignals and Systems Conference, (ISSC 2008), pp.18–23. Galway, Ireland, 18–19 June 2008.[1]
^Hamon, G. (2005).A Denotational Semantics for Stateflow. International Conference on Embedded Software. Jersey City, NJ: ACM. pp. 164–172.CiteSeerX10.1.1.89.8817.
^Edward F. Moore (1956). C.E. Shannon and J. McCarthy (ed.). "Gedanken-Experiments on Sequential Machines".Annals of Mathematics Studies.34. Princeton University Press:129–153. Here: Theorem 4, p.142.
^Revuz, D. (1992). "Minimization of Acyclic automata in Linear Time".Theoretical Computer Science.92:181–189.doi:10.1016/0304-3975(92)90142-3.
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.
Brookshear, J. Glenn (1989).Theory of Computation: Formal Languages, Automata, and Complexity. Redwood City, California: Benjamin/Cummings Publish Company, Inc.ISBN978-0-8053-0143-4.
Davis, Martin; Sigal, Ron; Weyuker, Elaine J. (1994).Computability, Complexity, and Languages and Logic: Fundamentals of Theoretical Computer Science (2nd ed.). San Diego: Academic Press, Harcourt, Brace & Company.ISBN978-0-12-206382-4.
Hopkin, David; Moss, Barbara (1976).Automata. New York: Elsevier North-Holland.ISBN978-0-444-00249-5.
Kozen, Dexter C. (1997).Automata and Computability (1st ed.). New York: Springer-Verlag.ISBN978-0-387-94907-9.
Pippenger, Nicholas (1997).Theories of Computability (1st ed.). Cambridge, England: Cambridge University Press.ISBN978-0-521-55380-3.
Rodger, Susan; Finley, Thomas (2006).JFLAP: An Interactive Formal Languages and Automata Package (1st ed.). Sudbury, MA: Jones and Bartlett.ISBN978-0-7637-3834-1.
Sipser, Michael (2006).Introduction to the Theory of Computation (2nd ed.). Boston Mass: Thomson Course Technology.ISBN978-0-534-95097-2.
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.
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.
Hill, Fredrick J.; Peterson, Gerald R. (1965).Introduction to the Theory of Switching Circuits (1st ed.). New York: McGraw-Hill Book Company. Library of Congress Card Catalog Number 65-17394.
"We may think of aMarkov chain as a process that moves successively through a set of statess1,s2, …,sr. … if it is in statesi it moves on to the next stop to statesj with probabilitypij. These probabilities can be exhibited in the form of a transition matrix" (Kemeny (1959), p. 384)
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.
Kemeny, John G.; Mirkil, Hazleton; Snell, J. Laurie; Thompson, Gerald L. (1959).Finite Mathematical Structures (1st ed.). Englewood Cliffs, N.J.: Prentice-Hall, Inc. Library of Congress Card Catalog Number 59-12841. Chapter 6 "Finite Markov Chains".
Each category of languages, except those marked by a*, is aproper subset of the category directly above it.Any language in each category is generated by a grammar and by an automaton in the category in the same line.