1.Minimizing the Number of States in a DFA§
Why do we need to do this?
If you have an NFA with n states, what is the maximum number of states in the equivalent DFA created?
Why do we need to do this?
If you have an NFA with n states, what is the maximum number of states in the equivalent DFA created?
Identify states that are indistinguishable
Definition: Two states p and q are indistinquishable if for all w∈Σ∗
Definition: Two states p and q are distinquishable if ∃w∈Σ∗ such that
p and q appear to be different.
<< What does this mean? >>
All that an acceptor cares about is accepting or rejecting strings.
Select any pair of states, p and q.
Distinguishability is an equivalence relation.
<<Look at first slide in frameset of Module 3.6.2.>>
Look at A on a, ab. Look at F on a, ab. Look at D on a, ab.
Remove all inaccessible states.
Consider all pairs of states (p,q). If p∈F and q∉F or vice versa, then mark the pair (p,q) as distinguishable.
Gather together the indistingushable pairs into groups. Each group is a state in the new machine.
Finally, a (new machine) state qi is final if and only if any of its base states (from the old machine) are final.
<<See Frameset 3.6.2>>