Unit 6 Flashcards
Blank is any type of calculation that includes both arithmetical and non-arithmetical steps and follows steps that provide a solution to a problem.
Computation
Blank are abstract models that allow computer scientists to reason about what can and cannot be computed by a particular kind of device.
Computational models
Many blank exist in the field of computer science, including pushdown automata, linear-bounded automata, and Turing machines.
computational models
If the computational model outputs “yes” in response to a particular input string, then the model blanks the string.
accepts
If the model outputs “no” in response to a particular input string, then the model blanks the string.
rejects
The blank accepted by a computational model is the set of all strings which the computational model accepts.
language
A blank is a set of rules for generating strings.
grammar
The blank is the set of all strings that can be generated according to the rules of the grammar.
language generated by a grammar
A blank (plural: finite state automata) consists of a finite set of states with transitions between the states triggered by different input actions.
finite state automaton
A finite state automaton is also known as a blank.
finite state machine (FSM)
Blank is the process of solving problems using a physical device. The physical device that can perform computations is referred to as a “computer.”
Computation
Blank are abstract models that allow computer scientists to reason out what can and what cannot be computed.
Computational models
Blank receive a string as an input and produce an output based on the input. Some models output “yes” when the input string is accepted by the machine or “no” if it is rejected.
Computational models
The set of strings accepted by a machine is called a blank. A blank is generated by a set of rules called grammar. The concepts of languages, grammars, and automata are intrinsically connected. A grammar generates a language that is accepted by an automaton.
language
Blank is a computational model that consists of a finite set of states with transitions between the states triggered by different input actions. It is also called a finite state machine (FSM).
Finite state automaton
A blank is a finite state automaton whose next state is uniquely determined by the current state and the next input symbol.
deterministic finite automaton (DFA)
A finite number of blank that the automaton enters during the processing of a string.
states
The blank, or a finite set of possible input symbols in a string.
alphabet
A blank, which is a set of rules that determine the next state entered by the automaton based on the current state and the next input symbol received.
transition function
A blank at which the processing of a string begins.
start state
One or more blank that represent the acceptance of a string if the automaton ends up in one of those states at the end of processing the string. A string is rejected if the automaton ends up in a non-accepting state at the end of processing the string.
accepting states
The finite set of states
Q
The aphabet
E
The transition function
Theta
THe state in Q that is the start state
q0
A state of accepting states that is the saubset of Q
F
A blank is a finite state automaton whose next state is uniquely determined by the current state and the next input symbol.
deterministic finite automaton (DFA)
A deterministic finite automaton is a quintuplet (5-tuple) that consists of:
a set of states,
a set of symbols (alphabet),
a transition function (set of rules for transitioning between states),
an initial state, and
a set of final, accepting states.
Initially the DFA is in the given blank. It initiates its transitions by looking at the first symbol of the input string. The state the DFA will transition to depends on the symbol currently at the beginning of the input string and the blank.
initial state
transition function
A string is accepted by a DFA if the machine does not have any symbols from the initial string to read and it has transitioned into an blank.
accepting state
A blank is a directed graph whose nodes represent states.
state diagram
A state diagram is a visual representation of a blank
deterministic finite automation.
In a state diagram, blank denote the states of the automation
Circles
In a state diagram, blank explain the transitions between states, i.e. they model the transition function.
The labeled arrows
The automaton blank between states jumping from one state to another following the arrow that is labeled by the next alphabet symbol from the input string.
transitions
In a blank, the rows represent the current state and the columns represent the possible input symbols. Each entry of the table indicates the next state for each current state and input symbol combination.
state transition table
The blank of a deterministic automation can be represented by a table that defines the state to which the automation transitions, based on the current state. The current states are represented as rows and the current alphabet symbols are represented in the columns of the state transition table.
transition function
Blank can be described using words, state transition diagrams, or state transition tables, among other methods.
DFA transition functions
The blank always starts in the “start” state and initiates the transition based on the first symbol of the input string. In the new state it reacts to the second symbol, transitions to a new state, and so on.
DFA
Some DFAs can build blank as they transition based on the input symbol.
output
The input and output blank may coincide, but they do not need to. The DFA with output is virtually a rewriting system, one that uses one string and generates another based on the rewriting rules defined by the transition function.
alphabets
A deterministic finite automaton with output, or blank, produces a response that depends on the current state as well as the most recently received input.
DFA with output
An input string is accepted if the DFA ends up in an blank after each character in the string is processed. The set of all accepting states is a designated subset of the states.
accepting state
The property of whether a number is odd or even is called the blank of a number.
parity
The blank of a DFA is denoted by a doubled circle in the state transition diagram.
finite states
An input string is blank if the input string resulted in a DFA that is in a finite state.
accepted
There are languages a DFA cannot recognize, as its blank is limited on the current state and the next symbol of the input string.
memory
A blank is a finite state automaton whose next state is not uniquely determined by the current state and the next input symbol.
non-deterministic finite automaton (NFA)
In contrast to a DFA, in which the current state and the next input symbol uniquely determine the next state, an NFA can have more than blank to which the NFA can transition given the current state and the next input symbol.
than one possible state (or no state at all)
In addition, an NFA can have transitions from one state to another without reading in an input symbol at all, a transition known as an blank and represented by the symbol E.
epsilon transition
Similar to a DFA, an NFA contains several components.
A finite number of states that the automaton enters during the processing of a string.
The alphabet.
The transition function. In an NFA, an input symbol, or no input, can cause a transition to the next state. Because the next state of an NFA can be no state, one unique state, or one of many possible states, the output of the transition function is an element of P(Q), the power set of Q , or the set of all subsets of Q.
The start state.
One or more accepting states.
an NFA is also defined using a
blank.
5-tuple
Blank are a quintuplet, where the transition function maps into the power state of the set of states. The components of the NFAs are the states set, the alphabet, set of final states, initial state, and a transition function.
Nondeterministic finite automata
NFAs can transition into multiple states with blank or blank
one symbol or no symbols.
An blank is a transition from one state or another without reading an input symbol.
epsilon transition
The blank of an NFA can be represented using a state transition diagram.
transition function
Unlike the DFA there are transitions that do not use a symbol from the input string. The transitions are labeled with the blank and are called epsilon transitions.
epsilon symbol
The transition function of a blank can be represented by a table that defines the state to which the automation transitions, based on the current state (represented as rows) and the current symbol (represented in the columns of the state transition table), including the epsilon symbol which denotes transitioning without using a symbol from the input.
nondeterministic finite automation (NFA)
NFAs’ transition functions can be described using blank, blank or blank among other methods.
words, state transition diagrams, or state transition tables,
Unlike DFAs, NFAs can end up in different blanks
states.
When determining the transitions of a nondeterministic finite automaton, blank the possible sequences of actions given in an input string must be considered.
all
Starting with the initial state, follow the blank to arrive to all possible states of an NFA after computation.
computations of the NFA
An NFA may have blank sequence of transitions for a given input string.
more than one valid
Some sequences of transitions may lead to a blank. Other sequences may lead to a non- accepting state at the input string.
dead end
An NFA accepts a string as long as at least one valid sequence of transitions corresponding to the input symbols exists, putting the NFA in an blank at the end of the input string.
accepting state