694 views
4 votes
4 votes

Q

which of the following pair of regular expressions are not equal

a)∅* & ∈*

b)(01+0)*0 & 0(10+0)*

c)r1*(r1+r2)* & (r1 + r2)*

d)None of the above

in my view option A should be the correct option but answer given is option D

1 Answer

8 votes
8 votes

The answer is option D . 

Because 

∅* = ∈ & ∈* = ∈ so both are equal  .

Related questions

5 votes
5 votes
3 answers
1
6 votes
6 votes
1 answer
3
Dulqar asked Jan 9, 2017
5,152 views
I want to know whether the following Regular Expressions are Equal ?(a+b) * = (a* + b*)* = (a* + b)* = (a + b*)* = (a* b*)* = (b* a*)* = a*(ba*)* ...