Regular Expressions and DFA

73 Views Asked by At

Where is the difference between these two regular expressions? A.(000) * (01)(01) * B.0(000) * 1(01) * And which of these to produces the DFA on the picture?enter image description here

1

There are 1 best solutions below

0
On

Hint (for the first part): the product is associative on languages.

Next, compare $(000)^*0$ and $0(000)^*$.