State Transition Diagram: A directed graph whose nodes represent the states.
Finite State Machine (FSM): Conists of a set of input symbols and if it produces an oputput, a set of output symbols. A finite set of states and a transition function thatmaps a state-symbol pair to a state and possibly generates an ouput depending on the type of FSM.
Transition Function: Maps inputs symbols and current state to output symbol and next state.
Transition Table: Tabulates the transitions functions.
Deterministic FSM: An FSM that has just one next state for each pair of state and input symbol.
Non-Deterministic FM: An FSM that may have several possible next states for each pair of state and input symbol.
Halting State: A state that has no outgoing transition.
Mealy Machine: An FSM that determines its outputs from the current state and the inputs.
Moore Machine: An FSM that determines its outputs from the current state only.
Finite State Automation (FSA): An FSM that produces no output while processing the the input but which responds YES or NO when it has finished processing the input.
Comments
No comments have yet been made