Solutions
(i) ((01)*(10)*)*
It generates the strings of type {ϵ, 01, 10, 0110, 0101, 1001, 1010, 010110, 01011010,……..}
(ii) (10 + 01)*
Set of strings that are generated by the regular expression:
{ ϵ , 10, 01, 1010, 0101, 0110, 1001, 101010, 010101,………..}
(iii) (01)* + (11)*
Strings that are generates with this expression are:
{ ϵ , 01, 11, 0101, 1111, 010101, 111111,………. }
(iv) (0* + (11)* + 0*)*)
Strings that are generated with this regular expression:
{ ϵ , 0, 11, 00, 000, 011, 110, 0110, 00110, 01100,……….}
Regular expression of first two options are equal, Therefore only 2 is equivalent rest all are not equivalent.