- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Convert RE 1(0+1)*0 into equivalent DFA.
To convert the regular expression to Finite Automata (FA) we can use the Subset method.
Subset method is used to obtain FA from the given regular expression (RE).
- Step 1 − Construct a Transition diagram for a given RE using Non-deterministic finite automata (NFA) with ε moves.
- Step 2 − Convert NFA with ε to NFA without ε.
- Step 3 − Convert the NFA to equivalent DFA.
We will divide the given expression into three parts as follows −
“1” ,”(0+1)*, and “0”
NFA with Epsilon transition is as follows −
Now, we will remove the epsilon transition.
After removing, the transition diagram is given below −
- Related Articles
- Construct DFA of alternate 0’s and 1’s
- Construct ∈-NFA of Regular Language L = 0(0+1)*1
- Prove $2^0 =1$.
- Prove that the points $(a, 0), (0, b)$ and $(1, 1)$ are collinear if, $frac{1}{a} + frac{1}{b} = 1$.
- Design a DFA machine accepting odd numbers of 0’s or even numbers of 1’s
- Fill in the blanks:1. $100 + 0 = ........$2. $999 - 0 = ........$3. $501 times 0 =.......$
- Design a DFA of a string with at least two 0’s and at least two 1’s
- Convert:1 kilometre into centimetres.
- Convert into decimal: 1/5000
- 0-1 Knapsack Problem in C?
- Solve for x:$x-1=0$
- Factorize $35x^2+12x+1=0$.
- Convert $0.overline{3}$ into $frac{p}{q}$ form.
- Evaluate: - $( 8^{0}+5^{-1}) times[frac{1}{5}]^{-2})$.
- Three coins were tossed 30 times. Each time the number of heads occuring was noted down as follow:0 1 2 2 1 2 3 1 3 01 3 1 1 2 2 0 1 2 13 0 0 1 1 2 3 2 2 0Prepare a frequency distribution table for the data given above.

Advertisements