I have this NFA:
I want to simulate it with a DFA, thus I have the states {1}, {2}, {3}, {1,2}, {1,3}, {2,3} and {1,2,3}. Usually I look at every state and find out in which state I could end up when selecting a letter. However here the problem starts at {1}, where the dfa wouldn't have any connection for letter a and thus wouldn't be a proper DFA. How can I resolve this ?
