Consider the following regular expressions over the alphabet {0, 1}
I. 1∗0(0+1)∗
II. (0+1)∗01∗
III. 1∗0(1+0)∗+(0+1)∗01∗
Which of the above regular expressions are equivalent?
I and II are quite easy to understand both denote strings containing at least one 0. III is actually the union of I and II, but III is again denoting strings containing at least one 0 as both regular expressions (i.e. I and II) are equivalent, so union won't make any difference.
Hence all 3 regular expressions are equivalent.