I'm trying to solve a problem that requires me to simplify regular expressions.
Here is the starting point:
$(aaa)^*b(bbb)^*$
Which I rewrote as follows:
$(a^3)^*b(b^3)^*$
However I've been trying to simplify it without success. Is there a way it could be simplified any further?