974 views
2 votes
2 votes
input {a,b} Write R.E where every b is followed by at least 2 K a's? (K is +ve integer)

2 Answers

Best answer
1 votes
1 votes

The regular expression will be (a+b((aa) k)+) *

selected by
0 votes
0 votes
i got

a* (bb*a) (bb*a)* a (b (bb*a) + a)* this is my ans

Related questions

0 votes
0 votes
2 answers
1
iarnav asked Mar 14, 2019
921 views
Given L = { 0*1 + 0 + 1* + 10*1}where + symbol is UNION and NOT positive closure.Please draw the Minimal DFA for this.
2 votes
2 votes
4 answers
2
iarnav asked Aug 20, 2017
1,389 views
I'm getting R.E as 0*1(01)*1(0+1)* but people are getting (0+10)*11(1+0)*Please tell, how!?
2 votes
2 votes
1 answer
3
iarnav asked Aug 16, 2017
791 views
I'm getting (a+ba*b)*a*b