Probabilistic automaton

From HandWiki

In mathematics and computer science, the probabilistic automaton (PA) is a generalization of the nondeterministic finite automaton; it includes the probability of a given transition into the transition function, turning it into a transition matrix.[1][2] Thus, the probabilistic automaton also generalizes the concepts of a Markov chain and of a subshift of finite type. The languages recognized by probabilistic automata are called stochastic languages; these include the regular languages as a subset. The number of stochastic languages is uncountable.

The concept was introduced by Michael O. Rabin in 1963;[2] a certain special case is sometimes known as the Rabin automaton (not to be confused with the subclass of ω-automata also referred to as Rabin automata). In recent years, a variant has been formulated in terms of quantum probabilities, the quantum finite automaton.

Informal Description

For a given initial state and input character, a deterministic finite automaton (DFA) has exactly one next state, and a nondeterministic finite automaton (NFA) has a set of next states. A probabilistic automaton (PA) instead has a weighted set (or vector) of next states, where the weights must sum to 1 and therefore can be interpreted as probabilities (making it a stochastic vector). The notions states and acceptance must also be modified to reflect the introduction of these weights. The state of the machine as a given step must now also be represented by a stochastic vector of states, and a state accepted if its total probability of being in an acceptance state exceeds some cut-off.

A PA is in some sense a half-way step from deterministic to non-deterministic, as it allows a set of next states but with restrictions on their weights. However, this is somewhat misleading, as the PA utilizes the notion of the real numbers to define the weights, which is absent in the definition of both DFAs and NFAs. This additional freedom enables them to decide languages that are not regular, such as the p-adic languages with irrational parameters. As such, PAs are more powerful than both DFAs and NFAs (which are famously equally powerful).

Formal Definition

The probabilistic automaton may be defined as an extension of a nondeterministic finite automaton [math]\displaystyle{ (Q,\Sigma,\delta,q_0,F) }[/math], together with two probabilities: the probability [math]\displaystyle{ P }[/math] of a particular state transition taking place, and with the initial state [math]\displaystyle{ q_0 }[/math] replaced by a stochastic vector giving the probability of the automaton being in a given initial state.

For the ordinary non-deterministic finite automaton, one has

  • a finite set of states [math]\displaystyle{ Q }[/math]
  • a finite set of input symbols [math]\displaystyle{ \Sigma }[/math]
  • a transition function [math]\displaystyle{ \delta:Q\times\Sigma \to \wp(Q) }[/math]
  • a set of states [math]\displaystyle{ F }[/math] distinguished as accepting (or final) states [math]\displaystyle{ F\subseteq Q }[/math].

Here, [math]\displaystyle{ \wp(Q) }[/math] denotes the power set of [math]\displaystyle{ Q }[/math].

By use of currying, the transition function [math]\displaystyle{ \delta:Q\times\Sigma \to \wp(Q) }[/math] of a non-deterministic finite automaton can be written as a membership function

[math]\displaystyle{ \delta:Q\times\Sigma \times Q\to \{0,1\} }[/math]

so that [math]\displaystyle{ \delta(q,a,q^\prime)=1 }[/math] if [math]\displaystyle{ q^\prime\in \delta(q,a) }[/math] and [math]\displaystyle{ 0 }[/math] otherwise. The curried transition function can be understood to be a matrix with matrix entries

[math]\displaystyle{ \left[\theta_a\right]_{qq^\prime}=\delta(q,a,q^\prime) }[/math]

The matrix [math]\displaystyle{ \theta_a }[/math] is then a square matrix, whose entries are zero or one, indicating whether a transition [math]\displaystyle{ q\stackrel{a}{\rightarrow} q^\prime }[/math] is allowed by the NFA. Such a transition matrix is always defined for a non-deterministic finite automaton.

The probabilistic automaton replaces these matrices by a family of right stochastic matrices [math]\displaystyle{ P_a }[/math], for each symbol a in the alphabet [math]\displaystyle{ \Sigma }[/math] so that the probability of a transition is given by

[math]\displaystyle{ \left[P_a\right]_{qq^\prime} }[/math]

A state change from some state to any state must occur with probability one, of course, and so one must have

[math]\displaystyle{ \sum_{q^\prime}\left[P_a\right]_{qq^\prime}=1 }[/math]

for all input letters [math]\displaystyle{ a }[/math] and internal states [math]\displaystyle{ q }[/math]. The initial state of a probabilistic automaton is given by a row vector [math]\displaystyle{ v }[/math], whose components are the probabilities of the individual initial states [math]\displaystyle{ q }[/math], that add to 1:

[math]\displaystyle{ \sum_{q}\left[v\right]_{q}=1 }[/math]

The transition matrix acts on the right, so that the state of the probabilistic automaton, after consuming the input string [math]\displaystyle{ abc }[/math], would be

[math]\displaystyle{ v P_a P_b P_c }[/math]

In particular, the state of a probabilistic automaton is always a stochastic vector, since the product of any two stochastic matrices is a stochastic matrix, and the product of a stochastic vector and a stochastic matrix is again a stochastic vector. This vector is sometimes called the distribution of states, emphasizing that it is a discrete probability distribution.

Formally, the definition of a probabilistic automaton does not require the mechanics of the non-deterministic automaton, which may be dispensed with. Formally, a probabilistic automaton PA is defined as the tuple [math]\displaystyle{ (Q,\Sigma,P, v, F) }[/math]. A Rabin automaton is one for which the initial distribution [math]\displaystyle{ v }[/math] is a coordinate vector; that is, has zero for all but one entries, and the remaining entry being one.

Stochastic languages

The set of languages recognized by probabilistic automata are called stochastic languages. They include the regular languages as a subset.

Let [math]\displaystyle{ F=Q_\text{accept}\subseteq Q }[/math] be the set of "accepting" or "final" states of the automaton. By abuse of notation, [math]\displaystyle{ Q_\text{accept} }[/math] can also be understood to be the column vector that is the membership function for [math]\displaystyle{ Q_\text{accept} }[/math]; that is, it has a 1 at the places corresponding to elements in [math]\displaystyle{ Q_\text{accept} }[/math], and a zero otherwise. This vector may be contracted with the internal state probability, to form a scalar. The language recognized by a specific automaton is then defined as

[math]\displaystyle{ L_\eta = \{s\in\Sigma^* \vert vP_s Q_\text{accept} \gt \eta\} }[/math]

where [math]\displaystyle{ \Sigma^* }[/math] is the set of all strings in the alphabet [math]\displaystyle{ \Sigma }[/math] (so that * is the Kleene star). The language depends on the value of the cut-point [math]\displaystyle{ \eta }[/math], normally taken to be in the range [math]\displaystyle{ 0\le \eta\lt 1 }[/math].

A language is called η-stochastic if and only if there exists some PA that recognizes the language, for fixed [math]\displaystyle{ \eta }[/math]. A language is called stochastic if and only if there is some [math]\displaystyle{ 0\le \eta\lt 1 }[/math] for which [math]\displaystyle{ L_\eta }[/math] is η-stochastic.

A cut-point is said to be an isolated cut-point if and only if there exists a [math]\displaystyle{ \delta\gt 0 }[/math] such that

[math]\displaystyle{ \vert vP(s)Q_\text{accept} - \eta \vert \ge \delta }[/math]

for all [math]\displaystyle{ s\in\Sigma^* }[/math]

Properties

Every regular language is stochastic, and more strongly, every regular language is η-stochastic. A weak converse is that every 0-stochastic language is regular; however, the general converse does not hold: there are stochastic languages that are not regular.

Every η-stochastic language is stochastic, for some [math]\displaystyle{ 0\lt \eta\lt 1 }[/math].

Every stochastic language is representable by a Rabin automaton.

If [math]\displaystyle{ \eta }[/math] is an isolated cut-point, then [math]\displaystyle{ L_\eta }[/math] is a regular language.

p-adic languages

The p-adic languages provide an example of a stochastic language that is not regular, and also show that the number of stochastic languages is uncountable. A p-adic language is defined as the set of strings

[math]\displaystyle{ L_{\eta}(p)=\{n_1n_2n_3 \ldots \vert 0\le n_k\lt p \text{ and } 0.n_1n_2n_3\ldots \gt \eta \} }[/math]

in the letters [math]\displaystyle{ 0,1,2,\ldots,(p-1) }[/math].

That is, a p-adic language is merely the set of real numbers in [0, 1], written in base-p, such that they are greater than [math]\displaystyle{ \eta }[/math]. It is straightforward to show that all p-adic languages are stochastic.[3] In particular, this implies that the number of stochastic languages is uncountable. A p-adic language is regular if and only if [math]\displaystyle{ \eta }[/math] is rational.

Generalizations

The probabilistic automaton has a geometric interpretation: the state vector can be understood to be a point that lives on the face of the standard simplex, opposite to the orthogonal corner. The transition matrices form a monoid, acting on the point. This may be generalized by having the point be from some general topological space, while the transition matrices are chosen from a collection of operators acting on the topological space, thus forming a semiautomaton. When the cut-point is suitably generalized, one has a topological automaton.

An example of such a generalization is the quantum finite automaton; here, the automaton state is represented by a point in complex projective space, while the transition matrices are a fixed set chosen from the unitary group. The cut-point is understood as a limit on the maximum value of the quantum angle.

Notes

  1. Paz, Azaria (2014). Introduction to probabilistic automata.. ISBN 9781483244655. OCLC 1027002902. https://www.worldcat.org/oclc/1027002902. 
  2. 2.0 2.1 Michael O. Rabin (1963). "Probabilistic Automata". Information and Control 6 (3): 230–245. doi:10.1016/s0019-9958(63)90290-0. 
  3. Merve Nur Cakir; Saleemi, Mehwish; Zimmermann, Karl-Heinz (2021). "On the Theory of Stochastic Automata". arXiv:2103.14423 [cs.FL].

References

  • Salomaa, Arto (1969). "Finite nondeterministic and probabilistic automata". Theory of Automata. Oxford: Pergamon Press.