I have these regular expressions:
a) 0(10)*
b) a(b+c+d)
c) b*(aa*b*+ε)
I created these state diagrams for them:

Are they correct?
I have these regular expressions:
a) 0(10)*
b) a(b+c+d)
c) b*(aa*b*+ε)
I created these state diagrams for them:

Are they correct?
Copyright © 2021 Jogjafile Inc.
If I deciphered your writing correctly, this is what you wrote:
Correct.
But two remarks:
You could simplify to this:
Not correct. There are these issues:
ais not a valid input, so the second state should not be an accepting state.a. Once that is corrected, it becomes a state that is indistinguishable from the second sink, and so they could be mergedCorrection:
Correct!