in Theory of Computation
2,590 views
0 votes
0 votes
Construct the Minimum FA that accepts all the string of 0's and 1's where

A)Every String start and end with Zero.

B)Every string Start and end with Same Symbol.
in Theory of Computation
2.6k views

3 Comments

edited by
You can do it by construction the regular expression for the FA.

For the first, it will be: 0(0+1)*0 + 0

For the second, it will be: 0(0+1)*0 + 1(1+0)*1 + 0 + 1
0
0
Can you please give the State Diagram
0
0
What have you tried? If you show where you are stuck, maybe other people can help you.
0
0

1 Answer

0 votes
0 votes
  • Starting and ending with symble 0

Starting and endin with same symble

 

 

edited by

4 Comments

ok, let's think about some regular expression rules.

1)  0ε=0=ε0

suppose if we replace ε by a or b or c

0a=a or a=a0 ?
0
0
can you perform 1st part using concatenation.

please show me.
0
0

@suraj patel, my intension is not querying with you...

if you are saying ∈ also in Language then, starting and ending with 1 also should be in language

due to 1 = ∈ . 1 . ∈

11 = ∈ . 11 . ∈

if you are not getting comment one more time....

 

0
0

Related questions