Finite Automata
Finite Automata
Finite Automata
Deterministic Finite Automata
(DFA)
OBJECTIVES
At the end of the module, the learner should be able to:
• Demonstrate understanding of the theory of Finite Automata
• Apply the concepts of Deterministic Finite Automata (DFA)
• Determine acceptability of a string using Extended
Transition of DFA
Introduction to Automata Theory
Automata Theory
➢ Is the study of abstract computing device, or “machines”.
➢ It deals with the logic of computation with respect to simple
machines, referred to as automata.
➢ It deals with the definitions and properties of mathematical
models of computation such as Finite Automaton and
Context-Free Grammar.
➢ Through automata, computer scientists are able to
understand how machines compute functions and solve
problems.
Introduction to Automata Theory
Brief History of Automata
Examples:
1101 → from = { 0, 1 } of length 4
a, ab, aac, bbac → from = {a, b, c} of length 1, 2, 3 and 4 respectively
* → set of all strings over of any finite length.
→ there is a unique string of length zero over
called the null string (empty string) and is
denoted by ε.
Introduction to Automata Theory
Terminologies
Concatenation of two strings u, v ∈ ∑*
o Is the string uv obtained by joining the strings end-to-end.
Example:
Reverse String
o If w = w1 w2…wn where w1 ∑ the reverse of w is wn wn-1…w1 .
Substring
o z is a substring of w if z appears consecutively within w.
Example: deck is a substring of abcdeckabcjkl.
Introduction to Automata Theory
Terminologies
Suffix if w= xv for some x, then v is suffix of w
Prefix if w= vy for some y, then v is suffix of w
Note:
The set of all strings over an alphabet is conventionally denoted by:
* = 0 1 2 . . .
Examples: { 0, 1 }* = { , 0, 1, 00, 01, 10, 11, 000, . . . }
Introduction to Automata Theory
Terminologies
State
o Its purpose is to remember the relevant portion of the system’s
history.
Type Conventions for Symbols and Strings
• A transition graph is a directed graph in that the vertices represent the internal
states of the automaton, and the edges represent the transitions.
• The labels on the vertices are the names of the internal states, while the labels on the
edges are the current values of the input symbols.
• The vertices of the graph correspond to the state of the FA.
• If there is a state q to p on input a, then there is an arc labeled "a" from state q to p.
• The FA accepts a string X if the sequence of transition corresponding to the symbols
of X from the start state leads to an accepting state.
WAYS OF PRESENTING FINITE AUTOMATA
2. State Table (or Transition Table)
WAYS OF PRESENTING FINITE AUTOMATA
3. Transition Function → (set of states, set of input
alphabet)
DETERMINISTIC FINITE AUTOMATA (DFA)
Formal Definition of a DFA
DFA is defined by the 5-tuple: { Q, , , q0, F }
where:
Q → a finite set of states
∑ → a finite set of input symbols (alphabet)
q0 → a start state
F → set of final states
δ → a transition function, which is a mapping
between Q x ∑ → Q and takes as arguments a state and an
input symbol and returns a state.
(i.e., (q0, x) = q1)
DETERMINISTIC FINITE AUTOMATA (DFA)
What does a DFA do on reading an input string?
Input: a word w in ∑*
Question: Is w acceptable by the DFA?
Steps:
• Start at the “start state” q0
• For every input symbol in the sequence w do
Compute the next state from the current state,
given the current input symbol in w and the
transition function
• If after all symbols in w are consumed, the current state is one
of the final states (F) then accept w; Otherwise, reject w.
DETERMINISTIC FINITE AUTOMATA (DFA)
Dead State
Are those non final state which transits in itself for all
input symbol.
DETERMINISTIC FINITE AUTOMATA (DFA)
Example 1:
Build a DFA for the following language:
L = {w | w is a binary string that contains 01 as a substring}
0 1
start
q0 q1 q2
Final
state
DETERMINISTIC FINITE AUTOMATA (DFA)
Example 2:
Design a DFA, M which accepts the language:
L(M) = {w (a, b)* :w does not contain three consecutive b’s)}
a b δ(q0, a) = q0
→ q0 q0 q1 δ(q0, b) = q1
* q1 q0 q2 δ(q1, a) = q0
q2 q0 q3 δ(q1, b) = q2
q3 q3 q3 δ(q2, a) = q0
δ(q2, b) = q3
δ(q3, a) = q3
δ(q3, b) = q3
DETERMINISTIC FINITE AUTOMATA (DFA)
Example 3:
Determine the DFA schematic for : M = (Q, ∑, δ, q1 , F )
L= {a b:
n n≥0}
Solution on next slide
DETERMINISTIC FINITE AUTOMATA (DFA)
Extended Transition of DFA
Let M = ( Q, , q0, , F ) be a DFA and w *.
To describe the behavior of M on w, we extend the transition function
to apply to a state and a string rather than a state and an input symbol.
states
an input of 0 is received? q1 Φ {q2}
q2 {q2} {q2}
Example 1: NFA for strings containing 01
NONDETERMINISTIC FINITE AUTOMATA (NFA)
Example 2:
Procedure:
1. Determine the number of states for the DFA: Q' = 2Q NFA. This will be the names of
the states for the DFA.
2. Draw the initial state diagram of the DFA with Q' as states, including the initial
state and the designated final states.
3. Construct the edges of the DFA states through the use of NFA transition function.
For each state, create a new state on the DFA state table. When no more states can
be added, process terminates.
The states that cannot be reached from the initial state are not included in Q. Hence,
Q' is not necessarily equal to 2Q.
DFA EQUIVALENT OF NFA
NFA to DFA by Subset Construction
Given the NFA State Diagram:
Convert it to DFA.
Solution next slides
Convert an NFA to DFA, easier technique
2. Convert the NFA transition table to DFA transition table
0 1
-->q0 q0, q1 q1
q0,q1 q0,q1 q0,q1
q1 {} q0,q1
{} {} {}
1. Create the transition table of NFA 3. Draw the DFA transition graph
0 1
-->q0 q0, q1 q1
*q1 {} q0,q1
DFA EQUIVALENT OF NFA
NFA to DFA using Lazy Creation
Idea: To avoid enumerating all of power set, do “lazy creation of states”
0,1 0 1
NFA: {q0} {q0,q1}
0
{q0,q2}
0 1 1
q0 q1 q2
A few subtle properties of DFAs and NFAs
The machine never really terminates. It is always
waiting for the next input symbol or making transitions.
The machine decides when to consume the next symbol
from the input and when to ignore it. (but the machine
can never skip a symbol).
A transition can happen even without really consuming
an input symbol (think of consuming as a free token).
A single transition cannot consume more than one
symbol.
NFA with Epsilon Transition
Allow explicit -transitions in finite automata i.e., a transition
from one state to another state without consuming any
additional input symbol.
Makes it easier sometimes to construct NFAs.
Definition: -NFAs are those NFAs with at least one
explicit -transition defined.
-NFAs have one more column in their transition table.
Example:
NFA with Epsilon Transition
• Unlike NFA, NFA with empty transitions can switch from one state to another
without consuming an input symbol.
• Anything that can be represented with an ϵNFA can be represented with a DFA that
has no ϵ-transitions.
Formal Definition: It is a 5-tuple: M = ( Q, , , q0, F )
where: → Q x ( { ϵ } ) → 2Q
ECLOSE(q1) = { q1, q2 }