Atomata Notes
Atomata Notes
Atomata Notes
05
Obtain a DFA to accept strings of a’s and b’s starting with the string ab
a,b
q a q b q2
b
a
q
a,b
Fig.2.7 Transition diagram to accept string ab(a+b)*
So, the DFA which accepts strings of a’s and b’s starting with the string ab is given by M =
(Q, ∑ , δ, q0, A) where
Q = {q0, q1, q2, q3}
∑ = {a, b}
q0 is the start state
A = {q2}.
δ is shown the transition table 2.4.
←Σ→
δ a b
→q0 q1 q3
← States →
q1 q3 q2
q2 q 2 q2
q3 q3 q3
Downloaded from www.pencilji.com
Draw a DFA to accept string of 0’s and 1’s ending with the string 011.
1 0
0 1 1
q0 q1 q2 q3
0
0
1
Obtain a DFA to accept strings of a’s and b’s having a sub string aa
b a,b
q0 a q1 a q2
b
Obtain a DFA to accept strings of a’s and b’s except those containing the substring aab.
b a a,b
q0 a q1 a q2 b
q3
b
Obtain DFAs to accept strings of a’s and b’s having exactly one a,
b b a,b
q0 a q1 a q2
b a, b
q0 a q1
b b b b a, b
q0 a q1 a q2 a q3 a q4
Obtain a DFA to accept strings of a’s and b’s having even number of a’s and b’s
The machine to accept even number of a’s and b’s is shown in fig.2.22.
a
q q
a
b b b b
a
q q
a
2
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
a
q0 q1
a
b b b b
a
q2 q3
a
a
q0 q1
a
b b b b
a
q2 q3
a
a
q0 q1
a
b b b b
a
q2 q3
a
Regular language
Definition: Let M = (Q, ∑, δ, q0, A) be a DFA. The language L is regular if there exists a
machine M such that L = L(M).
* Applications of Finite Automata *
String matching/processing
Compiler Construction
The various compilers such as C/C++, Pascal, Fortran or any other compiler is designed
using the finite automata. The DFAs are extensively used in the building the various phases
of compiler such as
• Lexical analysis (To identify the tokens, identifiers, to strip of the comments etc.)
• Syntax analysis (To check the syntax of each statement or control statement used in
the program)
• Code optimization (To remove the un wanted code)
3
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
• Code generation (To generate the machine code)
Other applications
The concept of finite automata is used in wide applications. It is not possible to list all the
applications as there are infinite number of applications. This section lists some applications:
1. Large natural vocabularies can be described using finite automaton which includes
the applications such as spelling checkers and advisers, multi-language dictionaries,
to indent the documents, in calculators to evaluate complex expressions based on the
priority of an operator etc. to name a few. Any editor that we use uses finite
automaton for implementation.
2. Finite automaton is very useful in recognizing difficult problems i.e., sometimes it is
very essential to solve an un-decidable problem. Even though there is no general
solution exists for the specified problem, using theory of computation, we can find
the approximate solutions.
3. Finite automaton is very useful in hardware design such as circuit verification, in
design of the hardware board (mother board or any other hardware unit), automatic
traffic signals, radio controlled toys, elevators, automatic sensors, remote sensing or
controller etc.
4. In game theory and games wherein we use some control characters to fight against a
monster, economics, computer graphics, linguistics etc., finite automaton plays a very
important role.
Non deterministic finite automata(NFA)
Definition: An NFA is a 5-tuple or quintuple M = (Q, ∑, δ, q0, A) where
Q is non empty, finite set of states.
∑ is non empty, finite set of input alphabets.
δ is transition function which is a mapping from
Q x {∑ U ε} to subsets of 2Q. This function shows
the change of state from one state to a set of states
based on the input symbol.
q0 ∈ Q is the start state.
A ⊆ Q is set of final states.
Acceptance of language
Definition: Let M = (Q, ∑, δ, q0, A) be a DFA where Q is set of finite states, ∑ is set of input
alphabets (from which a string can be formed), δ is transition function from Q x {∑Uε} to
2Q, q0 is the start state and A is the final or accepting state. The string (also called language)
w accepted by an NFA can be defined in formal notation as:
Step1:
The start state of NFA MN is the start state of DFA MD. So, add q0(which is the start
state of NFA) to QD and find the transitions from this state. The way to obtain
different transitions is shown in step2.
Step2:
For each state [qi, qj,….qk] in QD, the transitions for each input symbol in ∑ can be
obtained as shown below:
1. δD([qi, qj,….qk], a) = δN(qi, a) U δN(qj, a) U ……δN(qk, a)
= [ql, qm,….qn] say.
2. Add the state [ql, qm,….qn] to QD, if it is not already in QD.
3. Add the transition from [qi, qj,….qk] to [ql, qm,….qn] on the input symbol a iff the
state [ql, qm,….qn] is added to QD in the previous step.
Step3:
The state [qa, qb,….qc] ∈ QD is the final state, if at least one of the state in qa, qb, …..
qc ∈ AN i.e., at least one of the component in [qa, qb,….qc] should be the final state of
NFA.
Step4:
If epsilon (∈) is accepted by NFA, then start state q0 of DFA is made the final state.
5
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
0 1
q0 0,1 q 0, 1 q
1 2
Step2: Find the new states from each state in QD and obtain the corresponding transitions.
Consider the state [q0]:
When a = 0
δD([q0], 0) = δN([q0], 0)
= [q0, q1]
(2.8)
When a = 1
δD([q0], 1) = δN([q0], 1)
= [q1]
(2.9)
Since the states obtained in (2.8) and (2.9) are not in QD(2.7), add these two states to QD so
that
δD([q1], 0) = δN([q1], 0)
= [q2]
(2.14)
When a = 1
δD([q1], 1) = δN([q1], 1)
= [q2]
(2.15)
Since the states obtained in (2.14) and (2.15) are same and the state q2 is not in QD(see 2.13),
add the state q2 to QD so that
QD = {[q0], [q0, q1], [q1], [q0, q1, q2], [q1, q2], [q2]} (2.16)
7
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
[q1] [q2] [q2]
[q0, q1,
q2 ]
Q [q1, q2]
[q2]
When a = 0
δD([q0,q1,q2], = δN([q0,q1,q2], 0)
0) = δN(q0, 0) U δN(q1, 0) U δN(q2, 0)
= {q0,q1} U {q2} U {φ}
= [q0,q1,q2]
(2.17)
When a = 1
δD([q0,q1,q2], = δN([q0,q1,q2], 1)
1) = δN(q0, 1) U δN(q1, 1) U δN(q2, 1)
= {q1} U {q2} U {q2}
= [q1, q2]
(2.18)
Since the states obtained in (2.17) and (2.18) are not new states (are already in QD, see 2.16),
do not add these two states to QD. But, the transitions on a = 0 and a = 1 should be added to
the transitional table as shown below:
∑
δ 0 1
[q0] [q0, q1] [q1]
[q0, q1] [q0, q1, q2] [q1, q2]
Q [q1] [q2] [q2]
[q0, q1, [q0,q1,q2] [q1, q2]
q2 ]
[q1, q2]
[q2]
When a = 0
δD([q1,q2], 0) = δN([q1,q2], 0)
8
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
= δN(q1, 0) U δN(q2, 0)
= {q2} U {φ}
= [q2]
(2.19)
When a = 1
δD([q1,q2], 1) = δN([q1,q2], 1)
= δN(q1, 1) U δN(q2, 1)
= {q2} U {q2}
= [q2]
(2.20)
Since the states obtained in (2.19) and (2.20) are not new states (are already in QD see 2.16),
do not add these two states to QD. But, the transitions on a = 0 and a = 1 should be added to
the transitional table as shown below:
∑
δ 0 1
[q0] [q0, q1] [q1]
[q0, q1] [q0, q1, q2] [q1, q2]
Q [q1] [q2] [q2]
[q0, q1, [q0,q1,q2] [q1, q2]
q2 ]
[q1, q2] [q2] [q2]
[q2]
When a = 0
δD([q2], 0) = δN([q2], 0)
= {φ}
(2.21)
When a = 1
δD([q2], 1) = δN([q2], 1)
= [q2]
(2.22)
Since the states obtained in (2.21) and (2.22) are not new states (are already in QD, see 2.16),
do not add these two states to QD. But, the transitions on a = 0 and a = 1 should be added to
the transitional table. The final transitional table is shown in table 2.14. and final DFA is
shown in figure 2.35.
δ 0 1
[q0] [q0, q1] [q1]
[q0, q1, q2] [q1, q2]
[q0,q1] 9
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
[q2] [q2]
[q2] [q2]
[q2[q
] 1] φ [q2]
[q0,q1,q2]
[q0 ]
[q1,q2]
0 1
[q0, q1 ] [q1]
0 1 0, 1
1 0, 1
[q0, q 1, q 2] [q1 , q2 ] [q2 ]
0 1
10
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
δ(A, a) = δN(0, a)
= {1}
(B)
When input is b:
δ( A, b) = δN(0, b)
= {φ}
When input is a:
δ(B, a) = δN(1, a)
= {φ}
When input is b:
δ( B, b) = δN(1, b)
= {2}
= {2,3,4,6,9} (C)
This is because, in state 2, due to ε-transitions (or without giving any input) there
can be transition to states 3,4,6,9 also. So, all these states are reachable from state 2.
Therefore,
δ(B, b) = {2,3,4,6,9} = C
Consider the state [C]:
When input is a:
δ(C, a) = δN({2,3,4,6,9}, a)
= {5}
= {5, 8, 9, 3, 4, 6}
= {3, 4, 5, 6, 8, 9} (ascending
order) (D)
This is because, in state 5 due to ε-transitions, the states reachable are {8, 9, 3, 4,
6}. Therefore,
δ(C, a) = {3, 4, 5, 6, 8, 9} = D
When input is b:
δ( C, b) = δN({2, 3, 4, 6, 9}, b)
= {7}
= {7, 8, 9, 3, 4, 6}
= {3, 4, 6, 7, 8, 9}(ascending order)
(E)
11
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
This is because, from state 7 the states that are reachable without any input (i.e., ε-
transition) are {8, 9, 3, 4, 6}. Therefore,
δ(C, b) = {3, 4, 6, 7, 8, 9} = E
Consider the state [D]:
When input is a:
δ(D, a) = δN({3,4,5,6,8,9}, a)
= {5}
= {5, 8, 9, 3, 4, 6}
= {3, 4, 5, 6, 8, 9} (ascending
order) (D)
When input is b:
δ(D, b) = δN({3,4,5,6,8,9}, b)
= {7}
= {7, 8, 9, 3, 4, 6}
= {3, 4, 6, 7, 8, 9} (ascending
order) (E)
When input is a:
δ(E, a) = δN({3,4,6,7,8,9}, a)
= {5}
= {5, 8, 9, 3, 4, 6}
= {3, 4, 5, 6, 8, 9}(ascending order)
(D)
When input is b:
δ(E, b) = δN({3,4,6,7,8,9}, b)
= {7}
= {7, 8, 9, 3, 4, 6}
= {3, 4, 6, 7, 8, 9}(ascending order)
(E)
Since there are no new states, we can stop at this point and the transition table for the DFA is
shown in table 2.15.
∑
δ a b
A B -
B - C
12
C Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
D E
D E
D E
Q
The states C,D and E are final states, since 9 (final state of NFA) is present in C, D and E.
The final transition diagram of DFA is shown in figure 2.36
a
A a B b C a D
a
b
b
E
b
Regular Languages
Regular expression
Definition: A regular expression is recursively defined as follows.
The table 3.1 shows some examples of regular expressions and the language corresponding to these
regular expressions.
Regular Meaning
13
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
expressions
(a+b)* Set of strings of a’s and b’s of any length
including the NULL string.
(a+b)*abb Set of strings of a’s and b’s ending with the
string abb
ab(a+b)* Set of strings of a’s and b’s starting with the
string ab.
(a+b)*aa(a+b) Set of strings of a’s and b’s having a sub string
* aa.
a*b*c* Set of string consisting of any number of
a’s(may be empty string also) followed by any
number of b’s(may include empty string)
followed by any number of c’s(may include
empty string).
a+b+c+ Set of string consisting of at least one ‘a’
followed by string consisting of at least one ‘b’
followed by string consisting of at least one ‘c’.
aa*bb*cc* Set of string consisting of at least one ‘a’
followed by string consisting of at least one ‘b’
followed by string consisting of at least one ‘c’.
(a+b)* (a + Set of strings of a’s and b’s ending with either a
bb) or bb
(aa)*(bb)*b Set of strings consisting of even number of a’s
followed by odd number of b’s
(0+1)*000 Set of strings of 0’s and 1’s ending with three
consecutive zeros(or ending with 000)
(11)* Set consisting of even number of 1’s
Obtain a regular expression to accept a language consisting of strings of a’s and b’s of even length.
String of a’s and b’s of even length can be obtained by the combination of the strings aa, ab,
ba and bb. The language may even consist of an empty string denoted by ε. So, the regular
expression can be of the form
(aa + ab + ba + bb)*
The * closure includes the empty string.
Note: This regular expression can also be represented using set notation as
L(R) = {(aa + ab + ba + bb)n | n ≥ 0}
Obtain a regular expression to accept a language consisting of strings of a’s and b’s of odd length.
String of a’s and b’s of odd length can be obtained by the combination of the strings aa, ab,
ba and bb followed by either a or b. So, the regular expression can be of the form
14
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Theorem: Let R be a regular expression. Then there exists a finite automaton M = (Q, ∑, δ,
q0, A) which accepts L(R).
Proof: By definition, φ, ε and a are regular expressions. So, the corresponding machines to
recognize these expressions are shown in figure 3.1.a, 3.1.b and 3.1.c respectively.
q0
φ
qf q0 ε qf q0 a qf
The schematic representation of a regular expression R to accept the language L(R) is shown
in figure 3.2. where q is the start state and f is the final state of machine M.
L(R)
q M f
In the definition of a regular expression it is clear that if R and S are regular expression, then
R+S and R.S and R* are regular expressions which clearly uses three operators ‘+’, ‘-‘ and
‘.’. Let us take each case separately and construct equivalent machine. Let M1 = (Q1, ∑1, δ1,
q1, f1) be a machine which accepts the language L(R1) corresponding to the regular
expression R1. Let M2 = (Q2, ∑2, δ2, q2, f2) be a machine which accepts the language L(R2)
corresponding to the regular expression R2.
Case 1: R = R1 + R2. We can construct an NFA which accepts either L(R1) or L(R2) which
can be represented as L(R1 + R2) as shown in figure 3.3.
L(R1)
ε q1 M1 ε 15
q0 f qf
Downloaded from www.pencilji.com
ε q2 M2 ε
f
L(R2)
Downloaded from www.pencilji.com
It is clear from figure 3.3 that the machine can either accept L(R1) or L(R2). Here, q0 is the
start state of the combined machine and qf is the final state of combined machine M.
Case 2: R = R1 . R2. We can construct an NFA which accepts L(R1) followed by L(R2) which
can be represented as L(R1 . R2) as shown in figure 3.4.
L(R1) L(R2)
ε
q1 M1 q2 M2
f f
Fig. 3.4To accept the language L(R1 . R2)
It is clear from figure 3.4 that the machine after accepting L(R1) moves from state q1 to f1.
Since there is a ε-transition, without any input there will be a transition from state f1 to state
q2. In state q2, upon accepting L(R2), the machine moves to f2 which is the final state. Thus,
q1 which is the start state of machine M1 becomes the start state of the combined machine M
and f2 which is the final state of machine M2, becomes the final state of machine M and
accepts the language L(R1.R2).
Case 3: R = (R1)*. We can construct an NFA which accepts either L(R1)*) as shown in figure
3.5.a. It can also be represented as shown in figure 3.5.b.
ε
ε ε
q0 q1 M1 qf
f
L(R1)
ε
(a)
ε
q0 q1 M1 qf
ε f ε
(b)
16
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
It is clear from figure 3.5 that the machine can either accept ε or any number of L(R1)s thus
accepting the language L(R1)*. Here, q0 is the start state qf is the final state.
Obtain an NFA which accepts strings of a’s and b’s starting with the string ab.
4 a 5
6 b 7
Step 3: The machine to accept (a + b) is shown below.
a
ε 4 5 ε
3 8
ε 6 7 ε
b
Step 4: The machine to accept (a+b)* is shown below.
ε
a
ε 4 5 ε
ε ε
2 3 8 9
ε 6 7 ε
b
ε
a 1 b
0 2
The general procedure to obtain a regular expression from FA is shown below. Consider the
generalized graph
r1 r r
q0 q1
r
where r1, r2, r3 and r4 are the regular expressions and correspond to the labels for the edges.
The regular expression for this can take the form:
Note:
1. Any graph can be reduced to the graph shown in figure 3.9. Then substitute the
regular expressions appropriately in the equation 3.1 and obtain the final regular
expression.
2. If r3 is not there in figure 3.9, the regular expression can be of the form
r = r1*r2 r4* (3.2)
3. If q0 and q1 are the final states then the regular expression can be of the form
r = r1* + r1*r2 r4* (3.3)
q2 q3 0,1
1
18
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
It is clear from this figure that the machine accepts strings of 01’s and 10’s of any length and
the regular expression can be of the form
(01 + 10)*
0 1 0,
0 q2 1
q0 q1
1
Since, state q2 is the dead state, it can be removed and the following FA is obtained.
0 1
q0 q1
1
The state q0 is the final state and at this point it can accept any number of 0’s which can be
represented using notation as
0*
q1 is also the final state. So, to reach q1 one can input any number of 0’s followed by 1 and
followed by any number of 1’s and can be represented as
0*11*
So, the final regular expression is obtained by adding 0* and 0*11*. So, the regular expression
is
R.E = 0* + 0*11*
= 0* ( ∈ + 11*)
= 0 * ( ∈ + 1+ )
= 0* (1*) = 0*1*
It is clear from the regular expression that language consists of any number of 0’s (possibly
ε) followed by any number of 1’s(possibly ε).
19
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
/acb*c/
then the editor searches for a string which starts with ac followed by zero or more b’s and
followed by the symbol c. Note that the editor ed accepts the regular expression and searches
for that particular pattern in the text. As the input can vary dynamically, it is challenging to
write programs for string patters of these kinds.
20
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Note: For each input symbol a, from a given state there is exactly one transition (there can be
no transitions from a state also) and we are sure (or can determine) to which state the
machine enters. So, the machine is called Deterministic machine. Since it has finite number
of states the machine is called Deterministic finite machine or Deterministic Finite
Automaton or Finite State Machine (FSM).
The language accepted by DFA is
L(M) = { w | w ∈ ∑* and δ*(q0, w) ∈ A }
The non-acceptance of the string w by an FA or DFA can be defined in formal notation as:
Obtain a DFA to accept strings of a’s and b’s starting with the string ab
a,b
q0 a q1 b q2
b
a
q3
a,b
So, the DFA which accepts strings of a’s and b’s starting with the string ab is given by M =
(Q, ∑ , δ, q0, A) where
Q = {q0, q1, q2, q3}
∑ = {a, b}
q0 is the start state
A = {q2}.
δ is shown the transition table 2.4.
21
Downloaded from www.pencilji.com
←Σ→
δ a b
Downloaded from www.pencilji.com
→q0 q1 q3
← States →
q1 q3 q2
q2 q 2 q2
q3 q3 q3
Draw a DFA to accept string of 0’s and 1’s ending with the string 011.
1 0
0 1 1
q0 q1 q2 q3
0
0
Obtain a DFA to accept strings of a’s and b’s having a sub string aa
b a,b
q0 a q1 a q2
b
Obtain a DFA to accept strings of a’s and b’s except those containing the substring aab.
b a a,b
q0 a q1 a q2 b
q3
Obtain DFAs to accept strings of a’s and b’s having exactly one a,
b b a,b
q0 a q1 a q2
b a, b
q0 a q1
22
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
b b b b a, b
q0 a q1 a q2 a q3 a q4
Obtain a DFA to accept strings of a’s and b’s having even number of a’s and b’s
The machine to accept even number of a’s and b’s is shown in fig.2.22.
a
q0 q1
a
b b b b
a
q2 q3
a
a
q0 q1
a
b b b b
a
q2 q3
a
a
q0 q1
a
b b b b
a
q2 q3
a
a
q0 q1
a
b b b b 23
a
Downloaded from www.pencilji.com
q2 q3
a
Downloaded from www.pencilji.com
Regular language
Definition: Let M = (Q, ∑, δ, q0, A) be a DFA. The language L is regular if there exists a
machine M such that L = L(M).
Compiler Construction
The various compilers such as C/C++, Pascal, Fortran or any other compiler is designed
using the finite automata. The DFAs are extensively used in the building the various phases
of compiler such as
• Lexical analysis (To identify the tokens, identifiers, to strip of the comments etc.)
• Syntax analysis (To check the syntax of each statement or control statement used in
the program)
• Code optimization (To remove the un wanted code)
• Code generation (To generate the machine code)
Other applications
The concept of finite automata is used in wide applications. It is not possible to list all the
applications as there are infinite number of applications. This section lists some applications:
5. Large natural vocabularies can be described using finite automaton which includes
the applications such as spelling checkers and advisers, multi-language dictionaries,
to indent the documents, in calculators to evaluate complex expressions based on the
priority of an operator etc. to name a few. Any editor that we use uses finite
automaton for implementation.
6. Finite automaton is very useful in recognizing difficult problems i.e., sometimes it is
very essential to solve an un-decidable problem. Even though there is no general
solution exists for the specified problem, using theory of computation, we can find
the approximate solutions.
7. Finite automaton is very useful in hardware design such as circuit verification, in
design of the hardware board (mother board or any other hardware unit), automatic
traffic signals, radio controlled toys, elevators, automatic sensors, remote sensing or
controller etc.
8. In game theory and games wherein we use some control characters to fight against a
monster, economics, computer graphics, linguistics etc., finite automaton plays a very
important role.
24
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Acceptance of language
Definition: Let M = (Q, ∑, δ, q0, A) be a DFA where Q is set of finite states, ∑ is set of input
alphabets (from which a string can be formed), δ is transition function from Q x {∑Uε} to
2Q, q0 is the start state and A is the final or accepting state. The string (also called language)
w accepted by an NFA can be defined in formal notation as:
Step1:
The start state of NFA MN is the start state of DFA MD. So, add q0(which is the start
state of NFA) to QD and find the transitions from this state. The way to obtain
different transitions is shown in step2.
25
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Step2:
For each state [qi, qj,….qk] in QD, the transitions for each input symbol in ∑ can be
obtained as shown below:
4. δD([qi, qj,….qk], a) = δN(qi, a) U δN(qj, a) U ……δN(qk, a)
= [ql, qm,….qn] say.
5. Add the state [ql, qm,….qn] to QD, if it is not already in QD.
6. Add the transition from [qi, qj,….qk] to [ql, qm,….qn] on the input symbol a iff the
state [ql, qm,….qn] is added to QD in the previous step.
Step3:
The state [qa, qb,….qc] ∈ QD is the final state, if at least one of the state in qa, qb, …..
qc ∈ AN i.e., at least one of the component in [qa, qb,….qc] should be the final state of
NFA.
Step4:
If epsilon (∈) is accepted by NFA, then start state q0 of DFA is made the final state.
0 1
q0 0,1 q 0, 1 q
1 2
Step2: Find the new states from each state in QD and obtain the corresponding transitions.
Consider the state [q0]:
When a = 0
δD([q0], 0) = δN([q0], 0)
= [q0, q1]
(2.8)
When a = 1
δD([q0], 1) = δN([q0], 1)
= [q1]
(2.9)
Since the states obtained in (2.8) and (2.9) are not in QD(2.7), add these two states to QD so
that
δ 0 1
[q0] [q0, q1] [q1]
Q [q0, q1]
[q1]
δD([q1], 0) = δN([q1], 0)
= [q2]
(2.14)
When a = 1
27
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
δD([q1], 1) = δN([q1], 1)
= [q2]
(2.15)
Since the states obtained in (2.14) and (2.15) are same and the state q2 is not in QD(see 2.13),
add the state q2 to QD so that
QD = {[q0], [q0, q1], [q1], [q0, q1, q2], [q1, q2], [q2]} (2.16)
When a = 0
δD([q0,q1,q2], = δN([q0,q1,q2], 0)
0) = δN(q0, 0) U δN(q1, 0) U δN(q2, 0)
= {q0,q1} U {q2} U {φ}
= [q0,q1,q2]
(2.17)
When a = 1
δD([q0,q1,q2], = δN([q0,q1,q2], 1)
1) = δN(q0, 1) U δN(q1, 1) U δN(q2, 1)
= {q1} U {q2} U {q2}
= [q1, q2]
(2.18)
Since the states obtained in (2.17) and (2.18) are not new states (are already in QD, see 2.16),
do not add these two states to QD. But, the transitions on a = 0 and a = 1 should be added to
the transitional table as shown below:
28
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
∑
δ 0 1
[q0] [q0, q1] [q1]
[q0, q1] [q0, q1, q2] [q1, q2]
Q [q1] [q2] [q2]
[q0, q1, [q0,q1,q2] [q1, q2]
q2 ]
[q1, q2]
[q2]
When a = 0
δD([q1,q2], 0) = δN([q1,q2], 0)
= δN(q1, 0) U δN(q2, 0)
= {q2} U {φ}
= [q2]
(2.19)
When a = 1
δD([q1,q2], 1) = δN([q1,q2], 1)
= δN(q1, 1) U δN(q2, 1)
= {q2} U {q2}
= [q2]
(2.20)
Since the states obtained in (2.19) and (2.20) are not new states (are already in QD see 2.16),
do not add these two states to QD. But, the transitions on a = 0 and a = 1 should be added to
the transitional table as shown below:
∑
δ 0 1
[q0] [q0, q1] [q1]
[q0, q1] [q0, q1, q2] [q1, q2]
Q [q1] [q2] [q2]
[q0, q1, [q0,q1,q2] [q1, q2]
q2 ]
[q1, q2] [q2] [q2]
[q2]
29
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Consider the state [q2]:
When a = 0
δD([q2], 0) = δN([q2], 0)
= {φ}
(2.21)
When a = 1
δD([q2], 1) = δN([q2], 1)
= [q2]
(2.22)
Since the states obtained in (2.21) and (2.22) are not new states (are already in QD, see 2.16),
do not add these two states to QD. But, the transitions on a = 0 and a = 1 should be added to
the transitional table. The final transitional table is shown in table 2.14. and final DFA is
shown in figure 2.35.
∑
δ 0 1
[q0] [q0, q1] [q1]
[q0, q1, q2] [q1, q2]
[q0,q1]
Q
[q2] [q2]
[q1]
[q0,q1,q2] [q1, q2]
[q0,q1,q2]
[q1,q2] [q2] [q2]
[q2] φ [q2]
[q0 ]
0 1
[q0, q1 ] [q1]
0 1 0, 1
1 0, 1
[q0, q 1, q 2] [q1 , q2 ] [q2 ]
0 1
Fig.2.35 The DFA
30
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
δ(A, a) = δN(0, a)
= {1}
(B)
When input is b:
δ( A, b) = δN(0, b)
= {φ}
When input is a:
δ(B, a) = δN(1, a)
= {φ}
When input is b:
δ( B, b) = δN(1, b)
= {2}
= {2,3,4,6,9} (C)
This is because, in state 2, due to ε-transitions (or without giving any input) there
can be transition to states 3,4,6,9 also. So, all these states are reachable from state 2.
Therefore,
δ(B, b) = {2,3,4,6,9} = C
Consider the state [C]:
When input is a:
δ(C, a) = δN({2,3,4,6,9}, a)
= {5}
31
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
= {5, 8, 9, 3, 4, 6}
= {3, 4, 5, 6, 8, 9} (ascending
order) (D)
This is because, in state 5 due to ε-transitions, the states reachable are {8, 9, 3, 4,
6}. Therefore,
δ(C, a) = {3, 4, 5, 6, 8, 9} = D
When input is b:
δ( C, b) = δN({2, 3, 4, 6, 9}, b)
= {7}
= {7, 8, 9, 3, 4, 6}
= {3, 4, 6, 7, 8, 9}(ascending order)
(E)
This is because, from state 7 the states that are reachable without any input (i.e., ε-
transition) are {8, 9, 3, 4, 6}. Therefore,
δ(C, b) = {3, 4, 6, 7, 8, 9} = E
Consider the state [D]:
When input is a:
δ(D, a) = δN({3,4,5,6,8,9}, a)
= {5}
= {5, 8, 9, 3, 4, 6}
= {3, 4, 5, 6, 8, 9} (ascending
order) (D)
When input is b:
δ(D, b) = δN({3,4,5,6,8,9}, b)
= {7}
= {7, 8, 9, 3, 4, 6}
= {3, 4, 6, 7, 8, 9} (ascending
order) (E)
When input is a:
δ(E, a) = δN({3,4,6,7,8,9}, a)
= {5}
= {5, 8, 9, 3, 4, 6}
= {3, 4, 5, 6, 8, 9}(ascending order)
(D)
32
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
When input is b:
δ(E, b) = δN({3,4,6,7,8,9}, b)
= {7}
= {7, 8, 9, 3, 4, 6}
= {3, 4, 6, 7, 8, 9}(ascending order)
(E)
Since there are no new states, we can stop at this point and the transition table for the DFA is
shown in table 2.15.
∑
δ a b
A B -
B - C
Q C D E
D D E
E D E
The states C,D and E are final states, since 9 (final state of NFA) is present in C, D and E.
The final transition diagram of DFA is shown in figure 2.36
a
A a B b C a D
a
b
b
E
b
33
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Regular Languages
Regular expression
Definition: A regular expression is recursively defined as follows.
The table 3.1 shows some examples of regular expressions and the language corresponding to these
regular expressions.
Regular Meaning
expressions
(a+b)* Set of strings of a’s and b’s of any length
including the NULL string.
(a+b)*abb Set of strings of a’s and b’s ending with the
string abb
ab(a+b)* Set of strings of a’s and b’s starting with the
string ab.
(a+b)*aa(a+b) Set of strings of a’s and b’s having a sub string
* aa.
a*b*c* Set of string consisting of any number of
a’s(may be empty string also) followed by any
number of b’s(may include empty string)
followed by any number of c’s(may include
empty string).
+ + +
abc Set of string consisting of at least one ‘a’
followed by string consisting of at least one ‘b’
followed by string consisting of at least one ‘c’.
aa*bb*cc* Set of string consisting of at least one ‘a’
followed by string consisting of at least one ‘b’
followed by string consisting of at least one ‘c’.
(a+b)* (a + Set of strings of a’s and b’s ending with either a
bb) or bb
(aa)*(bb)*b Set of strings consisting of even number of a’s
followed by odd number of b’s
(0+1)*000 Set of strings of 0’s and 1’s ending with three
34
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
consecutive zeros(or ending with 000)
(11)* Set consisting of even number of 1’s
Obtain a regular expression to accept a language consisting of strings of a’s and b’s of even length.
String of a’s and b’s of even length can be obtained by the combination of the strings aa, ab,
ba and bb. The language may even consist of an empty string denoted by ε. So, the regular
expression can be of the form
(aa + ab + ba + bb)*
The * closure includes the empty string.
Note: This regular expression can also be represented using set notation as
L(R) = {(aa + ab + ba + bb)n | n ≥ 0}
Obtain a regular expression to accept a language consisting of strings of a’s and b’s of odd length.
String of a’s and b’s of odd length can be obtained by the combination of the strings aa, ab,
ba and bb followed by either a or b. So, the regular expression can be of the form
(aa + ab + ba + bb)* (a+b)
String of a’s and b’s of odd length can also be obtained by the combination of the strings aa,
ab, ba and bb preceded by either a or b. So, the regular expression can also be represented as
(a+b) (aa + ab + ba + bb)*
Note: Even though these two expression are seems to be different, the language
corresponding to those two expression is same. So, a variety of regular expressions can be
obtained for a language and all are equivalent.
Theorem: Let R be a regular expression. Then there exists a finite automaton M = (Q, ∑, δ,
q0, A) which accepts L(R).
Proof: By definition, φ, ε and a are regular expressions. So, the corresponding machines to
recognize these expressions are shown in figure 3.1.a, 3.1.b and 3.1.c respectively.
q0
φ
qf q0 ε qf q0 a qf
35
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Fig 3.1 NFAs to accept φ, ε and a
The schematic representation of a regular expression R to accept the language L(R) is shown
in figure 3.2. where q is the start state and f is the final state of machine M.
L(R)
q M f
In the definition of a regular expression it is clear that if R and S are regular expression, then
R+S and R.S and R* are regular expressions which clearly uses three operators ‘+’, ‘-‘ and
‘.’. Let us take each case separately and construct equivalent machine. Let M1 = (Q1, ∑1, δ1,
q1, f1) be a machine which accepts the language L(R1) corresponding to the regular
expression R1. Let M2 = (Q2, ∑2, δ2, q2, f2) be a machine which accepts the language L(R2)
corresponding to the regular expression R2.
Case 1: R = R1 + R2. We can construct an NFA which accepts either L(R1) or L(R2) which
can be represented as L(R1 + R2) as shown in figure 3.3.
L(R1)
ε q1 M1 ε
q0 f qf
ε q2 M2 ε
f
L(R2)
It is clear from figure 3.3 that the machine can either accept L(R1) or L(R2). Here, q0 is the
start state of the combined machine and qf is the final state of combined machine M.
Case 2: R = R1 . R2. We can construct an NFA which accepts L(R1) followed by L(R2) which
can be represented as L(R1 . R2) as shown in figure 3.4.
L(R1) L(R2)
ε
q1 M1 q2 M2
f f
Fig. 3.4To accept the language L(R1 . R2)
It is clear from figure 3.4 that the machine after accepting L(R1) moves from state q1 to f1.
Since there is a ε-transition, without any input there will be a transition from state f1 to state
q2. In state q2, upon accepting L(R2), the machine moves to f2 which is the final state. Thus,
q1 which is the start state of machine M1 becomes the start state of the combined machine M
36
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
and f2 which is the final state of machine M2, becomes the final state of machine M and
accepts the language L(R1.R2).
Case 3: R = (R1)*. We can construct an NFA which accepts either L(R1)*) as shown in figure
3.5.a. It can also be represented as shown in figure 3.5.b.
ε
ε ε
q0 q1 M1 qf
f
L(R1)
ε
(a)
q0 q1 M1 qf
ε f ε
(b)
It is clear from figure 3.5 that the machine can either accept ε or any number of L(R1)s thus
accepting the language L(R1)*. Here, q0 is the start state qf is the final state.
Obtain an NFA which accepts strings of a’s and b’s starting with the string ab.
a
4 5
6 b
7
Step 3: The machine to accept (a + b) is shown below.
a
ε 4 5 ε
3 8 37
ε 6 7 ε Downloaded from www.pencilji.com
b
Downloaded from www.pencilji.com
ε
a
ε 4 5 ε
ε ε
2 3 8 9
ε 6 7 ε
b
ε
a b
0 1 2
The general procedure to obtain a regular expression from FA is shown below. Consider the
generalized graph
r1 r r
q0 q1
r
38
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
where r1, r2, r3 and r4 are the regular expressions and correspond to the labels for the edges.
The regular expression for this can take the form:
Note:
4. Any graph can be reduced to the graph shown in figure 3.9. Then substitute the
regular expressions appropriately in the equation 3.1 and obtain the final regular
expression.
5. If r3 is not there in figure 3.9, the regular expression can be of the form
r = r1*r2 r4* (3.2)
6. If q0 and q1 are the final states then the regular expression can be of the form
r = r1* + r1*r2 r4* (3.3)
q2 q3 0,1
1
It is clear from this figure that the machine accepts strings of 01’s and 10’s of any length and
the regular expression can be of the form
(01 + 10)*
0 1 0,
0 q2 1
q0 q1
1
39
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Since, state q2 is the dead state, it can be removed and the following FA is obtained.
0 1
q0 q1
1
The state q0 is the final state and at this point it can accept any number of 0’s which can be
represented using notation as
0*
q1 is also the final state. So, to reach q1 one can input any number of 0’s followed by 1 and
followed by any number of 1’s and can be represented as
0*11*
So, the final regular expression is obtained by adding 0* and 0*11*. So, the regular expression
is
R.E = 0* + 0*11*
= 0* ( ∈ + 11*)
= 0 * ( ∈ + 1+ )
= 0* (1*) = 0*1*
It is clear from the regular expression that language consists of any number of 0’s (possibly
ε) followed by any number of 1’s(possibly ε).
/acb*c/
then the editor searches for a string which starts with ac followed by zero or more b’s and
followed by the symbol c. Note that the editor ed accepts the regular expression and searches
for that particular pattern in the text. As the input can vary dynamically, it is challenging to
write programs for string patters of these kinds.
40
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Session 10 by Prof.B.I.Khodanpur: 11.4.05
0 0 1 1
1 2 3 4 5
1 0
0
1
6
0,1
0,1
State 6 is a trap state, state 3 remembers that two 0’s have come and from there state 5
remembers that two 1’s are accepted.
This implies DFA has no memory to remember arbitrary ‘n’. In other words if we have to
remember n, which varies from 1 to ∞, we have to have infinite states, which is not possible
with a finite state machine, which has finite number of states.
41
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Pumping Lemma (PL) for Regular Languages
Theorem:
Let L be a regular language. Then there exists a constant ‘n’ (which depends
on L) such that for every string w in L such that |w| ≥ n, we can break w into three strings,
w=xyz, such that:
1. |y| > 0
2. |xy| ≤ n
3. For all k ≥ 0, the string xykz is also in L.
PROOF:
Let L be regular defined by an FA having ‘n’ states. Let w= a1,a2 ,a3----an and is in L.
|w| = n ≥ n. Let the start state be P1. Let w = xyz where x= a1,a2 ,a3 -----an-1 , y=an and z = ε.
Uses of Pumping Lemma: - This is to be used to show that, certain languages are not regular.
It should never be used to show that some language is regular. If you want to show that
language is regular, write separate expression, DFA or NFA.
42
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
General Method of proof: -
(i) Select w such that |w| ≥ n
(ii) Select y such that |y| ≥ 1
(iii) Select x such that |xy| ≤ n
(iv) Assign remaining string to z
(v) Select k suitably to show that, resulting string is not in L.
Example 1.
To prove that L={w|w ε anbn, where n ≥ 1} is not regular
Proof:
Let L be regular. Let n is the constant (PL Definition). Consider a word w in L.
Let w = anbn, such that |w|=2n. Since 2n > n and L is regular it must satisfy PL.
43
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
45
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Session 11 by Prof.B.I.Khodanpur: 13.4.05
46
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Consider a DFA, A that accepts all and only the strings of 0’s and 1’s that end in
01. That is L(A) = (0+1)*01. The complement of L(A) is therefore all string of 0’s and 1’s
that do not end in 01
47
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Theorem: - If L is a regular language over alphabet Σ, then, L = Σ* - L is also
a regular language
Proof: - Let L =L(A) for some DFA. A=(Q, Σ, δ, q0, F). Then L = L(B), where B is the
DFA (Q, Σ, δ, q0, Q-F). That is, B is exactly like A, but the accepting states of A have
become non-accepting states of B, and vice versa, then w is in L(B) if and only if δ^ ( q0, w)
is in Q-F, which occurs if and only if w is not in L(A).
48
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
This automaton accepts the intersection of the first two languages: Those languages that have
both a 0 and a 1. Then pr represents only the initial condition, in which we have seen neither
0 nor 1. Then state qr means that we have seen only once 0’s, while state ps represents the
condition that we have seen only 1’s. The accepting state qs represents the condition where
we have seen both 0’s and 1’s.
Ex 4 (on intersection)
Write a DFA to accept the intersection of L1=(a+b)*a and L2=(a+b)*b that is for L1 ∩ L2.
DFA for L1 ∩ L2
49
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
The FA for LR can be derived from FA for L by swapping initial and final states and
changing the direction of each edge. It is shown in the following figure.
51
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Session 12 by Prof.B.I.Khodanpur: 20.4.05
Homomorphism
A string homomorphism is a function on strings that works by substituting a particular string
for each symbol.
Theorem : If L is a regular language over alphabet Σ, and h is a homomorphism on Σ, then h
(L) is also regular.
Ex.
The function h defined by h(0)=ab h(1)=c is a homomorphism.
h applied to the string 00110 is ababccab
Resulting :
h1(L) = (01 + 11)* 01 (01 + 11)*
h2(L) = (101 + 010)* 101 (101 + 010)*
h3(L) = (01 + 101)* 01 (01 + 101)*
Inverse Homomorphism
Theorem : If h is a homomorphism from alphabet S to alphabet T, and L is a regular
language over T, then h-1 (L) is also a regular language.
52
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Ex.Let L be the language of regular expression (00+1)*.
Let h be the homomorphism defined by h(a)=01 and h(b)=10. Then h-1(L) is the language of
regular expression (ba)*.
Decision Properties of Regular Languages
1. Is the language described empty?
2. Is a particular string w in the described language?
3. Do two descriptions of a language actually describe the same language?
This question is often called “equivalence” of languages.
Converting Among Representations
Converting NFA’s to DFA’s
Time taken for either an NFA or -NFA to DFA can be exponential in the number of states of
the NFA. Computing ε-Closure of n states takes O(n3) time. Computation of DFA takes
O(n3) time where number of states of DFA can be 2n. The running time of NFA to DFA
conversion including ε transition is O(n3 2n). Therefore the bound on the running time is
O(n3s) where s is the number of states the DFA actually has.
DFA to NFA Conversion
Conversion takes O(n) time for an n state DFA.
Automaton to Regular Expression Conversion
For DFA where n is the number of states, conversion takes O(n34n) by substitution method
and by state elimination method conversion takes O(n3) time. If we convert an NFA to DFA
3
and then convert the DFA to a regular expression it takes the time O(n34n 2n)
Regular Expression to Automaton Conversion
Regular expression to ε-NFA takes linear time – O(n) on a regular expression of length n.
Conversion from ε-NFA to NFA takes O(n3) time.
Testing Emptiness of Regular Languages
Suppose R is regular expression, then
1. R = R1 + R2. Then L(R) is empty if and only if both L(R1) and L(R2) are empty.
2. R= R1R2. Then L(R) is empty if and only if either L(R1) or L(R2) is empty.
3. R=R1* Then L(R) is not empty. It always includes at least ε
4. R=(R1) Then L(R) is empty if and only if L(R1) is empty since they are the same
language.
53
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
2. R= R1R2. Then L(R) is empty if and only if either L(R1) or L(R2) is empty.
3. R=(R1)* Then L(R) is not empty. It always includes at least ε
4. R=(R1) Then L(R) is empty if and only if L(R1) is empty since they are the same
language.
Testing Membership in a Regular Language
Given a string w and a Regular Language L, is w in L.
If L is represented by a DFA, simulate the DFA processing the string of input symbol
w, beginning in start state. If DFA ends in accepting state the answer is ‘Yes’ , else it is ‘no’.
This test takes O(n) time
If the representation is NFA, if w is of length n, NFA has s states, running time of this
algorithm is O(ns2)
If the representation is ε - NFA, ε - closure has to be computed, then processing of
each input symbol , a , has 2 stages, each of which requires O(s2) time.
If the representation of L is a Regular Expression of size s, we can convert to an ε -
NFA with almost 2s states, in O(s) time. Simulation of the above takes O(ns2) time on an
input w of length n
Minimization of Automata ( Method 1)
Let p and q are two states in DFA. Our goal is to understand when p and q (p ≠ q) can
be replaced by a single state.
Two states p and q are said to be distinguishable, if there is at least one string, w, such
that one of δ^ (p,w) and δ^ (q,w) is accepting and the other is not accepting.
Algorithm 1:
List all unordered pair of states (p,q) for which p ≠ q. Make a sequence of passes
through these pairs. On first pass, mark each pair of which exactly one element is in F. On
each subsequent pass, mark any pair (r,s) if there is an a∈∑ for which δ (r,a) = p, δ (s,a) = q,
and (p,q) is already marked. After a pass in which no new pairs are marked, stop. The
marked pair (p,q) are distinguishable.
Examples:
1. Let L = {∈, a2, a4, a6, ….} be a regular language over ∑ = {a,b}. The FA is shown
in Fig 1.
Fig 2. gives the list of all unordered pairs of states (p,q) with p ≠ q.
54
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
The boxes (1,2) and (2,3) are marked in the first pass according to the algorithm 1.
In pass 2 no boxes are marked because, δ(1,a) φ and δ (3,a) 2. That is (1,3) (φ,2),
where φ and 3 are non final states.
δ(1,b) φ and δ (3,b) φ. That is (1,3) (φ,φ), where φ is a non-final state. This implies
that (1,3) are equivalent and can replaced by a single state A.
Consider set {1,3}. (1,3) (2,2) and (1,3) (φ,φ). This implies state 1 and 3 are
equivalent and can not be divided further. This gives us two states 2,A. The resultant FA is
shown is Fig 3.
Example 2. (Method1):
Let r= (0+1)*10, then L(r) = {10,010,00010,110, ---}. The FA is given below
55
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
The pairs marked 1 are those of which exactly one element is in F; They are marked on pass
1. The pairs marked 2 are those marked on the second pass. For example (5,2) is one of these,
since (5,2) (6,4), and the pair (6,4) was marked on pass 1.
From this we can make out that 1, 2, and 4 can be replaced by a single state 124 and
states 3, 5, and 7 can be replaced by the single state 357. The resultant minimal FA is shown
in Fig. 6
Example 2. (Method1):
(2,3) (4,6) this implies that 2 and 3 belongs to different group hence they are split in level
2. similarly it can be easily shown for the pairs (4,5) (1,7) and (2,5) and so on.
56
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Session 13 by Prof.B.I.Khodanpur: 21.4.05
E E * E I * E a * E
a * (E) a * (E + E) a * (I + E) a * (a + E)
a * (a + I) a * (a + I0) a * (a + I00) a * (a + b00)
57
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Leftmost Derivation - Tree
There is a rightmost derivation that uses the same replacements for each variable, although it
makes the replacements in different order. This rightmost derivation is:
58
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
E E * E E * (E) E * (E + E)
E * (E + I) E * (E + I0) E * (E + I00) E * (E + b00)
E * (I + b00) E * (a + b00) I * (a + b00) a * (a + b00)
This derivation allows us to conclude E a * (a + b00)
Consider the Grammar for string(a+b)*c
EE + T | T
T T * F | F
F ( E ) | a | b | c
Leftmost Derivation
ETT*FF*F(E)*F(E+T)*F(T+T)*F(F+T)*F (a+T)*F (a+F)*F
(a+b)*F(a+b)*c
Rightmost derivation
ETT*FT*cF*c(E)*c(E+T)*c(E+F)*c
(E+b)*c(T+b)*c(F+b)*c(a+b)*c
Example 2:
Consider the Grammar for string (a,a)
S->(L)|a
L->L,S|S
Leftmost derivation
S(L)(L,S)(S,S)(a,S)(a,a)
Rightmost Derivation
S(L)(L,S)(L,a)(S,a)(a,a)
The Language of a Grammar
If G(V,T,P,S) is a CFG, the language of G, denoted by L(G), is the set of terminal
strings that have derivations from the start symbol.
L(G) = {w in T | S w}
Sentential Forms
Derivations from the start symbol produce strings that have a special role called “sentential
forms”. That is if G = (V, T, P, S) is a CFG, then any string in (V ∪ T)* such that S α is a
sentential form. If S α, then is a left – sentential form, and if S α , then is a right –
sentential form. Note that the language L(G) is those sentential
forms that are in T*; that is they consist solely of terminals.
For example, E * (I + E) is a sentential form, since there is a derivation
E E * E E * (E) E * (E + E) E * (I + E)
59
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
However this derivation is neither leftmost nor rightmost, since at the last step, the middle E
is replaced.
As an example of a left – sentential form, consider a * E, with the leftmost derivation.
EE*EI*Ea*E
Additionally, the derivation
E E * E E * (E) E * (E + E)
Shows that
E * (E + E) is a right – sentential form.
Ambiguity
A context – free grammar G is said to be ambiguous if there exists some w ∈L(G) which has
at least two distinct derivation trees. Alternatively, ambiguity implies the existence of two or
more left most or rightmost derivations.
Ex:-
Consider the grammar G=(V,T,E,P) with V={E,I}, T={a,b,c,+,*,(,)}, and productions.
EI,
EE+E,
EE*E,
E(E),
Ia|b|c
60
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
61
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
62
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
XML and Document type definitions.
1. AE1,E2.
ABC
BE1
CE2
2. AE1 | E2.
AE1
AE2
3. A(E1)*
ABA
Aε
BE1
4. A(E1)+
ABA
AB
BE1
5. A(E1)?
Aε
AE1
EXERCISE QUESTIONS
63
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
4) Suppose h is the homomorphism from the alphabet {0,1,2} to the alphabet { a,b} defined
by h(0) = a; h(1) = ab &
h(2) = ba
a) What is h(0120) ?
b) What is h(21120) ?
c) If L is the language L(01*2), what is h(L) ?
d) If L is the language L(0+12), what is h(L) ?
e) If L is the language L(a(ba)*) , what is h-1(L) ?
64
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
27.0.05
E E * E I * E a * E
a * (E) a * (E + E) a * (I + E) a * (a + E)
65
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
a * (a + I) a * (a + I0) a * (a + I00) a * (a + b00)
There is a rightmost derivation that uses the same replacements for each variable, although it
makes the replacements in different order. This rightmost derivation is:
66
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
E E * E E * (E) E * (E + E)
E * (E + I) E * (E + I0) E * (E + I00) E * (E + b00)
E * (I + b00) E * (a + b00) I * (a + b00) a * (a + b00)
This derivation allows us to conclude E a * (a + b00)
Leftmost Derivation
ETT*FF*F(E)*F(E+T)*F(T+T)*F(F+T)*F (a+T)*F (a+F)*F
(a+b)*F(a+b)*c
Rightmost derivation
ETT*FT*cF*c(E)*c(E+T)*c(E+F)*c
(E+b)*c(T+b)*c(F+b)*c(a+b)*c
Example 2:
Consider the Grammar for string (a,a)
S->(L)|a
L->L,S|S
Leftmost derivation
S(L)(L,S)(S,S)(a,S)(a,a)
Rightmost Derivation
S(L)(L,S)(L,a)(S,a)(a,a)
Sentential Forms
Derivations from the start symbol produce strings that have a special role called “sentential
forms”. That is if G = (V, T, P, S) is a CFG, then any string in (V ∪ T)* such that S α is a
sentential form. If S α, then is a left – sentential form, and if S α , then is a right –
sentential form. Note that the language L(G) is those sentential
forms that are in T*; that is they consist solely of terminals.
67
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
As an example of a left – sentential form, consider a * E, with the leftmost derivation.
EE*EI*Ea*E
Additionally, the derivation
E E * E E * (E) E * (E + E)
Shows that
E * (E + E) is a right – sentential form.
Ambiguity
A context – free grammar G is said to be ambiguous if there exists some w ∈L(G) which has
at least two distinct derivation trees. Alternatively, ambiguity implies the existence of two or
more left most or rightmost derivations.
Ex:-
Consider the grammar G=(V,T,E,P) with V={E,I}, T={a,b,c,+,*,(,)}, and productions.
EI,
EE+E,
EE*E,
E(E),
Ia|b|c
Consider two derivation trees for a + b * c.
68
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Inherent Ambiguity
69
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
70
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
%}
%%
[0-9]+ {yylval.ID = atoi(yytext); return id;}
[ \t \n] ;
[+ * ( )] {return yytext[0];}
. {ECHO; yyerror ("unexpected character");}
%%
Example 2:
%{
#include <stdio.h>
%}
%start line
%token <a_number> number
%type <a_number> exp term factor
%%
line : exp ';' {printf ("result is %d\n", $1);}
;
exp : term {$$ = $1;}
| exp '+' term {$$ = $1 + $3;}
| exp '-' term {$$ = $1 - $3;}
term : factor {$$ = $1;}
| term '*' factor {$$ = $1 * $3;}
| term '/' factor {$$ = $1 / $3;}
;
factor : number {$$ = $1;}
| '(' exp ')' {$$ = $2;}
;
%%
int main (void) {
return yyparse ( );
}
void yyerror (char *s) {
fprintf (stderr, "%s\n", s);
}
%{
#include "y.tab.h"
%}
%%
[0-9]+ {yylval.a_number = atoi(yytext); return number;}
[ \t\n] ;
[-+*/();] {return yytext[0];}
. {ECHO; yyerror ("unexpected character");}
%%
Markup Languages
71
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Functions
•Creating links between documents
•Describing the format of the document
Example
The Things I hate
1. Moldy bread
2. People who drive too slow
In the fast lane
HTML Source
HTML Grammar
•Char a|A|…
•Text e | Char Text
•Doc e | Element Doc
•Element Text |
<EM> Doc </EM>|
<p> Doc |
<OL> List </OL>| …
5. List-Item <LI> Doc
6. List e | List-Item List Start symbol
EXERCISE QUESTIONS
1) Design context-free grammar for the following cases
a) L={ 0n1n | n≥l }
b) L={aibjck| i≠j or j≠k}
4) Suppose h is the homomorphism from the alphabet {0,1,2} to the alphabet { a,b} defined
by h(0) = a; h(1) = ab &
h(2) = ba
a) What is h(0120) ?
b) What is h(21120) ?
c) If L is the language L(01*2), what is h(L) ?
d) If L is the language L(0+12), what is h(L) ?
e) If L is the language L(a(ba)*) , what is h-1(L) ?
73
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Session by Ms. Jibi Abraham:
Formal Definition:
74
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Transition function: for any given state, input symbol and stack symbol, gives a new state
and stack symbol; i.e. it has the form: (P, a, t) → (Q, u)
Basically, if, a ∈ Σ, t ∈ Γ and P and Q are states. Means “read the symbol ‘a’ from the input,
move from state P to state Q, and replace the symbol ‘t’ on top of the stack with the symbol
‘u’ ”.
If u = t, then stack is unchanged.
If u = ∈, then stack is popped
If u= wx, then t is replaced with x and w is pushed into the stack.
Example 1:
Construct PDA for the language L= {anbn | a, b ∈ Σ n ≥ 0}.
Start at state q0 and keep Z0 in the stack. The following transitions are possible:
1. If current state is q0, and symbol on input tape is at ε, and stack top is Z0, then move to q2
the final state.
2. If current state is q0, and input tape symbol is a, and stack top Z0, then stay in q0 and push
‘a’ to the stack.
3. If current state is q0, input tape symbol is ‘a’, and stack top is a, stay in q0 and push ‘a’ to
the stack.
4. If current state is q0, input tape symbol is b, stack top is a, move to state q1 and pop the
top symbol of the stack.
5. If current state is q1, input tape symbol is b, stack top is a, stay in q1 and pop the top
symbol of the stack
6. If current state is q1, input tape symbol is ε and stack top is Z0, move to q2 the final state.
So we can define PDA as M = ({q0, q1, q2}, {a, b}, {a, b, Z0}, δ, q0, Z0, {q2}), where δ is
defined by following rules:
δ(q0, a, Z0) = {(q0, aZ0)}
δ(q0, a, a) = {(q0, aa)}
δ(q0, b, a) = {(q1, ε)}
δ(q1, b, a) = {(q1, ε)}
δ(q1, ε, Z0) = {(q2, ε)}
δ(q0, ε, Z0) = {(q2, ε)}
δ(q,x,Y) = φ for all other possibilities
75
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Graphical Notation of PDA:
To understand the behavior or PDA clearer, the transition diagram of PDA can be used.
Transition diagram of PDA is generalization of transition diagram of FA.
1. Node corresponds to states of PDA
2. Arrow labeled Start indicates start state
3. Doubly circled states are final states
4. Arc corresponds to transitions of PDA. If δ(q, a, X) = {(p, α)…} is an arc labeled (a,
X/α) from state q to state p means that an input tape head positioned at symbol a and
stack top with X, moves automaton to state q and replaces the stack top with α.
The transition diagram for the above example PDA is given in Figure 2.
a, Z0/aZ0 b,a/ ε
a,a/aa
b,a/ ε ε, Z0 / ε
Start q0 q1 q2
ε, Z0 / ε
Instantaneous Description:
Moves of A PDA:
Let the symbol "|-" indicates a move of the nPDA. There are two types of moves possible
for a PDA.
Suppose that δ(q1, a, x) = {(q2, y), ...}. Then the following move by consuming an input
symbol is possible:
76
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
where W indicates the rest of the input string following the a, and Z indicates the rest of the
stack contents underneath the x. This notation says that in moving from state q1 to state q2, an
input symbol ‘a’ is consumed from the input string aW, and the symbol ‘x’ at the top (left) of
the stack xZ is replaced with symbol ‘y’, leaving yZ on the stack.
The above example PDA with a few example input strings, the moves are given below:
a) Moves for the input string aabb:
(q0, aabb, Z0) |- (q0, abb, aZ0) as per transition rule δ(q0, a, Z0) = {(q0, aZ0)}
|- (q0, bb, aaZ0) as per transition rule δ(q0, a, a) = {(q0, aa)}
|- (q1, b, aZ0) as per transition rule δ(q0, b, a) = {(q1, ε)}
|- (q1, ε, Z0) as per transition rule δ(q0, b, a) = {(q1, ε)}
|- (q2, ε,ε) as per transition rule δ(q1, ε, Z0) = {(q2, ε)}
PDA reached a configuration of (q2, ε,ε). The input tape is empty, stack is empty and PDA
has reached a final state. So the string is accepted.
b) Moves for the input string aaabb:
(q0, aaabb, Z0) |- (q0, aabb, aZ0) as per transition rule δ(q0, a, Z0) = {(q0, aZ0)}
|- (q0, abb, aaZ0) as per transition rule δ(q0, a, a) = {(q0, aa)}
|- (q0, bb, aaaZ0) as per transition rule δ(q0, a, a) = {(q0, aa)}
|- (q1, b, aaZ0) as per transition rule δ(q0, b, a) = {(q1, ε)}
|- (q1, ε, aZ0) as per transition rule δ(q0, b, a) = {(q1, ε)}
|- There is no defined move.
So the automaton stops and the string is not accepted.
c) Moves for the input string aabbb:
(q0, aabbb, Z0) |- (q0, abbb, aZ0) as per transition rule δ(q0, a, Z0) = {(q0, aZ0)}
|- (q0, bbb, aaZ0) as per transition rule δ(q0, a, a) = {(q0, aa)}
|- (q1, bb, aZ0) as per transition rule δ(q0, b, a) = {(q1, ε)}
|- (q1, b, Z0) as per transition rule δ(q0, b, a) = {(q1, ε)}
|- There is no defined move.
So the automaton stops and the string is not accepted.
77
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
2. ε- move
Suppose that δ(q1, ε, x) = {(q2, y), ...}. Then the following move without consuming an input
symbol is possible:
(q1, aW, xZ) |- (q2, aW, yZ),
This notation says that in moving from state q1 to state q2, an input symbol ‘a’ is not
consumed from the input string aW, and the symbol ‘x’ at the top (left) of the stack xZ is
replaced with symbol ‘y’, leaving yZ on the stack. In this move, the tape head position will
not move forward. This move is usually used to represent non-determinism.
The relation |-* is the reflexive-transitive closure of |- used to represent zero or more moves
of PDA. For the above example, (q0, aabb, Z0) |-* (q2, ε,ε).
Example 2:
Design a PDA to accept the set of all strings of 0’s and 1’s such that no prefix has more 1’s
than 0’s.
Solution: The transition diagram could be given as figure 3.
78
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Moves for the input string 0010110 is given by:
(a, 0010110, Z) |- (b, 010110, 0Z) |- (b,10110, 00Z) |- (c, 0110, 0Z) |- (b, 110, 00Z) |-
(c, 10, 0Z) |- (c, 0, Z) |- (b, ε, 0Z) |- (d, ε, 0Z).
So the input string is accepted by the PDA.
Moves for 011
(a,011,Z) |- (b,11,0Z) |- (c,1,Z) |-no move, so PDA stops
Exercises:
Construct PDA:
1. For the language L = {wcwR | w ∈ {a, b}*, c ∈ Σ }
2. Accepting the set of all strings over {a, b} with equal number of a’s and b’s. Show the
moves for abbaba
3. For the language L = {anb2n | a, b ∈ Σ, n ≥ 0}
4. Accepting the language of balanced parentheses, (consider any type of parentheses)
79
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Session by Ms. Jibi Abraham:
(q0, wwR, Z0) |-* (q0, wR, wRZ0) |- (q1, wR, wRZ0) |-* (q1, ε, Z0) |- (q2, ε, Z0)
81
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Accept by empty stack:
Let PDA P = (Q, Σ, Γ, δ, q0, Z0). We define the language accepted by empty stack by
N(P) = {w | (q0, w, Z0) |-* (q, ε, ε)}, where q ∈ Q
Example:
Construct PDA to accept by empty stack for the language L = {wwR | w is in (0 + 1)*}
Instead of the transition δ(q1, ε, Z0) = {(q2, Z0)} give δ(q1, ε, Z0) = {(q2, ε)} to get accept
by empty stack. The set of accepting states are irrelevant. This example also shows that L(P)
= N(P)
Example:
j
Construct PDA to accept by empty stack for the language L={0i1 | 0 ≤ i ≤ j}
The transition diagram for the PDA is given in Figure 3.
0, 0/00
1, 0/ε
1, Z0/Z0
0, Z0/0Z0
1,Z0/Z0 1, Z0/Z0
1, 0/ε ε, Z0/Z0 ε,Z0/ε
s p q r
ε, Z0/Z0
j
Figure 3: transition diagram of 0i1 | 0 ≤ i ≤ j
Theorem: If L = N(PN) for some PDA PN= (Q, Σ, Γ , δN, q0, Z0), then there is a PDA PF
such that L = L(PF)
PN
Proof:
ε, X0/Z0X0
p0 q0
ε, X0/ε
(add this transition from all states of PN to
new state Pf)
Pf
Figure 4: PF simulates PN
The method of conversion is given in figure 4.
82
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
We use a new symbol X0, which must be not symbol of Γ to denote the stack start symbol
for PF. Also add a new start state p0 and final state pf for PF. Let PF = (Q∪{p0, pf}, Σ,
Γ∪{X0}, δF, p0, X0, {Pf}), where δF is defined by
δF(p0, ε, X0) = {(q0, Z0 X0)} to push X0 to the bottom of the stack
δF(q, a, y) = δN(q, a, y) a ∈ Σ or a = ε and y ∈ Γ, same for both PN and PF.
δF(q, ε, X0) = {(Pf, ε)} to accept the string by moving to final state.
The moves of PF to accept a string w can be written like:
(p0, w, X0) |-PF (p0, w, Z0X0) |-*PF (q, ε, X0) |- (Pf , ε, ε )
Proof: PF
ε, X0/Z0X0
p0 q0
ε, Γ/ε
ε, Γ/ε
p ε, Γ/ε
Figure 5: PN simulates PF
83
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Example:
Construct PDA to accept by final state the language of all strings of 0’s and 1’s such that
number of 1’s is less than number of 0’s. Also convert the PDA to accept by empty stack.
Solution:
PDA by final state is given byM = ({q0, q1}, {0, 1}, {0, 1,Z}, δ, q0, Z, {q1}), where δ is
given by:
δ(q0, 0, Z) = {(q0, 0Z)}
δ(q0, 1, Z) = {(q0, 1Z)}
δ(q0, 0, 0) = {(q0, 00)}
δ(q0, 0,1) = {(q0, ε)}
δ(q0, 1, 1) = {(q0, 11)}
δ(q0, 1,0) = {(q0, ε)}
δ(q0, ε,Z) = {(q1, Z)}
δ(q0, ε,0) = {(q1, 0)}
For all other moves, PDA stops.
PDA by empty stack is given by M = ({q0, q1, q2}, {0, 1}, {0, 1, Z}, δ’, q0, Z), where δ’ is
the union of δ and the transitions given below:
Exercises:
Design nPDA to accept the language:
1. {aibjck | i, j, k ≥ 0 and i = j or i = k}
2. {aibjci+j | i, j ≥ 0}
3. {aibi+jcj | i ≥ 0, j ≥ 1}
84
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
The aim is to prove that the following three classes of languages are same:
PDA by
CFG PDA by
empty stack
Final state
Given a CFG G, we construct a PDA P that simulates the leftmost derivations of G. The
stack symbols of the new PDA contain all the terminal and non-terminals of the CFG. There
is only one state in the new PDA; all the rest of the information is encoded in the stack. Most
transitions are on ε, one for each production. New transitions are added, each one
corresponding to terminals of G. For every intermediate sentential form uAα in the leftmost
derivation of w (initially w = uv for some v), M will have Aα on its stack after reading u. At
the end (case u = w) the stack will be empty.
Let G = (V, T, Q, S) be a CFG. The PDA which accepts L(G) by empty stack is given by:
85
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
CFG to PDA conversion is another way of constructing PDA. First construct CFG, and then
convert CFG to PDA.
Example:
Convert the grammar with following production to PDA accepted by empty stack:
S → 0S1 | A
A → 1A0 | S | ε
Solution:
Let P = (Q, Σ, Γ, δ, q0, Z0) be a PDA. An equivalent CFG is G = (V, Σ, R, S), where
V = {S, [pXq]}, where p, q ∈ Q and X ∈ Γ, productions of R consists of
If k = 0 then [qXr] →a
Example:
Construct PDA to accept if-else of a C program and convert it to CFG. (This does not accept
if –if –else-else statements).
Let the PDA P = ({q}, {i, e}, {X,Z}, δ, q, Z), where δ is given by:
δ(q, i, Z) = {(q, XZ)}, δ(q, e, X) = {(q, ε)} and δ(q, ε, Z) = {(q, ε)}
Solution:
S → [qZq]
[qZq] → i[qXq][qZq]
86
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
[qXq] → e
[qZq] → ε
If [qZq] is renamed to A and [qXq] is renamed to B, then the CFG can be defined by:
Example:
Convert PDA to CFG. PDA is given by P = ({p,q}, {0,1}, {X,Z}, δ, q, Z)), Transition
Solution:
Exercises:
1. A → aAA, A → aS | bS | a
2. S → SS | (S) | ε
3. S → aAS | bAB | aB, A → bBB | aS | a, B → bA | a
Definition:
DPDA is less powerful than nPDA. The Context Free Languages could be recognized by
nPDA. The class of language DPDA accept is in between than of Regular language and
CFL. NPDA can be constructed for accepting language of palindromes, but not by DPDA.
88
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Example:
Construct DPDA which accepts the language L = {wcwR | w ∈ {a, b}*, c ∈ Σ}.
0,0/ ε
0, Z0/0Z0 1,1/ ε
1, Z0/1Z0
0,0/00
1,1/11 c,0/0
0,1/ 01 c,1/1
1,0/ 10 c, Z0/ Z0
q0 q1 q2
ε, Z0 / Z0
Exercises:
The class of languages DPDA accepts is in between regular languages and CFLs. The
DPDA languages include all regular languages. The two modes of acceptance are not same
for DPDA.
If L is a regular language, L=L(P) for some DPDA P. PDA surely includes a stack, but the
DPDA used to simulate a regular language does not use the stack. The stack is inactive
always. If A is the FA for accepting the language L, then δP(q,a,Z)={(p,Z)} for all p, q ∈ Q
such that δA(q,a)=p.
Every regular language is not N(P) for some DPDA P. A language L = N(P) for some DPDA
P if and only if L has prefix property. Definition of prefix property of L states that if x, y ∈
L, then x should not be a prefix of y, or vice versa. Non-Regular language L=WcWR could
be accepted by DPDA with empty stack, because if you take any x, y∈ L(WcWR), x and y
89
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
satisfy the prefix property. But the language, L={0*} could be accepted by DPDA with final
state, but not with empty stack, because strings of this language do not satisfy the prefix
property. So N(P) are properly included in CFL L, ie. N(P) ⊆ L
If L = L(P) for DPDA P, then L has unambiguous CFG. To convert L(P) to N(P) to have
prefix property by adding an end marker $ to strings of L. Then convert N(P) to CFG G’.
From G’ we have to construct G to accept L by getting rid of $ .So add a new production
$→ε as a variable of G.
90
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Simplification of CFG
The goal is to take an arbitrary Context Free Grammar G = (V, T, P, S) and perform
transformations on the grammar that preserve the language generated by the grammar but
reach a specific format for the productions. A CFG can be simplified by eliminating
1. Useless symbols
Those variables or terminals that do not appear in any derivation of a terminal string
2. ε - Productions
A → ε, where A is a variable
3. Unit production
Omitting useless symbols from a grammar does not change the language generated
Example:
Symbol X is useful if both the conditions given below are satisfied in that order itself.
Theorem:
Let G = (V, T, P, S) be a CFG and assume that L(G) ≠ φ, then G1=(V1, T1, P1, S) be a
grammar without useless symbols by
91
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Elimination has to be performed only in the order of 1 followed by 2. Otherwise the grammar
Example:
Solution:
Example:
Solution:
Dependency Graph: For the production C → xDy, the dependency graph is given below.
C D
92
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Draw dependency graph for all productions. If there is no edge reaching a variable X from
Start symbol S, then X is non reachable.
Example:
Solution:
S A
Draw the dependency graph as given above. A is non-reachable from S. After eliminating A,
G1= ({S}, {a}, {S → a}, S)
Example:
S A B
Draw the dependency graph as given above. B is non-reachable from S. After eliminating B,
we get the grammar with productions S → aS | A, A → a
Example:
Eliminate useless symbols from the grammar with productions S → AB | CA, B →BC | AB,
A →a, C → AB | b
V1 = {A, C, S}
P1 = {S → CA, A →a, C → b}
S A C
93
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Draw the dependency graph as given above. All Variables are reachable. So the final
variables and productions are same V1 and P1.
V2 = {A, C, S}
P2 = {S → CA, A →a, C → b}
Exercises:
there in L(G), then we have to find out an equivalent G without ε-productions. Example for a
grammar G with ε - productions is
S → ABA, A → aA | ε, B → bB | ε
94
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Algorithm to find nullable variables is given below:
V: set of variables
N0 ←{A | A in V, production A → ε}
Repeat
Ni ← Ni-1U {A| A in V, A → α, α in Ni-1}
until Ni = Ni-1
For each production of the form A → w, create all possible productions of the form A → w’,
where w’ is obtained from w by removing one or more occurrences of nullable variables.
Example:
S → ABA | BA | AA | AB | A | B | ε
A → aA | ε | a
B → bB | ε | b
The desired grammar consists of the original productions together with the productions
constructed in step 2, minus any productions of the form A → ε.
Example:
For the above example we get the final grammar with productions
S → ABA | BA | AA | AB | A | B
A → aA | a
B → bB | b
Example:
95
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Solution:
S → aS | a
S → AB | A | B
D→b
Exercise:
1. S → a |Xb | aYa, X → Y| ε, Y → b | X
2. S → Xa, X → aX | bX | ε
3. S → XY, X →Zb, Y → bW, Z →AB, W →Z, A → aA | bB | ε, B → Ba | Bb| ε
4. S → ASB | ε, A → aAS | a, B → SbS | A| bb
But if you have to get a grammar without ε - productions and useless symbols, follow the
sequence given below:
Example:
Nullable ={A}
96
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Generating ={D, B, A, S}
S A B D
97
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Unit productions could complicate certain proofs and they also introduce extra steps into
derivations that technically need not be there. The algorithm for eliminating unit productions
Example:
Solution:
The unit productions are S → A, S →B. So A and B are derivable. Now add productions
from derivable.
S→ ABA | BA | AA | AB | A | B | aA | a | bB | b
A → aA | a
B → bB | b
S→ ABA | BA | AA | AB | aA | a | bB | b
A → aA | a
B → bB | b
Example:
Solution:
98
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
S → Aa | bb | a | bc
A → a | bc | bb
B → bb | a | bc
Simplified Grammar:
If you have to get a grammar without ε - productions, useless symbols and unit productions,
follow the sequence given below:
Example:
Eliminate useless symbols, ε -productions and unit productions from the grammar with
productions:
Nullable = {A}
99
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
S A B D
P4 = {S → a | aA, A → aB, B → aA | a}
Every nonempty CFL without ε, has a grammar in CNF with productions of the form:
1. A → BC, where A, B, C ∈ V
2. A → a, where A ∈ V and a ∈ T
1. Eliminate useless symbols, ε -productions and unit productions from the grammar
2. Elimination of terminals on RHS of a production
a) Add all productions of the form A → BC or A → a to P1
b) Consider a production A → X1X2…Xn with some terminals of RHS. If Xi is
a terminal say ai, then add a new variable Cai to V1 and a new production Cai
→ ai to P1. Replace Xi in A production of P by Cai
c) Consider A → X1X2…Xn, where n ≥3 and all Xi‘s are variables. Introduce
new productions A → X1C1, C1 → X2C2, … , Cn-2 →Xn-1Xn to P1 and
C1, C2, … , Cn-2 to V1
Example:
Solution:
100
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Step2b: Reduce RHS with 2 variables
G1=({S, A, B, D, Ca, Cb, C1, C2}, {a, b}, S → CaC1, A → CaB| CbC2, Ca→a, Cb→b, C1
→AD, C2→AB}, S)
Example:
Solution:
Exercises:
1. S → aSa | bSb | a | b | aa | bb
2. S → bA | aB, A → bAA | aS | a, B → aBB | bS | b
101
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
3. S→ Aba, A → aab, B → AC
4. S → 0A0 |1B1 | BB, A → C, B → S|A, C → S| ε
5. S → aAa | bBb| ε, A → C|a, B → C | b, C → CDE |ε, D → A | B | ab
Example:
S → 0S1 | 01
Solution:
S → 0SA | 0A, A → 1
Usage of GNF:
Construction of PDA from a GNF grammar can be made more meaningful with GNF.
Assume that the PDA has two states: start state q0 and accepting state q1. An S rule of the
form S → aA1A2…An generates a transition that processes the terminal a, pushes the
variables A1A2…An on the stack and enters q1. The remainder of the computation uses the
input symbol and the stack top to determine the appropriate transition.
102
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
The pumping lemma for CFL’s states that there are always two short sub-strings close
together that can be repeated, both the same number of times, as often as we like.
For example, consider a CFL L={anbn | n ≥ 1}. Equivalent CNF grammar is having
productions S → AC | AB, A → a, B → b, C → SB. The parse tree for the string a4b4 is
given in figure 1. Both leftmost derivation and rightmost derivation have same parse tree
because the grammar is unambiguous.
Figure 1: Parse tree for a4b4 Figure 2: Extended Parse tree for a4b4
Extend the tree by duplicating the terminals generated at each level on all lower levels. The
extended parse tree for the string a4b4 is given in figure 2. Number of symbols at each level
is at most twice of previous level. 1 symbols at level 0, 2 symbols at 1, 4 symbols at 2 …2i
symbols at level i. To have 2n symbols at bottom level, tree must be having at least depth of
n and level of at least n+1.
Proof:
The parse tree for a grammar G in CNF will be a binary tree. Let k = 2n+1, where n is the
number of variables of G. Suppose z∈ L(G) and |z| ≥ k. Any parse tree for z must be of depth
at least n+1. The longest path in the parse tree is at least n+1, so this path must contain at
least n+1 occurrences of the variables. By pigeonhole principle, some variables occur more
than once along the path. Reading from bottom to top, consider the first pair of same variable
along the path. Say X has 2 occurrences. Break z into uvwxy such that w is the string of
terminals generated at the lower occurrence of X and vwx is the string generated by upper
occurrence of X.
Let T be the subtree rooted at upper occurrence of S and t be subtree rooted at lower
occurrence of S. These parse trees are shown in figure 4. To get uv2wx2y ∈L, cut out t and
replace it with copy of T. The parse tree for uv2wx2y ∈L is given in figure 5. Cutting out t
and replacing it with copy of T as many times to get a valid parse tree for uviwxiy for i ≥ 1.
104
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Figure 5: Parse tree for uv2wx2y Figure 6: Parse tree for uwy ∈ L
∈L
To get uwy ∈ L, cut T out of the original tree and replace it with t to get a parse tree of
uv0wx0y = uwy as shown in figure 6.
Example:
Solution:
Assume L is CFL. Choose an appropriate z = anbncn = uvwxy. Since |vwx| ≤ n then vwx can
either consists of
105
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
If z = a2b2c2 and u = ε, v = a, w = ε, x = a and y = b2c2 then, uv2wx2y will be a4b2c2≠L
If you consider any of the above 3 cases, uv2wx2y will not be having an equal number of a’s,
b’s and c’s. But Pumping Lemma says uv2wx2y ∈L. Can’t contradict the pumping lemma!
Our original assumption must be wrong. So L is not context-free.
Example:
Solution:
Assume L is CFL. It is sufficient to show that L1= {0m1n0m1n | m,n ≥ 0}, where n is
pumping lemma constant, is a CFL. Pick any z = 0n1n0n1n = uvwxy, satisfying the
conditions |vwx| ≤ n and vx ≠ε.
This language we prove by taking the case of i = 0, in the pumping lemma satisfying the
condition uviwxiy for i ≥0.
z is having a length of 4n. So if |vwx| ≤ n, then |uwy| ≥ 3n. According to pumping lemma,
uwy ∈ L. Then uwy will be some string in the form of tt, where t is repeating. If so, n |t| ≥
3n/2.
Suppose vwx is within first n 0’s: let vx consists of k 0’s. Then uwy begins with 0n-k1n
|uwy| = 4n-k. If uwy is some repeating string tt, then |t| =2n-k/2. t does end in 0 but tt ends
with 1. So second t is not a repetition of first t.
Suppose vwx consists of 1st block of 0’s and first block of 1’s: vx consists of only 0’s if
x= ε, then uwy is not in the form tt. If vx has at least one 1, then |t| is at least 3n/2 and first t
ends with a 0, not a 1.
106
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Very similar explanations could be given for the cases of vwx consists of first block of 1’s
and vwx consists of 1st block of 1’s and 2nd block of 0’s. In all cases uwy is expected to be in
the form of tt. But first t and second t are not the same string. So uwy is not in L and L is not
context free.
Example:
Solution:
Assume L is CFL. Pick z = uvwxy = 0n1n2n3n where |vwx| ≤ n and vx ≠ ε. vwx can consist
of a substring of one of the symbols or straddles of two adjacent symbols.
Then uwy has n of 3 different symbols and fewer than n of 4th symbol. Then uwy is not in L.
If we consider any combinations of above cases, we get uwy, which is not CFL. This
Exercises:
Using pumping lemma for CFL prove that below languages are not context free
1. {0p | p is a prime}
2. {anbnci | i ≤ n}
107
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
I. Substitution:
By substitution operation, each symbol in the strings of one language is replaced by an entire
CFL language.
Example:
Theorem:
If a substitution s assigns a CFL to every symbol in the alphabet of a CFL L, then s(L) is a
CFL.
Proof:
Let G = (V, Σ, P, S) be grammar for the CFL L. Let Ga = (Va, Ta, Pa, Sa) be the grammar
corresponding to each terminal a ∈ Σ and V ∩ Va = φ. Then G′= (V′, T′, P′, S) is a grammar
for s(L) where
• V′ = V ∪ Va
• T′= union of Ta’s all for a ∈ Σ
• P′ consists of
o All productions in any Pa for a ∈ Σ
o The productions of P, with each terminal a is replaced by Sa everywhere a
occurs.
Example:
L = {0n1n| n ≥ 1}, generated by the grammar S → 0S1 | 01, s(0) = {anbm | m ≤ n}, generated
by the grammar S → aSb | A; A → aA | ab, s(1) = {ab, abc}, generated by the grammar S →
abA, A → c |ε. Rename second and third S’s to S0 and S1, respectively. Rename second A to
B. Resulting grammars are:
108
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
S → 0S1 | 01
S0 → aS0b | A; A → aA | ab
S1 → abB; B → c | ε
In the first grammar replace 0 by S0 and 1 by S1. The resulted grammar after substitution is:
S → S0SS1 | S0S1 S0→ aS0b | A; A →aA | ab S1→abB; B→ c | ε
Example:
Example:
109
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
c. Closure under Kleene’s star (closure * and positive closure +) of CFL’s L1:
Let L = {a}* (or L = {a}+) and s(a) = L1. Then s(L) = L1* (or s(L) = L1+).
Example:
IV. Intersection:
Example:
110
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
The language L = {0n1n2n | n ≥ 1} is not context-free. But L1 = {0n1n2i | n ≥ 1, i ≥ 1} is a
CFL and L2 = {0i1n2n | n ≥ 1, i ≥ 1} is also a CFL. But L = L1∩ L2.
Corresponding grammars for L1: S→AB; A→0A1 | 01; B→2B | 2 and corresponding
grammars for L2: S →AB; A→0A | 0; B→1B2 | 12.
FA Accept/
AND Reject
PDA
Stack
P = (QP, ∑, Γ, δP, qP, Z0, FP) be PDA to accept L by final state. Let A = (QA, ∑, δA, qA, FA)
for DFA to accept the Regular Language R. To get L ∩ R, we have to run a Finite Automata
in parallel with a push down automata as shown in figure 1. Construct PDA P′ = (Q, ∑, Γ,
δ, qo, Z0, F) where
• Q = (Qp X QA)
• qo = (qp, qA)
• F = (FPX FA)
• δ is in the form δ ((q, p), a, X) = ((r, s), g) such that
1. s = δA(p, a)
2. (r, g) is in δP(q, a, X)
That is for each move of PDA P, we make the same move in PDA P′ and also we carry along
the state of DFA A in a second component of P′. P′ accepts a string w if and only if both P
and A accept w. ie w is in L ∩ R. The moves ((qp, qA), w, Z) |-*P′ ((q, p), ε, γ) are possible if
and only if (qp, w, Z) |-*P (q, ε,γ) moves and p = δ*(qA, w) transitions are possible.
b. CFL and RL properties:
Theorem: The following are true about CFL’s L, L1, and L2, and a regular language R.
111
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Proof:
Proof:
Assume that CFLs were closed under complement. ie if L is a CFL then LC is a CFL.
Since CFLs are closed under union, L1C ∪ L2C is a CFL. By our assumption (L1C ∪
L2C)C is a CFL. But (L1C ∪ L2C)C = L1 ∩ L2, which we just showed isn’t necessarily
a CFL. Contradiction! . So our assumption is false. CFL is not closed under
complementation.
Proof:
Let L1 = ∑* - L. ∑* is regular and is also CFL. But ∑* - L = LC. If CFLs were closed
under set difference, then ∑* - L = LC would always be a CFL. But CFL’s are not
closed under complementation. So CFLs are not closed under set-difference.
V. Inverse Homomorphism:
Recall that if h is a homomorphism, and L is any language, then h-1(L), called an inverse
homomorphism, is the set of all strings w such that h(w) ∈ L. The CFL’s are closed under
inverse homomorphism.
Theorem:
112
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Buffer
a h(a)
Input h
Accept/
PDA
Reject
Stack
Suppose h applies to symbols of alphabet Σ and produces strings in T*. Let PDA P = (Q, T,
Γ, δ, q0, Z0, F) that accept CFL L by final state. We construct a new PDA P′ = (Q′, Σ, Γ, δ′,
(q0, ε), Z0, (F x ε)) to accept h-1(L), where
• Q′ is the set of pairs (q, x) such that
o q is a state in Q
o x is a suffix of some string h(a) for some input string a in Σ
• δ′ is defined by
o δ′ ((q, ε), a, X) = {((q, h(a)),X)}
o If δ(q, b, X) = {(p, γ)} where b∈ T or b = ε then δ′ ((q, bx), ε, X) = {((p,
x), γ)}
• The start state of P′ is (q0, ε)
• The accepting state of P′ is (q, ε), where q is an accepting state of P.
Once we accept the relationship between P and P′, P accepts h(w) if and only if P′ accepts w,
because of the way the accepting states of P′ are defined.
Thus L(P′)=h-1(L(P))
113
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Language Hierarchy
and
History of Turing Machine
Context free
PDA language
Regular language
A language is called a regular language if some finite automaton recognizes it.
Ex: To recognize string that is a multiple of 4
1 0
0 0
S2 S1 S0
1
114
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
But can regular language recognize strings of the form 0n1n ? No
S → 0S1 / λ
Limitation again
( S 0 ,0 ) →(S 1,X,R )
( S 1,0 ) →(S 1,0 ,R )
( S 1,1 ) → (S 2 ,Y,R)
( S 2 ,1 ) →(S 2 ,1,R)
( S 2 ,2) →(S 3 ,Z,L)
( S 3 ,1 ) →(S 3,1,L)
( S 3,Y)→ (S 3 ,Y,L)
( S 3,0 ) →(S 3,0 ,L)
( S 3 ,X) → (S 0 ,X,R )
( S 0 ,Y)→(SA,Y,R)
SA : Accepting state
115
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Formal Machines Overview
Regular Expn.
DFA
116
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
PDA
CFL
example:
0n1n
CFL
CFG
But there are strings that cannot be recognized by PDAs. For example: anbncn
PDA
At the turn of the 20th century the German mathematician David Hilbert proposed the
Entscheidungsproblem. Given a set X, and a universe of elements U, and a criteria for
membership, is it possible to formulate a general procedureto decide whether a given
element of U is a member of X?
Hilbert’s grand ideas were watered down by the incompleteness theorem proposed by
the Austrian Kurt Gödel. His theorem states that in any mathematical system, there exist
certain obviously true assertions that cannot be proved to be true by the system.
In 1936 the British cryptologist Alan Turing, addressed Hilbert’s
Entscheidungsproblem using a different approach. He proposed two kinds of mathematical
117
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
machines called the a-machine and the c-machine respectively, and showed the existence of
some problems where membership cannot be determined.
But Turing’s a-machine became famous for something else other than its original
intentions. The a-machine was found to be more expressive than CFGs. It can recognize
strings that cannot be modeled by CFLs like anbncn. The a-machines came to be more
popularly known as Turing Machines
The Princeton mathematician Alonzo Church recognized the power of a-machines.
He invited Turing to Princeton to compare Turing Machines with his own l-calculus.
Church and Turing proved the equivalence of Turing Machines and l-calculus, and
showed that they represent algorithmic computation. This is called the Church-Turing thesis.
Turing Machines
Definition:
A Turing Machine (TM) is an abstract, mathematical model that describes what can
and cannot be computed. A Turing Machine consists of a tape of infinite length, on which
input is provided as a finite sequence of symbols. A head reads the input tape. The Turing
Machine starts at “start state” S0. On reading an input symbol it optionally replaces it with
another symbol, changes its internal state and moves one cell to the right or left.
S is a set of TM states
T is a set of tape symbols
S0 is the start state
H⊂S is a set of halting states
δ : S x T S x T x {L,R}
is the transition function
{L,R} is direction in which the
head moves
L : Left R: Right
input symbols on infinite length tape
118
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
1 0 1 0 1 1 1 1 1 1 0
head
The Turing machine model uses an infinite tape as its unlimited memory. (This is
important because it helps to show that there are tasks that these machines cannot perform,
even though unlimited memory and unlimited time is given.) The input symbols occupy
some of the tape’s cells, and other cells contain blank symbols.
Solved examples:
TM Example 1:
Given a string of 1s on a tape (followed by an infinite number of 0s), add one more 1
at the end of the string.
Input : #111100000000…….
Output : #1111100000000……….
Initially the TM is in Start state S0. Move right as long as the input symbol is 1. When a 0 is
encountered, replace it with 1 and halt.
Transitions:
(S0, 1) (S0, 1, R)
(S0, 0) ( h , 1, STOP)
TM Example 2 :
TM: X-Y
Given two unary numbers x and y, compute |x-y| using a TM. For purposes of
simplicity we shall be using multiple tape symbols.
119
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
(S0, 1) (S1, _, R)
(S0, b) (h, b, STOP)
(S1, 1) (S1, 1, R)
(S1, b) (S2, b, R)
b) Once the first 1 of y is reached, stamp it out. If instead the input ends, then y has finished.
But in x, we have stamped out one extra 1, which we should replace. So, go to some state s5
which can handle this.
(S2, 1) (S3, _, L)
(S2,_) (S2, _, R)
(S2, 0) (S5, 0, L)
c) State s3 is when corresponding 1s from both x and y have been stamped out. Now go back
to x to find the next 1 to stamp. While searching for the next 1 from x, if we reach the head of
tape, then stop.
(S3, _) (S3, _, L)
(S3,b) (S4, b, L)
(S4, 1) (S4, 1, L)
(S4, _) (S0, _, R)
(S4, #) (h, #, STOP)
d) State s5 is when y ended while we were looking for a 1 to stamp. This means we have
stamped out one extra 1 in x. So, go back to x, and replace the blank character with 1 and
stop the process.
(S5, _) (S5, _, L)
(S5,b) (S6, b, L)
(S6, 1) (S6, 1, L)
(S6, _) (h, 1, STOP)
120
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
and
Solved examples:
Step 1: Stamp the first 0 with X, then seek the first 1 and stamp it with Y, and then seek the
first 2 and stamp it with Z and then move left.
( S 0 ,0 ) →(S 1,X,R)
( S 1,0 ) →(S 1,0 ,R)
( S 1,1 ) →(S 2 ,Y,R)
( S 2 ,1 ) →(S 2 ,1,R)
( S 2 ,2) →(S 3 ,Z,L)
S0 = Start State, seeking 0, stamp it with X
S1 = Seeking 1, stamp it with Y
S2 = Seeking 2, stamp it with Z
Step 2: Move left until an X is reached, then move one step right.
(S 3,1)→(S3,1,L)
(S 3,Y)→(S 3,Y,L)
(S 3,0 )→(S3,0,L)
(S 3,X)→(S 0,X,R)
S3 = Seeking X, to repeat the process.
Step 3: Move right until the end of the input denoted by blank( _ ) is reached passing through
X Y Z s only, then the accepting state SA is reached.
( S 0 ,Y)→(S 4 ,Y,R)
( S 4 ,Y)→ (S 4 ,Y,R)
( S 4 ,Z) → (S 4 ,Z,R )
( S 4 ,_ ) →(SA,_ ,STOP)
121
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
S4 = Seeking blank
Step 1: Stamp the first character (0/1) with _, then seek the last character by moving till a _ is
reached. If the last character is not 0/1 (as required) then halt the process immediately.
( S 0 ,0 ) → (S 1,_ ,R )
( S 0 ,1 ) →(S 2 ,_ ,R )
( S 1,_ ) → (S 3,_ ,L)
( S 3 ,1 ) → (h,1,STOP )
( S 2 ,_ ) → (S 5 ,_ ,L)
( S 5 ,0 ) → (h,0 ,STOP)
Step 2: If the last character is 0/1 accordingly, then move left until a blank is reached to start
the process again.
( S 3 ,0) → (S 4 ,_ ,L)
( S 4 ,1) → (S 4 ,1,L)
( S 4 ,0) → (S 4 ,0 ,L)
( S 4 ,_) →(S 0 ,_ ,R)
( S 5 ,1) → (S 6 ,_ ,L)
( S 6 ,1) →(S 6 ,1,L)
( S 6 ,0) → (S 6 ,0 ,L)
( S 6 ,_) → (S 0 ,_ ,R)
Step 3 : If a blank ( _ ) is reached when seeking next pair of characters to match or when
seeking a matching character, then accepting state is reached.
122
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
#s010101_ _ _
#_s20101_ _ _
#_0s2101_ _ _
....
#_0101s5_ _ _
#_010s6_ _ _ _
#_s60101_ _ _
#_s00101_ _ _
....
#_ _ _ _ s5 _ _ _ _ _ _
#_ _ _ _ sA _ _ _ _ _ _
Exercises:
n 2n
1. Design a TM to recognize a string of the form a b .
2. Design a TM to recognize a string of 0s and 1s such that the number of 0s is not twice as
that of 1s.
Modularization of TMs
Designing complex TM s can be done using modular approach. The main problem
can be divided into sequence of modules. Inside each module, there could be several state
transitions.
For example, the problem of designing Turing machine to recognize the language 0n1n2n can
be divided into modules such as 0-stamper, 1-stamper, 0-seeker, 1-seeker, 2-seeker and 2-
stamper. The associations between the modules are shown in the following figure:
123
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
0-Stamper 1-Seeker
TM: 0n1n2n
1-Stamper
2-Seeker
2-Stamper
0-Seeker
A Universal Turing Machine UTM takes an encoding of a TM and the input data as its input
in its tape and behaves as that TM on the input data.
TM = (S,S0,H,T,d)
Suppose, S={a,b,c,d}, S0=a, H={b,d} T={0,1}
δ : (a,0) (b,1,R) , (a,1) (c,1,R) ,
(c,0) (d,0,R) and so on
then TM spec:
$abcd$a$bd$01$a0b1Ra1c1Rc0d0R…….
where $ is delimiter
This spec along with the actual input data would be the input to the UTM.
This can be encoded in binary by assigning numbers to each of the characters appearing in
the TM spec.
124
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
The encoding can be as follows:
$ : 0000 0 : 0101
a : 0001 1 : 0110
b : 0010 L : 0111
c : 0011 R : 1000
d : 0100
So the TM spec given in previous slide can be encoded as:
0000.0001.0010.0011.0100.0000.0001.0000.0010.0100 ……
Hence TM spec can be regarded just as a number.
125
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
Extensions to Turing Machines
Proving Equivalence
For any two machines M1 from class C1 and M2 from class C2:
M2 is said to be at least as expressive as M1
if L(M2) = L(M1) or if M2 can simulate M1.
M1 is said to be at least as expressive as M2
if L(M1) = L(M2) or if M1 can simulate M2.
Track 0 0 1 1 0 1 0 1 0 0 …
0 0 1 1 1 1 1 1 0 …
Track 1
A composite tape consists of many tracks which can be read or written simultaneously.
A composite tape TM (CTM) contains more than one tracks in its tape.
STM = TM:
Just don’t use the S option…
TM = STM:
For L and R moves of a given STM build a TM that moves correspondingly L or R…
TM = STM:
For S moves of the STM, do the following:
1.Move right,
2.Move back left without changing the tape
126
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
TM = 2TM:
Simulate a 2-way infinite tape on a one-way infinite tape…
… -6 -5 -4 -3 -2 -1 0 1 2 3 4 5 6 …
0 –1 1 –2 2 –3 3 –4 4 –5 5 …
127
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
MTM = TM:
Use just the first tape…
TM = MTM:
Reduction of multiple tapes to a single tape.
Consider an MTM having m tapes. A single tape TM that is equivalent can be constructed by
reducing m tapes to a single tape.
A 0 1 2 3 4 5 6 7 …
B 0 1 2 3 4 5 6 7 …
C 0 1 2 3 4 5 6 7 …
TM A0 B0 C0 A1 B1 C1 A2 B2 C2 A3 B3 ..
Multi-dimensional TMs
TM
128
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
0 1 2 3 4 5 6 7 8 9 10
Non-deterministic TM
129
Downloaded from www.pencilji.com
Downloaded from www.pencilji.com
bccaaabccacb bccbaabccacb
s2 s3
bccaaabccacb
s4
130
Downloaded from www.pencilji.com