The following languages over the alphabet Σ = {0, 1} are all regular:
L = { w | w is of even length and begins with 01 }
L = { w | the numbers of 1's in w is multiple of 3 }
L = { w | w does not contain the substring 10 }
I am asked to write regular expressions for these languages, but I don't know how to do so. Can anyone give me advice on how to approach these problems?