It is given that $\Sigma=\{1,2,4,5,7,9\}$ and $L=\{w: w \in \Sigma^{*} \text{ ,w gets divided completely by }5\}$. Could you help me to find a regular expression for this language?
2026-03-27 16:19:12.1774628352
find a regular expression for a given language
93 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
If something is divisible by 5 then it ends in zero or five.
So (1|2|4|5|7|9)*5 would characterize your language.