For the following DFA NFA
I produced the RE
(a + b)(ab)*
However, I then realised that my RE doesn't accept the empty string as it only accepts strings beginning with an a or a b, yet the DFA NFA also accepts the empty string as the initial state is an accepting state.
What is a valid RE for this DFA NFA? I would think something along the lines of
Ø + (a + b)(ab).*
but I doubt this syntax is accepted.
EDIT
I have also just realised that the example I have made is an NFA, but that is besides the point of the question.
