I'm trying to understand the transformation scheme from NFA to DFA, and think I have grasped most of it (in terms of method).
The original NFA is the following:
And the DFA was constructed by:
However, the above example shows an NFA before unnecessary states have been removed, as well as after removal. Unnecessary referring to states with no incoming arrows.
QUESTION
How do you determine what the NEW initial state will be? I see that it is set to be {1,3}, but why?
Thanks in advance!

