HOME

TheInfoList



OR:

In the theory of computation, a branch of
theoretical computer science computer science (TCS) is a subset of general computer science and mathematics that focuses on mathematical aspects of computer science such as the theory of computation, lambda calculus, and type theory. It is difficult to circumscribe the ...
, a deterministic finite automaton (DFA)—also known as deterministic finite acceptor (DFA), deterministic finite-state machine (DFSM), or deterministic finite-state automaton (DFSA)—is a
finite-state machine A finite-state machine (FSM) or finite-state automaton (FSA, plural: ''automata''), finite automaton, or simply a state machine, is a mathematical model of computation. It is an abstract machine that can be in exactly one of a finite number o ...
that accepts or rejects a given string of symbols, by running through a state sequence uniquely determined by the string. Hopcroft 2001: ''Deterministic'' refers to the uniqueness of the computation run. In search of the simplest models to capture finite-state machines, Warren McCulloch and Walter Pitts were among the first researchers to introduce a concept similar to finite automata in 1943. The figure illustrates a deterministic finite automaton using a state diagram. In this example automaton, there are three states: S0, S1, and S2 (denoted graphically by circles). The automaton takes a finite
sequence In mathematics, a sequence is an enumerated collection of objects in which repetitions are allowed and order matters. Like a set, it contains members (also called ''elements'', or ''terms''). The number of elements (possibly infinite) is called ...
of 0s and 1s as input. For each state, there is a transition arrow leading out to a next state for both 0 and 1. Upon reading a symbol, a DFA jumps ''deterministically'' from one state to another by following the transition arrow. For example, if the automaton is currently in state S0 and the current input symbol is 1, then it deterministically jumps to state S1. A DFA has a ''start state'' (denoted graphically by an arrow coming in from nowhere) where computations begin, and a
set Set, The Set, SET or SETS may refer to: Science, technology, and mathematics Mathematics *Set (mathematics), a collection of elements *Category of sets, the category whose objects and morphisms are sets and total functions, respectively Electro ...
of ''accept states'' (denoted graphically by a double circle) which help define when a computation is successful. A DFA is defined as an abstract mathematical concept, but is often implemented in hardware and software for solving various specific problems such as
lexical analysis In computer science, lexical analysis, lexing or tokenization is the process of converting a sequence of characters (such as in a computer program or web page) into a sequence of ''lexical tokens'' ( strings with an assigned and thus identified ...
and
pattern matching In computer science, pattern matching is the act of checking a given sequence of tokens for the presence of the constituents of some pattern. In contrast to pattern recognition, the match usually has to be exact: "either it will or will not be ...
. For example, a DFA can model software that decides whether or not online user input such as email addresses are syntactically valid. DFAs have been generalized to '' nondeterministic finite automata (NFA)'' which may have several arrows of the same label starting from a state. Using the
powerset construction In the theory of computation and automata theory, the powerset construction or subset construction is a standard method for converting a nondeterministic finite automaton (NFA) into a deterministic finite automaton (DFA) which recognizes the sa ...
method, every NFA can be translated to a DFA that recognizes the same language. DFAs, and NFAs as well, recognize exactly the set of
regular language In theoretical computer science and formal language theory, a regular language (also called a rational language) is a formal language that can be defined by a regular expression, in the strict sense in theoretical computer science (as opposed to ...
s.


Formal definition

A deterministic finite automaton is a 5-
tuple In mathematics, a tuple is a finite ordered list (sequence) of elements. An -tuple is a sequence (or ordered list) of elements, where is a non-negative integer. There is only one 0-tuple, referred to as ''the empty tuple''. An -tuple is defi ...
, , consisting of * a finite set of states * a finite set of input symbols called the
alphabet An alphabet is a standardized set of basic written graphemes (called letters) that represent the phonemes of certain spoken languages. Not all writing systems represent language in this way; in a syllabary, each character represents a syllab ...
* a transition function * an initial or
start state A finite-state machine (FSM) or finite-state automaton (FSA, plural: ''automata''), finite automaton, or simply a state machine, is a mathematical model of computation. It is an abstract machine that can be in exactly one of a finite number o ...
q_0 \in Q * a set of accept states F \subseteq Q Let be a string over the alphabet . The automaton accepts the string if a sequence of states, , exists in with the following conditions: # # , for # r_n \in F. In words, the first condition says that the machine starts in the start state . The second condition says that given each character of string , the machine will transition from state to state according to the transition function . The last condition says that the machine accepts if the last input of causes the machine to halt in one of the accepting states. Otherwise, it is said that the automaton ''rejects'' the string. The set of strings that accepts is the
language Language is a structured system of communication. The structure of a language is its grammar and the free components are its vocabulary. Languages are the primary means by which humans communicate, and may be conveyed through a variety of ...
''recognized'' by and this language is denoted by . A deterministic finite automaton without accept states and without a starting state is known as a transition system or semiautomaton. For more comprehensive introduction of the formal definition see automata theory.


Example

The following example is of a DFA , with a binary alphabet, which requires that the input contains an even number of 0s. where * * * * and * is defined by the following state transition table: : The state represents that there has been an even number of 0s in the input so far, while signifies an odd number. A 1 in the input does not change the state of the automaton. When the input ends, the state will show whether the input contained an even number of 0s or not. If the input did contain an even number of 0s, will finish in state , an accepting state, so the input string will be accepted. The language recognized by is the
regular language In theoretical computer science and formal language theory, a regular language (also called a rational language) is a formal language that can be defined by a regular expression, in the strict sense in theoretical computer science (as opposed to ...
given by the
regular expression A regular expression (shortened as regex or regexp; sometimes referred to as rational expression) is a sequence of characters that specifies a search pattern in text. Usually such patterns are used by string-searching algorithms for "find" ...
(1*) (0 (1*) 0 (1*))*, where * is the Kleene star, e.g., 1* denotes any number (possibly zero) of consecutive ones.


Variations


Complete and incomplete

According to the above definition, deterministic finite automata are always ''complete'': they define from each state a transition for each input symbol. While this is the most common definition, some authors use the term deterministic finite automaton for a slightly different notion: an automaton that defines ''at most'' one transition for each state and each input symbol; the transition function is allowed to be
partial Partial may refer to: Mathematics *Partial derivative, derivative with respect to one of several variables of a function, with the other variables held constant ** ∂, a symbol that can denote a partial derivative, sometimes pronounced "partial d ...
. When no transition is defined, such an automaton halts.


Local automata

A local automaton is a DFA, not necessarily complete, for which all edges with the same label lead to a single vertex. Local automata accept the class of local languages, those for which membership of a word in the language is determined by a "sliding window" of length two on the word.Lawson (2004) p.129Sakarovitch (2009) p.228 A Myhill graph over an alphabet ''A'' is a
directed graph In mathematics, and more specifically in graph theory, a directed graph (or digraph) is a graph that is made up of a set of vertices connected by directed edges, often called arcs. Definition In formal terms, a directed graph is an ordered pa ...
with vertex set ''A'' and subsets of vertices labelled "start" and "finish". The language accepted by a Myhill graph is the set of directed paths from a start vertex to a finish vertex: the graph thus acts as an automaton. The class of languages accepted by Myhill graphs is the class of local languages.Lawson (2004) p.128


Randomness

When the start state and accept states are ignored, a DFA of states and an alphabet of size can be seen as a digraph of vertices in which all vertices have out-arcs labeled (a -out digraph). It is known that when is a fixed integer, with high probability, the largest
strongly connected component In the mathematical theory of directed graphs, a graph is said to be strongly connected if every vertex is reachable from every other vertex. The strongly connected components of an arbitrary directed graph form a partition into subgraphs that ...
(SCC) in such a -out digraph chosen uniformly at random is of linear size and it can be reached by all vertices. It has also been proven that if is allowed to increase as increases, then the whole digraph has a phase transition for strong connectivity similar to Erdős–Rényi model for connectivity. In a random DFA, the maximum number of vertices reachable from one vertex is very close to the number of vertices in the largest SCC with high probability. This is also true for the largest induced sub-digraph of minimum in-degree one, which can be seen as a directed version of -core.


Closure properties

If DFAs recognize the languages that are obtained by applying an operation on the DFA recognizable languages then DFAs are said to be closed under the operation. The DFAs are closed under the following operations. For each operation, an optimal construction with respect to the number of states has been determined in state complexity research. Since DFAs are equivalent to nondeterministic finite automata (NFA), these closures may also be proved using closure properties of NFA.


As a transition monoid

A run of a given DFA can be seen as a sequence of compositions of a very general formulation of the transition function with itself. Here we construct that function. For a given input symbol a \in \Sigma, one may construct a transition function \delta_a : Q \rightarrow Q by defining \delta_a(q) = \delta(q,a) for all q \in Q. (This trick is called
currying In mathematics and computer science, currying is the technique of translating the evaluation of a function that takes multiple arguments into evaluating a sequence of functions, each with a single argument. For example, currying a function f tha ...
.) From this perspective, \delta_a "acts" on a state in Q to yield another state. One may then consider the result of
function composition In mathematics, function composition is an operation that takes two functions and , and produces a function such that . In this operation, the function is applied to the result of applying the function to . That is, the functions and ...
repeatedly applied to the various functions \delta_a, \delta_b, and so on. Given a pair of letters a, b \in \Sigma, one may define a new function \widehat\delta_=\delta_a \circ \delta_b, where \circ denotes function composition. Clearly, this process may be recursively continued, giving the following recursive definition of \widehat\delta : Q \times \Sigma^ \rightarrow Q: :\widehat\delta ( q, \epsilon ) = q, where \epsilon is the empty string and :\widehat\delta ( q, wa ) = \delta_a(\widehat\delta ( q, w )), where w \in \Sigma ^*, a \in \Sigma and q \in Q. \widehat\delta is defined for all words w\in\Sigma^*. A run of the DFA is a sequence of compositions of \widehat\delta with itself. Repeated function composition forms a
monoid In abstract algebra, a branch of mathematics, a monoid is a set equipped with an associative binary operation and an identity element. For example, the nonnegative integers with addition form a monoid, the identity element being 0. Monoid ...
. For the transition functions, this monoid is known as the transition monoid, or sometimes the ''transformation semigroup''. The construction can also be reversed: given a \widehat\delta, one can reconstruct a \delta, and so the two descriptions are equivalent.


Advantages and disadvantages

DFAs are one of the most practical models of computation, since there is a trivial linear time, constant-space,
online algorithm In computer science, an online algorithm is one that can process its input piece-by-piece in a serial fashion, i.e., in the order that the input is fed to the algorithm, without having the entire input available from the start. In contrast, an o ...
to simulate a DFA on a stream of input. Also, there are efficient algorithms to find a DFA recognizing: * the complement of the language recognized by a given DFA. * the union/intersection of the languages recognized by two given DFAs. Because DFAs can be reduced to a ''canonical form'' ( minimal DFAs), there are also efficient algorithms to determine: * whether a DFA accepts any strings (Emptiness Problem) * whether a DFA accepts all strings (Universality Problem) * whether two DFAs recognize the same language (Equality Problem) * whether the language recognized by a DFA is included in the language recognized by a second DFA (Inclusion Problem) * the DFA with a minimum number of states for a particular regular language (Minimization Problem) DFAs are equivalent in computing power to nondeterministic finite automata (NFAs). This is because, firstly any DFA is also an NFA, so an NFA can do what a DFA can do. Also, given an NFA, using the
powerset construction In the theory of computation and automata theory, the powerset construction or subset construction is a standard method for converting a nondeterministic finite automaton (NFA) into a deterministic finite automaton (DFA) which recognizes the sa ...
one can build a DFA that recognizes the same language as the NFA, although the DFA could have exponentially larger number of states than the NFA.Sakarovitch (2009) p.105Lawson (2004) p.63 However, even though NFAs are computationally equivalent to DFAs, the above mentioned problems are not necessarily solved efficiently also for NFAs. The non-universality problem for NFAs is PSPACE complete since there are small NFAs with shortest rejecting word in exponential size. A DFA is universal if and only if all states are final states, but this does not hold for NFAs. The Equality, Inclusion and Minimization Problems are also PSPACE complete since they require forming the complement of an NFA which results in an exponential blow up of size. On the other hand, finite-state automata are of strictly limited power in the languages they can recognize; many simple languages, including any problem that requires more than constant space to solve, cannot be recognized by a DFA. The classic example of a simply described language that no DFA can recognize is bracket or
Dyck language In the theory of formal languages of computer science, mathematics, and linguistics, a Dyck word is a balanced string of square brackets and The set of Dyck words forms the Dyck language. Dyck words and language are named after the mathemat ...
, i.e., the language that consists of properly paired brackets such as word "(()())". Intuitively, no DFA can recognize the Dyck language because DFAs are not capable of counting: a DFA-like automaton needs to have a state to represent any possible number of "currently open" parentheses, meaning it would need an unbounded number of states. Another simpler example is the language consisting of strings of the form ''anbn'' for some finite but arbitrary number of ''a'''s, followed by an equal number of ''b'''s.Lawson (2004) p.46


DFA identification from labeled words

Given a set of ''positive'' words S^+ \subset \Sigma^* and a set of ''negative'' words S^- \subset \Sigma^* one can construct a DFA that accepts all words from S^+ and rejects all words from S^-: this problem is called ''DFA identification'' (synthesis, learning). While ''some'' DFA can be constructed in linear time, the problem of identifying a DFA with the minimal number of states is NP-complete. The first algorithm for minimal DFA identification has been proposed by Trakhtenbrot and Barzdin in and is called the ''TB-algorithm''. However, the TB-algorithm assumes that all words from \Sigma up to a given length are contained in either S^+ \cup S^-. Later, K. Lang proposed an extension of the TB-algorithm that does not use any assumptions about S^+ and S^- the ''Traxbar'' algorithm. However, Traxbar does not guarantee the minimality of the constructed DFA. In his work E.M. Gold also proposed a heuristic algorithm for minimal DFA identification. Gold's algorithm assumes that S^+ and S^- contain a ''characteristic set'' of the regular language; otherwise, the constructed DFA will be inconsistent either with S^+ or S^-. Other notable DFA identification algorithms include the RPNI algorithm, the Blue-Fringe evidence-driven state-merging algorithm, Windowed-EDSM. Another research direction is the application of evolutionary algorithms: the smart state labeling evolutionary algorithm allowed to solve a modified DFA identification problem in which the training data (sets S^+ and S^-) is ''noisy'' in the sense that some words are attributed to wrong classes. Yet another step forward is due to application of SAT solvers by Marjin J. H. Heule and S. Verwer: the minimal DFA identification problem is reduced to deciding the satisfiability of a Boolean formula. The main idea is to build a augmented prefix-tree acceptor (a
trie In computer science, a trie, also called digital tree or prefix tree, is a type of ''k''-ary search tree, a tree data structure used for locating specific keys from within a set. These keys are most often strings, with links between nodes ...
containing all input words with corresponding labels) based on the input sets and reduce the problem of finding a DFA with C states to ''coloring'' the tree vertices with C states in such a way that when vertices with one color are merged to one state, the generated automaton is deterministic and complies with S^+ and S^-. Though this approach allows finding the minimal DFA, it suffers from exponential blow-up of execution time when the size of input data increases. Therefore, Heule and Verwer's initial algorithm has later been augmented with making several steps of the EDSM algorithm prior to SAT solver execution: the DFASAT algorithm. This allows reducing the search space of the problem, but leads to loss of the minimality guarantee. Another way of reducing the search space has been proposed in by means of new symmetry breaking predicates based on the
breadth-first search Breadth-first search (BFS) is an algorithm for searching a tree data structure for a node that satisfies a given property. It starts at the tree root and explores all nodes at the present depth prior to moving on to the nodes at the next de ...
algorithm: the sought DFA's states are constrained to be numbered according to the BFS algorithm launched from the initial state. This approach reduces the search space by C! by eliminating isomorphic automata.


Equivalent models


Read-only right-moving Turing machines

Read-only right-moving Turing machines are a particular type of
Turing machine A Turing machine is a mathematical model of computation describing an abstract machine that manipulates symbols on a strip of tape according to a table of rules. Despite the model's simplicity, it is capable of implementing any computer alg ...
that only moves right; these are almost exactly equivalent to DFAs. The definition based on a singly infinite tape is ] a 7-
tuple In mathematics, a tuple is a finite ordered list (sequence) of elements. An -tuple is a sequence (or ordered list) of elements, where is a non-negative integer. There is only one 0-tuple, referred to as ''the empty tuple''. An -tuple is defi ...
: M = \langle Q, \Gamma, b, \Sigma, \delta, q_0, F \rangle, where : Q is a finite set of ''states''; : \Gamma is a finite set of the ''tape alphabet/symbols''; : b \in \Gamma is the ''blank symbol'' (the only symbol allowed to occur on the tape infinitely often at any step during the computation); : \Sigma, a subset of \Gamma not including ''b'', is the set of ''input symbols''; : \delta: Q \times \Gamma \to Q \times \Gamma \times \ is a function called the '' transition function'', ''R'' is a right movement (a right shift); : q_0 \in Q is the ''initial state''; : F \subseteq Q is the set of ''final'' or ''accepting states''. The machine always accepts a regular language. There must exist at least one element of the set (a HALT state) for the language to be nonempty.


Example of a 3-state, 2-symbol read-only Turing machine

: Q = \; : \Gamma = \; : b = 0, "blank"; : \Sigma = \varnothing, empty set; : \delta = see state-table above; : q_0 = A, initial state; : F = the one element set of final states: \.


See also


Notes


References

* * * * * * . Section 1.1: Finite Automata, pp. 31–47. Subsection "Decidable Problems Concerning Regular Languages" of section 4.1: Decidable Languages, pp. 152–155.4.4 DFA can accept only regular language {{DEFAULTSORT:Deterministic Finite-State Machine Finite automata