The configuration graph G_{M,w} of NTM M on input w: vertices are TM configurations
and edges are single steps M.step.
Instances For
Reachability in a configuration graph: Reachable c₁ c₂ is the reflexive–transitive closure
of the adjacency relation.
Instances For
If branch is a valid (nondeterministic) computation branch of M on input w, then for
every step index k the configuration branch k is reachable from the initial configuration
M.initConfig w via M.step.
Converse direction: given a reachability path a ⟶* b under M.step and the fact that
b is a halting configuration, one can extract an actual computation branch branch : ℕ → Config
with branch 0 = a, branch k = b, and the usual NTM branch transition law (steps before
halting, stuttering after halting).
If an accept configuration c is reachable from the initial configuration of M on w
under M.step, then M accepts w.
Claim (Sipser, Lectures 19/20). An NTM M accepts input w if and only if some
accept configuration is reachable from the start configuration c_start in the configuration
graph G_{M,w}. This is the key bridge between TM acceptance and graph reachability used in
the proofs of NL ⊆ P and Savitch's Theorem.