240 views

1 Answer

2 votes
2 votes
Language L = {$ab^nw : n$ ≥ 3, $w$ ∈ $(a+b)^+$ }

Some Strings in this Language = { $ab^3w , ab^4w , ab^5w , ab^6w , ......$} where $w$ =Any String except epsilon

So Regular Expression for the Language = $abbb^+ (a+b)^+$, here $bbb^+$ensures that number of b’s will always be greater than 3. You could also write $bbb^+$ as $bbbb^*$

Related questions

1 votes
1 votes
1 answer
1
Naveen Kumar 3 asked Mar 31, 2019
1,857 views
Find regular expressions for the following languages on {$a, b$}.(a) $L =$ {$w : |w|$ mod $3 = 0$}.(b) $L =$ {$w : n_a (w)$ mod $3 = 0$}.(c) $L =$ {$w : n_a (w)$ mod $5 ...
1 votes
1 votes
1 answer
4