Let $ A = \{a,b\}$ be an alphabet. Please hint me with show, that this regexes are equivalent. That means, we should show that: $L(e_1 )= L(e_2)$
1) $(a^*b)^*a^* = (a+b^*)^*$
2) $(a+b^*)^* = (a^*b^*)^*$
$+$ means or.
Let $ A = \{a,b\}$ be an alphabet. Please hint me with show, that this regexes are equivalent. That means, we should show that: $L(e_1 )= L(e_2)$
1) $(a^*b)^*a^* = (a+b^*)^*$
2) $(a+b^*)^* = (a^*b^*)^*$
$+$ means or.
In this case I think that the simplest approach is probably to show that
$$L\big((a^*b)^*a^*\big)=L\big((a+b^*)^*\big)=L\big((a^*b^*)^*\big)=\{a,b\}^*\;,$$
i.e., that each of the three regular expressions is equivalent to $(a+b)^*$. This is especially easy with $(a+b^*)^*$. Clearly $L(a+b)\subseteq L(a+b^*)$, so $L\big((a+b)^*\big)\subseteq L\big((a+b^*)^*\big)$. On the other hand, $L\big(e)\subseteq L\big(a+b)^*\big)=\{a,b\}^*$ for every regular expression $e$ over the alphabet $\{a,b\}$, so $L\big(a+b^*)^*\big)=L\big((a+b)^*\big)$.
Similarly, $L(a+b)=L(a)\cup L(b)\subseteq L(a^*b^*)$, so ... ?
I’ll leave $(a^*b)^*a^*$ for you for now, but feel free to leave a question if you get stuck.