Let A={a,b}. So the question is to write regular expression such that L(r) which consists of all words.
My answer is this:
L(r)= (a+b)* a* b* (a+b)*
Is this correct?
Also another solution is:
L(r)=(a+b)*
Is this correct?
Is (a+b)* same as (a,b)* ?