in Theory of Computation retagged by
703 views
0 votes
0 votes

Which of the following regular expression is equal to $(r_1+r_2)^*$?

  1. $r_1^*r_2^*$
  2. $(r_1r_2)^*$
  3. $r_1^*r_2^*+r_1r_2$
  4. $(r_1^*r_2^*)^*$
in Theory of Computation retagged by
by
703 views

2 Answers

2 votes
2 votes

In General

(a+b)*=(a*+b)*=(a+b*)*=(a*+b*)*=(a*b*)*

ANS: Option D

1 vote
1 vote

(r1+r2)* = (r1* + r2*)* = (r1*r2*)*

OPTION (D)

Answer:

Related questions