I would just like to confirm the regular expression which I have is correct.
$(\epsilon+a+b+c)*(\epsilon+a+b+c)*(\epsilon+a+b+c)$
Would this be the correct regexp for a set of strings $\{a,b,c\}$ with length AT MOST 3?
I would just like to confirm the regular expression which I have is correct.
$(\epsilon+a+b+c)*(\epsilon+a+b+c)*(\epsilon+a+b+c)$
Would this be the correct regexp for a set of strings $\{a,b,c\}$ with length AT MOST 3?
Yes, I believe your regular expression is correct. If you're allowed to use the $\ \{n\}\ $ operator, a more compact way of writing it would be $$ \left(\epsilon+a+b+c\right)\{3\} $$