answersLogoWhite

0


Best Answer

DFA stands for Deterministic Finite Automaton NFA stands for Non-Deterministic Finite Automaton

When processing a string in a DFA, there is always a unique state to go next when each character is read. It is because for each state in DFA, there is exactly one state that corresponds to each

character being read.

In an NFA, several choices (or no choice) may exist for the next state

•Can move to more than 1 states, or nowhere

•Can move to a state without reading anything

1. The transition function for nfa ie delta is multi valued where as for dfa it is single valued.

2. Checking membership is easy with dfa where as it is difficult for nfa

3. Construction of nfa is very easy where as for dfa it is difficult

4. Space required for dfa is more where for nfa it is less

5. Backtracking is allowed in dfa,but it is not possible in every casi in nfa.

6. For every input and output we can constuct dfa machine,but it is not possible to construct an nfa machine for every input and output.

7. There is only 1 final state in nfa but there can be more then 1 final state in dfa.


A finite automata, in which after consuming an input symbol, automata makes it's transition to only one state, is called as the deterministic finite automata or DFA.

p(current state)----->input symbol------> state q(next state)

A finite automata, in which after consuming an input symbol, automata can make it's transition more one state, is called as the nondeterministic finite automata or NFA.

p(current state)----->input symbol------> state q(first guessing)

--->state r( next guessing)

i.e. a nfa can guess the next states and if any guess proves to be right later than it get stuck and continue with other guesses.

User Avatar

Wiki User

6y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between DFA and NFA?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between NFA and DFA with examples for each?

aop


Can DFA simulate NFA?

Yes, any NFA can be converted into an equivalent DFA. because there is an equivalence in between an NFA and DFA


Similarity bw NFA and DFA?

if a language is recognized by NFA then it can also be recognized by DFA so we can simply say that NFA=DFA


Difference between DFA and NFA?

Hi, 1. DFA cannot use empty string transition and NFS can use empty string transition. 2. It use one machine but it use multiple machine. 3. DFA is one state transition but NFA react according to some symbol.


What is full form of DFA and NFA?

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


Differences between NFA and DFA and Compare their powers as a token recogniser?

1. Every state of DFA always has exactly one exiting transition arrow for each symbol in the alphabet. In NFA a state may have zero, one or many exiting arrow for each alphabet. 2. NFA can use empty string transition but DFA can not use it.


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.


How you can convert epsilon nfa to dfa?

To convert an epsilon nfa to a dfa you need to do an intermediate step. We know: Regular expression > epsilon nfa > nfa > DFA We cannot skip steps here. To convert an epsilon nfa to an nfa, first you need to make a transition table for the epsilon nfa. In the transition table, just do not include the epsilons, meaning only transitions to sets of states. Also remember that you can use epsilon transitions, however an input must be consumed as well to move to another state. As well all states that can be reached only by epsilon transitions become final states. After you have the resulting transition table for the nfa, you can now make a dfa. All sets of states that are reachable in the nfa become single states in the dfa.


Distinguish between dfa and nfa?

DFA stands for Deterministic finite automaton and NFA stands for Nondeterministic finite automaton.Formally, an automaton is made up of: were delta is the transition function. In a DFA, delta takes as input a state and letter and returns only one state. In an NFA, delta takes as input a state and letter but returns a set of states.An NFA accepts a word iff there exists a run of the automaton on it (intuitively, the automaton guesses an accepting run). A DFA has only one run on every word and therefore accepts a word iff the single run on it is accepting.


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.


Difference between deterministic finite automata and non deterministic finite automata?

A deterministic finite automaton will have a single possible output for a given input. The answer is deterministic because you can always tell what the output will be. A nondeterministic finite automaton will have at least one input which will cause a "choice" to be made during a state transition. Unlike a DFA, one input can cause multiple outputs for a given NFA.


What is the similarities between dfa and nfa?

It is one of those choices that other utilities go along with to maintain consistancy. For instance, "$" can refer to the last line of a file when using ed and sed. Cat -e marks end of lines with a "$". You might see it in other programs as well.