(ab) * means zero more instances of the sequence ab. For example,
<empty>, ab, abab, ababab
Consider a * and b * :
a*: <empty>, a, aa, aaa, aaa, ...
b*: <empty>, b, bb, bbb, bbb, ...
Concatenation - add one set to another. a * concat b * will concatenate the sequence obtained from a * with that obtained from b *, therefore:
<empty>, ab, aab, abb, aaaabbbb, bbbbb
Union . , a * U b * a b:
<empty>, a, aa, aaa, aaaa, b, bb, bbb, bbbb