307 views

1 Answer

1 votes
1 votes
The given Finite State Automata is over the alphabet {a,b,c} It is accepting all the strings which start with a particular alphabet and end with another alphabet i.e they do not start and end with the same alphabet .

The regukar expression is:=a(a^*+b+c)^*(b+c)+b(b^*+a+c)*(a+c)+c(a+b+c^*)*(a+b)// (x^*+y+z)^* is  equivalent to (x+y+z)*

=a(a+b+c)*(b+c)+b(b+a+c)*(a+c)+c(a+b+c)*(a+b) Ans

Related questions

1 votes
1 votes
1 answer
1
prabhath challa asked 6 days ago
53 views
what will be the regular expression of this DFA using Arden's theorem
0 votes
0 votes
1 answer
3
hasina ali asked Mar 21
89 views
Set of binary strings starting with 11 and ending with 00. E.g., 1100,1110100 ,1100100
0 votes
0 votes
1 answer
4
utsav22222 asked Mar 15
131 views
Write regular expression for the set of strings of 0's and 1's with at most one pair of consecutive 1's.