The extended transition function δ∗:Q×Σ∗→Q describes the state reached by an automaton after processing an entire input string w∈Σ∗. It is defined recursively over the length of the string:
δ∗(q,w)={qδ(δ∗(q,u),a)if w=εif w=ua for u∈Σ∗,a∈Σ
Intuitively, δ∗(q,w) is the state the automaton is in after starting in state q and reading all symbols of w sequentially.