in Theory of Computation closed by
1,398 views
1 vote
1 vote
closed as a duplicate of: GATE CSE 2023 | Question: 4

Consider the following finite automata and find the correct regular expression.

  1. $0(0+11)^*$
  2. $1(0+11)^*$
  3. $1(0 * 11)^*$
  4. $0\left(0^* 11\right)^*$
in Theory of Computation closed by
1.4k views

1 comment

Final state is missing.
0
0

2 Answers

1 vote
1 vote

Detailed Video Solution: DFA to Regular Expression question: 1(0+11)*

$\color{\red}{\text{ALL Theory of Computation Questions:}}$

Question 1: PDA Push Down Automata Question

Question 2: Context Free Grammar But Language Regular

Question 3: Number of States in the Minimal DFA

Question 4: Intersection Closure Property based Question

1 vote
1 vote
The given finite automata generate string like $(1,10,111,110,11111,1011,1110,10000,101111,10011...\infty)$ .

Start with $1$ to reach the final state.after that we have $2$ choices as $(0+11)^*$.

$\therefore $ R.E.= $1(0+11)^*$
Option (B) is correct.
edited by
Answer:

Related questions