Pushdown automaton
In the theory of computation, a branch of theoretical computer science, a pushdown automaton is
a type of automaton that employs a stack.
Pushdown automata are used in theories about what can be computed by machines. They are more capable than finite-state machines but less capable than Turing machines.
Deterministic pushdown automata can recognize all deterministic context-free languages while nondeterministic ones can recognize all context-free languages, with the former often used in parser design.
The term "pushdown" refers to the fact that the stack can be regarded as being "pushed down" like a tray dispenser at a cafeteria, since the operations never work on elements other than the top element. A stack automaton, by contrast, does allow access to and operations on deeper elements. Stack automata can recognize a strictly larger set of languages than pushdown automata.
A nested stack automaton allows full access, and also allows stacked values to be entire sub-stacks rather than just single finite symbols.
Informal description
A finite-state machine just looks at the input signal and the current state: it has no stack to work with. It chooses a new state, the result of following the transition. A pushdown automaton differs from a finite state machine in two ways:- It can use the top of the stack to decide which transition to take.
- It can manipulate the stack as part of performing a transition.
Put together: Given an input symbol, current state, and stack symbol, the automaton can follow a transition to another state, and optionally manipulate the stack.
If, in every situation, at most one such transition action is possible, then the automaton is called a deterministic pushdown automaton . In general, if several actions are possible, then the automaton is called a general, or nondeterministic, PDA. A given input string may drive a nondeterministic pushdown automaton to one of several configuration sequences; if one of them leads to an accepting configuration after reading the complete input string, the latter is said to belong to the language accepted by the automaton.
Formal definition
We use standard formal language notation: denotes the set of finite-length strings over alphabet and denotes the empty string.A PDA is formally defined as a 7-tuple:
where
- is a finite set of states
- is a finite set which is called the input alphabet
- is a finite set which is called the stack alphabet
- is a finite subset of, the transition relation
- is the start state
- is the initial stack symbol
- is the set of accepting states
In many texts the transition relation is replaced by an formalization, where
- is the transition function, mapping into finite subsets of
Computations
In order to formalize the semantics of the pushdown automaton a description of the current situation is introduced. Any 3-tuple is called an instantaneous description of, which includes the current state, the part of the input tape that has not been read, and the contents of the stack. The transition relation defines the step-relation of on instantaneous descriptions. For instruction there exists a step, for every and every.
In general pushdown automata are nondeterministic meaning that in a given instantaneous description there may be several possible steps. Any of these steps can be chosen in a computation.
With the above definition in each step always a single symbol is popped, replacing it with as many symbols as necessary. As a consequence no step is defined when the stack is empty.
Computations of the pushdown automaton are sequences of steps. The computation starts in the initial state with the initial stack symbol on the stack, and a string on the input tape, thus with initial description.
There are two modes of accepting. The pushdown automaton either accepts by final state, which means after reading its input the automaton reaches an accepting state, or it accepts by empty stack, which means after reading its input the automaton empties its stack. The first acceptance mode uses the internal memory, the second the external memory.
Formally one defines
- with and
- with
For each single pushdown automaton these two languages need to have no relation: they may be equal but usually this is not the case. A specification of the automaton should also include the intended mode of acceptance. Taken over all pushdown automata both acceptance conditions define the same family of languages.
Theorem. For each pushdown automaton one may construct a pushdown automaton such that, and vice versa, for each pushdown automaton one may construct a pushdown automaton such that
Example
The following is the formal description of the PDA which recognizes the language by final state:, where
- states:
- input alphabet:
- stack alphabet:
- start state:
- start stack symbol:
- accepting states:
In words, the first two instructions say that in state any time the symbol is read, one is pushed onto the stack. Pushing symbol on top of another is formalized as replacing top by .
The third and fourth instructions say that, at any moment the automaton may move from state to state.
The fifth instruction says that in state, for each symbol read, one is popped.
Finally, the sixth instruction says that the machine may move from state to accepting state only when the stack consists of a single.
There seems to be no generally used representation for PDA. Here we have depicted the instruction by an edge from state to state labelled by .
Understanding the computation process
The following illustrates how the above PDA computes on different input strings. The subscript from the step symbol is here omitted.PDA and context-free languages
Every context-free grammar can be transformed into an equivalent nondeterministic pushdown automaton. The derivation process of the grammar is simulated in a leftmost way. Where the grammar rewrites a nonterminal, the PDA takes the topmost nonterminal from its stack and replaces it by the right-hand part of a grammatical rule. Where the grammar generates a terminal symbol, the PDA reads a symbol from input when it is the topmost symbol on the stack. In a sense the stack of the PDA contains the unprocessed data of the grammar, corresponding to a pre-order traversal of a derivation tree.Technically, given a context-free grammar, the PDA has a single state, 1, and its transition relation is constructed as follows.
- for each rule
- for each terminal symbol
For a context-free grammar in Greibach normal form, defining ∈ δ for each grammar rule A → aγ also yields an equivalent nondeterministic pushdown automaton.
The converse, finding a grammar for a given PDA, is not that easy. The trick is to code two states of the PDA into the nonterminals of the grammar.
Theorem. For each pushdown automaton one may construct a context-free grammar such that.
The language of strings accepted by a deterministic pushdown automaton is called a deterministic context-free language. Not all context-free languages are deterministic. As a consequence, the DPDA is a strictly weaker variant of the PDA
A finite automaton with access to two stacks is a more powerful device, equivalent in power to a Turing machine. A linear bounded automaton is a device which is more powerful than a pushdown automaton but less so than a Turing machine.
Generalized pushdown automaton (GPDA)
A GPDA is a PDA which writes an entire string of some known length to the stack or removes an entire string from the stack in one step.A GPDA is formally defined as a 6-tuple:
where, and are defined the same way as a PDA.
is the transition function.
Computation rules for a GPDA are the same as a PDA except that the 's and 's are now strings instead of symbols.
GPDA's and PDA's are equivalent in that if a language is recognized by a PDA, it is also recognized by a GPDA and vice versa.
One can formulate an analytic proof for the equivalence of GPDA's and PDA's using the following simulation:
Let be a transition of the GPDA
where.
Construct the following transitions for the PDA:
Stack automaton
As a generalization of pushdown automata, Ginsburg, Greibach, and Harrison investigated stack automata, which may additionally step left or right in the input string, and step up or down in the stack in read-only mode.A stack automaton is called nonerasing if it never pops from the stack. The class of languages accepted by nondeterministic, nonerasing stack automata is NSPACE, which is a superset of the context-sensitive languages. The class of languages accepted by deterministic, nonerasing stack automata is DSPACE.
Alternating pushdown automata
An alternating pushdown automaton is a pushdown automaton with a state set- where.
The model was introduced by Chandra, Kozen and Stockmeyer. Ladner, Lipton and Stockmeyer proved that this model is equivalent to EXPTIME i.e. a language is accepted by some APDA if, and only if, it can be decided by an exponential-time algorithm.
Aizikowitz and Kaminski introduced synchronized alternating pushdown automata that are equivalent to conjunctive grammars in the same way as nondeterministic PDA are equivalent to context-free grammars.