I have two questions. Are those regular expressions are the same?
(1) b*(ab*)* and (b*a)*b *
(2) b*(aaab*)* and (b*aaa) * b*
I feel like they both create language that have worlds palindrome. Is that right? In the first one, both a's are must and b's are zero or unlimited. The second one is the same. the string aaa is a must in both and b's are zero or unlimited.
Am I right?