Skip to main content

Posts

Showing posts from May, 2013

DFA Vs NFA

Difference between DFA & NFA DFA  means Deterministic Finite Automata .  From one state to another only one input symbol is using. NFA  means Non- Deterministic Finite Automata.  There may be more than one transition from one state to another using same symbol.

Computation,Finite Automata,DFA,NFA,notations

        My Old Google site:  Click (" https://sites.google.com/site/cse09506mesce/home ")          1) Computation is the sequence of steps performed by the computer.         2) Computation is the process of execution of an algorithm that involves take some inputs and apply some operation then will get some output. Output may be accepted or rejected based on the input string. In My point of view eg:        In neural network we having inputs,operation and outputs....Operation may be called as activation function. Finite Automata           The word automata  comes from greek word automata that means "self acting". self acting->Something is doing something by itself.           we will see the term Automata.  Automata-> is the study of abstract computing devices or machines. Finite Automata-> is the mathematical model of a system with descrete inputs and ouputs. FA divided into 2.  DFA and NFA DFA means

What is computation ? ? ? ?

Context-sensitive grammar

Context-sensitive grammar Context-sensitive grammars are more general than context-free grammars but still orderly enough to be parsed by a linear bounded automaton. Linear bounded automaton In computer science, a linear bounded automaton (plural linear bounded automata, abbreviated LBA ) is a restricted form of nondeterministic Turing machine .