Let $L$ be the language generated by the regular expression $(b \cup ab \cup aab)^*(\lambda \cup a \cup aa)$. how does bbbbbbabaabaa belong to L?
I know $(b \cup ab \cup aab)^*$ can be translated to $bbbbbb$
and $(\lambda \cup a \cup aa)$ can be translated to $aa$
then where does abaab come from? is it from $(b \cup ab \cup aab)^*$? if so, i thought $\cup$ was a "either or" statement, not a "both or all" statement.
so $(b \cup ab \cup aab)$ can be:
$b$ or $ab$ or $aab$. but not $babaab$ or definitely $bbbbbbabaab$.
I'm assuming i'm not fully understanding a minor concept.
Thank you.