Jump to content

Alternating tree automata

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Ashutosh y0078 (talk | contribs) at 15:19, 14 December 2009 (Created page with 'In automata theory, an '''alternating tree automaton''' is an extension of nondeterministic tree automaton as similarly alternating finite automaton ext...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

In automata theory, an alternating tree automaton is an extension of nondeterministic tree automaton as similarly alternating finite automaton extends nondeterministic finite automaton (NFA).

/*

  • For an existential transition , A nondeterministically chooses to switch the state to either or , reading a. Thus, behaving like a regular nondeterministic finite automaton.
  • For a universal transition , A moves to and , reading a, simulating the behavior of a parallel machine.

Note that due to the universal quantification a run is represented by a run tree. A accepts a word w, if there exists a run tree on w such that every path ends in an accepting state.

A basic theorem tells that any AFA is equivalent to an non-deterministic finite automaton (NFA) by performing a similar kind of powerset construction as it is used for the transformation of an NFA to a deterministic finite automaton (DFA). This construction converts an AFA with k states to an NFA with up to states.

An alternative model which is frequently used is the one where Boolean combinations are represented as clauses. For instance, one could assume the combinations to be in Disjunctive Normal Form so that would represent . The state tt (true) is represented by in this case and ff (false) by . This clause representation is usually more efficient.

  • /