This class will discuss state elimination, more on REGEX, and how they relate to DFAs and NFAs.
REGEX Continued
For your information:
Regex machines are equivalent to finite automata, in that they can recognize the same languages.
But also keep in mind that:
This is the process of converting a regular expression to a DFA.
And:
stateDiagram [*] --> q1 q1 --> q3:b q3 --> [*] q1 --> q2: a q2 --> q2: b q2 --> q3: a q3 --> q3: a,b