If I have a regular expression $(a+b)^*$, does that mean I can't have the string $abba$ because the expression ends with a $b$? Or does this expression accept every string in the alphabet $\{a, b\}$?
2026-03-27 00:01:31.1774569691
regular expressions $(a+b)^*$
384 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
(a+b)* = (b+a)* because "or" is commutative.