I am getting confused as a construct some state diagrams of the DFA, I am currently working through a problem with the constraint that {w | w is any string not in a*b*}. I do not understand what a*b* means exactly, can someone summarize that for me, thanks!
DFA languages & state diagrams
71 views Asked by anonymous At
1
There are 1 answers
Related Questions in COMPUTATION-THEORY
- Understanding Unary PCP Reduction to a Matching Problem (UPCP)
- Balanced parentheses and brackets, where a closing bracket also closes any outstanding open parentheses (up to the previous open bracket)
- a challenging finite automata - what is the language?
- Optimization - Algorithm for finding load set combination that returns the maximum Von Mises stress
- Unable to create an DPDA that accepts strings in binary notation multiples of 3
- how to find the grammar of this Language?
- Context Free Grammar for L= { a^n b^m c^m d^2n }, where n and m are >= 0
- Complexity/decidability of the "nested maze" problem?
- Maximum sum, min length subset
- DFA for all binary strings having even number of 0's or contains exactly two 1's
- Need a DFA for the alphabets {a,b} such that the language must contain equal and even numbers of a and b
- What is a functional model, sequential model, and concurrent model?
- How to I constract a grammar that generates this language ? (Grammar of type 0)
- What is the flaw in the proof of the countability of the set of finite language?
- Does this DFA satisfy the complement of the given language?
Related Questions in DFA
- Theory of Comp Sci - State Diagrams NFAs
- Converting ENFA To DFA and ENFA NFA
- Theory of computer science problems
- a challenging finite automata - what is the language?
- Correct labeling for this regular language?
- State diagram of DFA with 5 states
- How to get automatically token for dfa every 7 days
- Finite state automata minimization
- DFA for all binary strings having even number of 0's or contains exactly two 1's
- Need a DFA for the alphabets {a,b} such that the language must contain equal and even numbers of a and b
- Intersection of two Deterministic Finite Automata (DFA)
- Assembly Code Segmentation Error While Making DFA state machine
- Deterministic finite-state automaton in x86 Assembly (GCC)
- Construct DFA that accept binary string having odd number of 1’s or even number of 0’s
- What strings are accepted by the pattern "^[ab]?|c?$"?
Related Questions in STATE-DIAGRAM
- How do I show an array of values in plantuml?
- SOP Boolean expression of state variable and output of a Moore FSM
- State diagram relationships
- How to display state diagram (FST) in PyCharm?
- Positioning blocks of PlantUML diagram
- Confusion on the UML state diagram
- State Machine Diagram VS Flowchart
- Make explicit in UML state diagram that order of activities does not matter
- DFA languages & state diagrams
- How to determine the state in state diagram?
- Why can't you generate a use case diagram from a state diagram?
- Plantuml. How to create finite state machine diagrams?
- <Verilog> May I know why EQ=1, but the output no response?
- UML state diagram definition
- Modelling action use limit in Markov Decision Process
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
a*b*means (zero or more a's followed by zero or more b's) .Strings present in language
a*b*are L={epsilon(zero a's and zero b's) , a, b, ab, aab, abb...... }DFA for strings in language
a*b*are:Here, ∆ represents transition. q0 is the initial state. q0, q1 are final states.
Similarly DFA for strings not present in language
a*b*are:Here, ∆ represents transition. q0 is the initial state. q2 is the final state.
Here is the image for above DFA's:
[1]: https://i.stack.imgur.com/SAt38.jpg DFA image
Hope You Got it.!!