1,280 views

3 Answers

6 votes
6 votes
Here b is Compulsory generated character

Everything else we can put *=0

So" b" is the Minimum String that can be generated Using above RE.
1 votes
1 votes
Given:

a*b* b(a+ ((ab)*)* b*
sol:

a*b* b(a+((ab)*)* b*

=>a*b* b (a*+((ab)*)* b*

=>a*b* b (a*+(ab)*) b* (i.e.,((ab)*)*=(ab)* )

=>∈ b(∈+(∈))∈ (i.e.,any thing power closure it include empty string = ∈)

=>so the min string accepted by the regular expression is "b"
edited by
0 votes
0 votes
Definitely b will be the minimum...

Related questions

2 votes
2 votes
2 answers
2
Kapil asked Jul 8, 2016
1,403 views
The equality of two regular expression is computed in? Give reasons also..Constant Timepolynomial timelogarithmic Polynomial timeExponential time
0 votes
0 votes
2 answers
4
suneetha asked Oct 6, 2018
455 views
difference between a*(ba)* and (a+ba)* and how to represent both in finite automata?