Büchi automaton

From Wikipedia, the free encyclopedia
(Redirected from Büchi automata)
A Büchi automaton
A Büchi automaton with two states, and , the former of which is the start state and the latter of which is accepting. Its inputs are infinite words over the symbols . As an example, it accepts the infinite word , where denotes the infinite repetition of a string. It rejects the infinite word .

In computer science and automata theory, a deterministic Büchi automaton is a theoretical machine which either accepts or rejects infinite inputs. Such a machine has a set of states and a transition function, which determines which state the machine should move to from its current state when it reads the next input character. Some states are accepting states and one state is the start state. The machine accepts an input if and only if it will pass through an accepting state infinitely many times as it reads the input.

A non-deterministic Büchi automaton, later referred to just as a Büchi automaton, has a transition function which may have multiple outputs, leading to many possible paths for the same input; it accepts an infinite input if and only if some possible path is accepting. Deterministic and non-deterministic Büchi automata generalize deterministic finite automata and nondeterministic finite automata to infinite inputs. Each are types of ω-automata. Büchi automata recognize the ω-regular languages, the infinite word version of regular languages. They are named after the Swiss mathematician Julius Richard Büchi, who invented them in 1962.[1]

Büchi automata are often used in model checking as an automata-theoretic version of a formula in linear temporal logic.

Formal definition[edit]

Formally, a deterministic Büchi automaton is a tuple A = (Q,Σ,δ,q0,F) that consists of the following components:

  • Q is a finite set. The elements of Q are called the states of A.
  • Σ is a finite set called the alphabet of A.
  • δ: Q × Σ → Q is a function, called the transition function of A.
  • q0 is an element of Q, called the initial state of A.
  • FQ is the acceptance condition. A accepts exactly those runs in which at least one of the infinitely often occurring states is in F.

In a (non-deterministic) Büchi automaton, the transition function δ is replaced with a transition relation Δ that returns a set of states, and the single initial state q0 is replaced by a set I of initial states. Generally, the term Büchi automaton without qualifier refers to non-deterministic Büchi automata.

For more comprehensive formalism see also ω-automaton.

Closure properties[edit]

The set of Büchi automata is closed under the following operations.

Let and be Büchi automata and be a finite automaton.

  • Union: There is a Büchi automaton that recognizes the language
Proof: If we assume, w.l.o.g., is empty then is recognized by the Büchi automaton
  • Intersection: There is a Büchi automaton that recognizes the language
Proof: The Büchi automaton recognizes where
By construction, is a run of automaton A' on input word w if is run of A on w and is run of B on w. is accepting and is accepting if r' is concatenation of an infinite series of finite segments of 1-states (states with third component 1) and 2-states (states with third component 2) alternatively. There is such a series of segments of r' if r' is accepted by A'.
  • Concatenation: There is a Büchi automaton that recognizes the language
Proof: If we assume, w.l.o.g., is empty then the Büchi automaton recognizes , where
  • ω-closure: If does not contain the empty word then there is a Büchi automaton that recognizes the language
Proof: The Büchi automaton that recognizes is constructed in two stages. First, we construct a finite automaton A' such that A' also recognizes but there are no incoming transitions to initial states of A'. So, where Note that because does not contain the empty string. Second, we will construct the Büchi automaton A" that recognize by adding a loop back to the initial state of A'. So, , where
  • Complementation:There is a Büchi automaton that recognizes the language
Proof: The proof is presented here.

Recognizable languages[edit]

Büchi automata recognize the ω-regular languages. Using the definition of ω-regular language and the above closure properties of Büchi automata, it can be easily shown that a Büchi automaton can be constructed such that it recognizes any given ω-regular language. For converse, see construction of a ω-regular language for a Büchi automaton.

Deterministic versus non-deterministic Büchi automata[edit]

A non-deterministic Büchi automaton that recognizes

The class of deterministic Büchi automata does not suffice to encompass all omega-regular languages. In particular, there is no deterministic Büchi automaton that recognizes the language , which contains exactly words in which 1 occurs only finitely many times. We can demonstrate it by contradiction that no such deterministic Büchi automaton exists. Let us suppose A is a deterministic Büchi automaton that recognizes with final state set F. A accepts . So, A will visit some state in F after reading some finite prefix of , say after the th letter. A also accepts the ω-word Therefore, for some , after the prefix the automaton will visit some state in F. Continuing with this construction the ω-word is generated which causes A to visit some state in F infinitely often and the word is not in Contradiction.

The class of languages recognizable by deterministic Büchi automata is characterized by the following lemma.

Lemma: An ω-language is recognizable by a deterministic Büchi automaton if it is the limit language of some regular language.
Proof: Any deterministic Büchi automaton A can be viewed as a deterministic finite automaton A' and vice versa, since both types of automaton are defined as 5-tuple of the same components, only the interpretation of acceptance condition is different. We will show that is the limit language of . An ω-word is accepted by A if it will force A to visit final states infinitely often. Thus, infinitely many finite prefixes of this ω-word will be accepted by A'. Hence, is a limit language of .

Algorithms[edit]

Model checking of finite state systems can often be translated into various operations on Büchi automata. In addition to the closure operations presented above, the following are some useful operations for the applications of Büchi automata.

Determinization

Since deterministic Büchi automata are strictly less expressive than non-deterministic automata, there can not be an algorithm for determinization of Büchi automata. But, McNaughton's Theorem and Safra's construction provide algorithms that can translate a Büchi automaton into a deterministic Muller automaton or deterministic Rabin automaton.[2]

Emptiness checking

The language recognized by a Büchi automaton is non-empty if and only if there is a final state that is both reachable from the initial state, and lies on a cycle.

An effective algorithm that can check emptiness of a Büchi automaton:

  1. Consider the automaton as a directed graph and decompose it into strongly connected components (SCCs).
  2. Run a search (e.g., the depth-first search) to find which SCCs are reachable from the initial state.
  3. Check whether there is a non-trivial SCC that is reachable and contains a final state.

Each of the steps of this algorithm can be done in time linear in the automaton size, hence the algorithm is clearly optimal.

Minimization

Minimizing deterministic Büchi automata (i.e., given a deterministic Büchi automaton, finding a deterministic Büchi automaton recognizing the same language with a minimal number of states) is an NP-complete problem.[3] This is in contrast to DFA minimization, which can be done in polynomial time.

Variants[edit]

Transforming from other models of description to non-deterministic Büchi automata[edit]

From generalized Büchi automata (GBA)[edit]

Multiple sets of states in acceptance condition can be translated into one set of states by an automata construction, which is known as "counting construction". Let's say A = (Q,Σ,∆,q0,{F1,...,Fn}) is a GBA, where F1,...,Fn are sets of accepting states then the equivalent Büchi automaton is A' = (Q', Σ, ∆',q'0,F'), where
  • Q' = Q × {1,...,n}
  • q'0 = ( q0,1 )
  • ∆' = { ( (q,i), a, (q',j) ) | (q,a,q') ∈ ∆ and if q ∈ Fi then j=((i+1) mod n) else j=i }
  • F'=F1× {1}

From Linear temporal logic formula[edit]

A translation from a Linear temporal logic formula to a generalized Büchi automaton is given here. And, a translation from a generalized Büchi automaton to a Büchi automaton is presented above.

From Muller automata[edit]

A given Muller automaton can be transformed into an equivalent Büchi automaton with the following automata construction. Let's suppose A = (Q,Σ,∆,Q0,{F0,...,Fn}) is a Muller automaton, where F0,...,Fn are sets of accepting states. An equivalent Büchi automaton is A' = (Q', Σ, ∆',Q0,F'), where
  • Q' = Q ∪  ni=0 {i} × Fi × 2Fi
  • ∆'= ∆ ∪ ∆1 ∪ ∆2, where
    • 1 ={ ( q, a, (i,q',∅) ) | (q, a, q') ∈ ∆ and q' ∈ Fi }
    • 2={ ( (i,q,R), a, (i,q',R') ) | (q,a,q')∈∆ and q,q' ∈ Fi and if R=Fi then R'= ∅ otherwise R'=R∪{q} }
  • F'=ni=0 {i} × Fi × {Fi}
A' keeps original set of states from A and adds extra states on them. The Büchi automaton A' simulates the Muller automaton A as follows: At the beginning of the input word, the execution of A' follows the execution of A, since initial states are same and ∆' contains ∆. At some non-deterministically chosen position in the input word, A' decides of jump into newly added states via a transition in ∆1. Then, the transitions in ∆2 try to visit all the states of Fi and keep growing R. Once R becomes equal to Fi then it is reset to the empty set and ∆2 try to visit all the states of Fi states again and again. So, if the states R=Fi are visited infinitely often then A' accepts corresponding input and so does A. This construction closely follows the first part of the proof of McNaughton's Theorem.

From Kripke structures[edit]

Let the given Kripke structure be defined by M = Q, I, R, L, AP where Q is the set of states, I is the set of initial states, R is a relation between two states also interpreted as an edge, L is the label for the state and AP are the set of atomic propositions that form L.
The Büchi automaton will have the following characteristics:
if (q, p) belongs to R and L(p) = a
and init q if q belongs to I and L(q) = a.
Note however that there is a difference in the interpretation between Kripke structures and Büchi automata. While the former explicitly names every state variable's polarity for every state, the latter just declares the current set of variables holding or not holding true. It says absolutely nothing about the other variables that could be present in the model.

References[edit]

  1. ^ Büchi, J.R. (1962). "On a Decision Method in Restricted Second Order Arithmetic". The Collected Works of J. Richard Büchi. Stanford: Stanford University Press. pp. 425–435. doi:10.1007/978-1-4613-8928-6_23. ISBN 978-1-4613-8930-9. {{cite book}}: |journal= ignored (help)
  2. ^ Safra, S. (1988), "On the complexity of ω-automata", Proceedings of the 29th Annual Symposium on Foundations of Computer Science (FOCS '88), Washington DC, US: IEEE Computer Society, pp. 319–327, doi:10.1109/SFCS.1988.21948, S2CID 206559211.
  3. ^ Schewe, Sven (2010). "Minimisation of Deterministic Parity and Büchi Automata and Relative Minimisation of Deterministic Finite Automata". arXiv:1007.1333 [cs.FL].

External links[edit]