Question.
Write a regular expression for the languages:
- all words in $\{a,b,c\}^{*}$ in which $a$ instance is followed by a sequence of at least two $c's$
- The complement language of $1$
Attempt.
- $\,\,\,\,r=(b+c+accc^* )^*$
But I'm not sure how to write regular expression of the complement.