This presentation introduces pushdown automata (PDA). A PDA is a nondeterministic finite state automaton that has an additional stack. It can perform epsilon transitions and manipulate symbols on the stack. PDAs have states, an initial stack symbol, and transitions that can pop, push or replace symbols on the stack. The presentation provides an example of a nondeterministic PDA and traces its execution on an input string to demonstrate how it works. A string is accepted if the PDA reaches a final state after consuming all input, regardless of the stack contents.