1

NFA without ε-transitions which recognises the language generated by the regular expression:

1(0 + 0(10)*0)0

here is what i've done so far..

Paul
  • 31

2 Answers2

1

Here is a possible NFA for the language $1(0 + 0(10)^*0)0$: enter image description here

J.-E. Pin
  • 40,163
0

I think you can add a branch in second 0-transitions to take a union operation. It is feasible in NFA. Here is a required NFA.