answersLogoWhite

0

START (0/1=even/even):

0-->A

1-->B

A (0/1=odd/even):

0-->START

1-->STOP

B (0/1=even/odd):

0-->STOP

1-->START

STOP (0/1=odd/odd):

0-->B

1-->A

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is finite Automata-compiler design?

single possible output for a given input


What is automata and language?

Automata is a mathematical model used to study computation and language recognition. It can be finite or infinite, deterministic or non-deterministic. A language is a set of strings formed from a certain alphabet, and automata can be used to recognize or generate these strings.


What is full form of DFA and NFA?

DFA - deterministic finite automata NFA - non-deterministic finite automata


What are the limitations of finite automata?

The defining characteristic of FA is that they have only a finite number of states. Hence, a finite automata can only "count" (that is, maintain a counter, where different states correspond to different values of the counter) a finite number of input scenarios.There is no finite automaton that recognizes these strings:The set of binary strings consisting of an equal number of 1's and 0'sThe set of strings over '(' and ')' that have "balanced" parenthesesThe 'pumping lemma' can be used to prove that no such FA exists for these examples.


What is the difference between deterministic finite automata and non deterministic finite automata?

A deterministic Finite Automata)DFA will have a single possible output for a given input.The answer is deterministic because you can always feel what the output will be.A (Nondeterministic Finite Automata)NFA will have at least one input which will cause a "choice" to be made during a state transition,unlike a (deterministic Finite Automata)DFA one input can cause multiple outputs for a given (Nondeterministic Finite Automata)NFA.


Are all deterministic finite automata (DFAs) also non-deterministic finite automata (NFAs)?

No, not all deterministic finite automata (DFAs) are also non-deterministic finite automata (NFAs). DFAs have a single unique transition for each input symbol, while NFAs can have multiple transitions for the same input symbol.


What is difference between finite state automaton and transition graph?

finite automata


Is it possible to show that all deterministic finite automata (DFA) are decidable?

Yes, it is possible to show that all deterministic finite automata (DFA) are decidable.


What is the significance of the DFA for the empty set in automata theory?

The DFA for the empty set in automata theory is significant because it represents a finite automaton that cannot accept any input strings. This helps in understanding the concept of unreachable states and the importance of having at least one accepting state in a deterministic finite automaton.


What does dfa stand for?

Deterministic finite state automata


What is dfa and nfa?

DFA - Deterministic Finite Automata NFA - Non-Deterministic Finite Automata Both DFAs and NFAs are abstract machines which can be used to describe languages.


What is better Finite Automata or Regular Expression?

Finite Automata and Regular Expressions are equivalent. Any language that can be represented with a regular expression can be accepted by some finite automaton, and any language accepted by some finite automaton can be represented by a regular expression.