This class will be a quick review of pushdown automata, and a lab + plans for exam review next class.
Pushdown Automata
Pushdown automata are a type of automaton that can use a stack to store information. They are more powerful than finite automata, but less powerful than Turing machines.
They are a variation of a non-deterministic finite automaton (NFA) with an additional stack. The stack allows the PDA to store information about the input string, and use that information to make decisions.
They follow the form of a 7-tuple:
where:
- is a finite set of states
- is a finite input alphabet
- is a finite stack alphabet
- is the transition function
- is the start state
- is the initial stack symbol
- is the set of accepting states
Mermaid Example of a PDA
An example of a PDA that accepts the language is shown below:
stateDiagram-v2 classDef accepting fill:#bbf,stroke:#333,stroke-width:2; direction LR [*] --> q0 q0 --> q1 : a, Z/aZ q1 --> q1 : a, a/aa q1 --> q2 : b, a/ε q2 --> q2 : b, a/ε q2 --> q3 : ε, Z/Z q3:::accepting
Where the PDA serves as follows:
- is the start state
- is the initial stack symbol
- is defined as follows:
The PDA works by:
- Pushing an ‘a’ onto the stack for each ‘a’ read in state
- Popping an ‘a’ from the stack for each ‘b’ read in state
- Accepting when all ‘a’s are matched with ‘b’s and the bottom marker ‘Z’ is reached
In summary, a PDA can be thought of as a finite automaton with a stack, which allows it to store information about the input string and make decisions based on that information.