FAFL Notes (2010) (SJBIT)
FAFL Notes (2010) (SJBIT)
10CS56
I.A. Marks : 25
Exam Hours: 03
Exam Marks: 100
P ART - A
UNIT 1
7 Hours
Introduction to Finite Automata: Introduction to Finite Automata; The
central concepts of Automata theory; Deterministic finite automata;
Nondeterministic finite automata
UNIT 2
7 Hours
Finite Automata, Regular Expressions: An application of finite automata;
Finite automata with Epsilon-transitions; Regular expressions; Finite
Automata and Regular Expressions; Applications of Regular Expressions
UNIT 3
6 Hours
Regular Languages, Properties of Regular Languages: Regular
languages; Proving languages not to be regular languages; Closure properties
of regular languages; Decision properties of regular languages; Equivalence
and minimization of automata
UNIT 4
6 Hours
Context-Free Grammars And Languages : Context free grammars; Parse
trees; Applications; Ambiguity in grammars and Languages .
P ART B
UNIT 5
7 Hours
Pushdown Automata: Definition of the Pushdown automata; the languages
of a PDA; Equivalence of PDAs and CFGs; Deterministic Pushdown
Automata
UNIT 6
6 Hours
Properties of Context-Free Languages: Normal forms for CFGs; The
pumping lemma for CFGs; Closure properties of CFLs
UNIT 7
7 Hours
Introduction To Turing Machine: Problems that Computers cannot solve;
The turning machine; Programming techniques for Turning Machines;
Extensions to the basic Turning Machines; Turing Machine and Computers.
UNIT 8
6 Hours
Undecidability: A that is not recursively enumerable; An
Undecidable problem that is RE; Posts Correspondence problem; Other
undecidable problems.
Dept of ISE,SJBIT
10CS56
Text Books:
1. John E. Hopcroft, Rajeev Motwani, Jeffrey D.Ullman: Introduction
to Automata Theory, Languages and Computation, 3rd Edition,
Pearson Education, 2007.
(Chapters: 1.1, 1.5, 2.2 to 2.5, 3.1 to 3.3, 4, 5, 6, 7, 8.1 to
8.4, 8.6, 9.1, 9.2, 9.4.1, 9.5)
Reference Books:
1. K.L.P. Mishra: Theory of Computer Science, Automata, Languages,
and Computation, 3rd Edition, PHI, 2007.
2. Raymond Greenlaw, H.James Hoover: Fundamentals of the Theory
of Computation, Principles and Practice, Morgan Kaufmann, 1998.
Dept of ISE,SJBIT
FLAT
10CS56
Table Of Contents
Page no
18
34
53
Dept of ISE,SJBIT
10CS56
64
74
94
104
Dept of ISE,SJBIT
10CS56
Dept of ISE,SJBIT
10CS56
Formal definition
Automaton
An automaton is represented formally by a 5-tuple (Q,,,q0,F), where:
x
x
x
x
x
Input word
An automaton reads a finite string of symbols a1,a2,...., an , where ai , which is
called an input word. The set of all words is denoted by *.
Run
A run of the automaton on an input word w = a1,a2,...., an *, is a sequence of
states q0,q1,q2,...., qn, where qi Q such that q0 is the start state and qi = (qi-1,ai)
for 0 < i n. In words, at first the automaton is at the start state q0, and then the
automaton reads symbols of the input word in sequence. When the automaton
reads symbol ai it jumps to state qi = (qi-1,ai). qn is said to be the final state of the
run.
Accepting word
A word w * is accepted by the automaton if qn F.
Recognized language
An automaton can recognize a formal language. The language L * recognized
by an automaton is the set of all the words that are accepted by the automaton.
Recognizable languages
The recognizable languages are the set of languages that are recognized by some
automaton. For the above definition of automata the recognizable languages are
regular languages. For different definitions of automata, the recognizable
languages are different.
Dept of ISE,SJBIT
10CS56
Automata theory also studies if there exist any effective algorithm or not to solve
problems similar to the following list.
x
x
x
Classes of automata
The following is an incomplete list of types of automata.
Automata
Deterministic finite automata(DFA)
Nondeterministic finite automata(NFA)
Nondeterministic finite automata with -transitions (FND-
or -NFA)
Pushdown automata (PDA)
Linear bounded automata (LBA)
Turing machines
Timed automata
Deterministic Bchi automata
Nondeterministic Bchi automata
Nondeterministic/Deterministic Rabin automata
Nondeterministic/Deterministic Streett automata
Nondeterministic/Deterministic parity automata
Nondeterministic/Deterministic Muller automata
Recognizable language
regular languages
regular languages
regular languages
context-free languages
context-sensitive language
recursively enumerable
languages
-limit languages
-regular languages
-regular languages
-regular languages
-regular languages
-regular languages
10CS56
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 G*(q0, w) A }
The non-acceptance of the string w by an FA or DFA can be defined in formal notation
as:
L(M) = { w | w * and G*(q0, w) A }
Obtain a DFA to accept strings of as and bs starting with the string ab
b0
q
a
a,b
3 a,b
m States o
So, the DFA which accepts strings of as and bs starting with the string ab is given by
M = (Q, , G, q0, A) where
Q = {q0, q1, q2, q3}
= {a, b}
q0 is the start state
A = {q2}.
G is shown the transition table 2.4.
Dept of ISE,SJBIT
m6o
a b
oq0
q1 q3
q1
q3 q2
q2
q2 q2
q3
q3 q3
8
10CS56
Draw a DFA to accept string of 0s and 1s ending with the string 011.
q0
q1
q2
q3
q0
a,b
q1
q2
b
Obtain a DFA to accept strings of as and bs except those containing the substring aab.
b
q0
q1
q2
a,b
q3
b
Obtain DFAs to accept strings of as and bs having exactly one a,
b
q0
q1
b
q0
b
q0
Dept of ISE,SJBIT
b
q1
b
q2
a,b
q2
a, b
q1
b
q3
a, b
a
q4
10CS56
q
0
a
a
q
b
b
q2
q1
a
b
q2
b
q3
aa
q0
b
q1
b
q3
a
a
q0
b
a
b
q2
q1
a
a
b
q3
Regular language
Definition: Let M = (Q, , G, q0, A) be a DFA. The language L is regular if there exists a
machine M such that L = L(M).
Dept of ISE,SJBIT
10
10CS56
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)
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.
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
11
10CS56
q1
q5
q2
q6
q0
H
q3
q4
a
q7
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. GD([qi, qj,.qk], a) = GN(qi, a) U GN(qj, a) U GN(qk, a)
Dept of ISE,SJBIT
12
10CS56
0
q0
0,1 q 0, 1 q
1
2
(2.7)
Step2: Find the new states from each state in QD and obtain the corresponding transitions.
Consider the state [q0]:
When a = 0
GD([q0], 0)
When a = 1
GD([q0], 1)
= GN([q0], 0)
= [q0, q1]
(2.8)
= GN([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
QD = {[q0], [q0, q1], [q1] }
(2.10)
Dept of ISE,SJBIT
13
G
[q0]
Q [q0, q1]
[q1]
0
[q0, q1]
[q1]
10CS56
(2.13)
[q0]
[q0, q1]
[q1]
[ q0 ,
q1,
q2 ]
[q1, q2]
0
[q0, q1]
[q0, q1, q2]
1
[q1]
[q1, q2]
Consider the D
state [q1]:
When aF = 0
A
GD([q1], 0)
When a = 1
D GD([q1], 1)
F
Dept of ISE,SJBA
IT
= GN([q1], 0)
= [q2]
(2.14D)
F
A
= GN([q1], 1)
=
14
10CS56
[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)
and add the transitions on a = 0 and a = 1 as shown below:
0
G
[q0]
[q0, q1]
[q0, q1]
[q0, q1, q2]
[q1]
[q2]
[ q0 ,
q1,
q2 ]
[q1, q2]
[q2]
1
[q1]
[q1, q2]
[q2]
D
F
WhenAa = 1
GD([q0,q1,q2],
1)
=
=
=
=
GN([q0,q1,q2], 0)
GN(q0, 0D
) U GN(q1, 0) U GN(q2, 0)
{q0,q1} U
F {q2} U {I}
[q0,q1,q2A
]
(2.17)
=
=
=
=
GN([q0,q1,q2], 1)
GN(q0, 1) U GN(q1, 1) U GN(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:
[q0]
[q0, q1]
Dept of ISE,SJBIT
D
F
A
0
1
D
[q0, q1]
[q1]
F
[q0, q1, q2] [q1, q2]
A
15
[q1]
[q2]
[ q0 ,
q1, [q0,q1,q2]
q2 ]
[q1, q2]
[q2]
10CS56
[q2]
[q1, q2]
When a = 1
GD([q1,q2], 1)
D
F
A
=
=
=
=
GN([q1,q2], 0)
GN(q1, 0) U GN(q2, 0)
{q2} U {I}
[q2]
(2.19)
=
=
=
=
GN([q1,q2], 1)
GN(q1, 1) U GN(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:
G
[q0]
[q0, q1]
[q1]
[ q0 ,
q1,
q2 ]
[q1, q2]
[q2]
F
A
0
[q0, q1]
[q0, q1, q2]
[q2]
[q0,q1,q2]
1
[q1]
[q1, q2]
[q2]
[q1, q2]
[q2]
[q2]
= GN([q2], 0)
= {I}
(2.21) D
F
= GN([q2], A
1)
= [q2]
16
10CS56
(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.
[q0]
[q0,q1]
[q1]
[q0,q1,q2]
[q1,q2]
[q2]
0
[q0, q1]
[q0, q1, q2]
1
[q1]
[q1, q2]
[q2]
[q2]
[q0,q1,q2]
[q1, q2]
[q2]
[q2]
[q2]
[q 0 ]
[q 0 , q 1 ]
[q 0 , q 1 , q 2 ]
[q 1 ]
1
1
[q 1 , q 2 ]
0, 1
0, 1
[q 2 ]
Dept of ISE,SJBIT
17
10CS56
H
H
0
3
H
8
6
b
H
Let QD = {0}
(A)
= GN(0, a)
= {1}
(B)
= GN(0, b)
= {I}
= GN(1, a)
= {I}
= GN(1, b)
= {2}
= {2,3,4,6,9}
(C)
This is because, in state 2, due to H-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,
G(B, b) = {2,3,4,6,9} = C
Consider the state [C]:
When input is a:
G(C, a)
Dept of ISE,SJBIT
=
=
=
=
GN({2,3,4,6,9}, a)
{5}
{5, 8, 9, 3, 4, 6}
{3, 4, 5, 6, 8, 9}
order) (D)
(ascending
18
10CS56
This is because, in state 5 due to H-transitions, the states reachable are {8, 9, 3,
4, 6}. Therefore,
G(C, a) = {3, 4, 5, 6, 8, 9} = D
When input is b:
= GN({2, 3, 4, 6, 9}, b)
G( C, 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.,
H-transition) are {8, 9, 3, 4, 6}. Therefore,
G(C, b) = {3, 4, 6, 7, 8, 9} = E
Consider the state [D]:
When input is a:
G(D, a)
=
=
=
=
GN({3,4,5,6,8,9}, a)
{5}
{5, 8, 9, 3, 4, 6}
{3, 4, 5, 6, 8, 9}
order) (D)
When input is b:
G(D, b)
=
=
=
=
GN({3,4,5,6,8,9}, b)
{7}
{7, 8, 9, 3, 4, 6}
{3, 4, 6, 7, 8, 9}
order) (E)
=
=
=
=
GN({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:
G(E, b)
(ascending
(ascending
=
=
=
=
GN({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.
Dept of ISE,SJBIT
19
10CS56
a
B
D
D
D
G
A
B
C
D
E
b
C
E
E
E
D
F
A
aD
b
F b
E A
b
a
D
D
F
A
D
F
A
Dept of ISE,SJBIT
20
10CS56
: m>=2, n>=2}
(ii) Write DFA to accept strings of 0s, 1s & 2s beginning with a 0 followed by odd
number of 1s and ending with a 2.
10. Design a DFA to accept string of 0s & 1s when interpreted as binary numbers would be
multiple of 3.
11. Find closure of each state and give the set of all strings of length 3 or less accepted by
automaton.
{ r}
{q}
{p,r}
{p}
*r
{p,q}
{ r}
{p}
Dept of ISE,SJBIT
21
10CS56
Dept of ISE,SJBIT
22
10CS56
Finite-State Machines
A finite-state machine is an FA together with
actions on the arcs.
A trivial example for a communication link
23
10CS56
State charts
State charts model tasks as a set of states and actions. They extend FA diagrams Here is
a simplified state chart for a stopwatch
Lexical Analysis
In compiling a program, the first step is lexi-cal analysis. This isolates
keywords,identifiersetc., while eliminating irrelevant symbols.A token is a category, for
example identifier,relation operator or specific keyword.
For example,
token RE
keyword then then
variable name [a-zA-Z][a-zA-Z0-9]* where latter RE says it is any string of
alphanumeric
characters starting with a letter.
A lexical analyzer takes source code as a string,and outputs sequence of tokens.
For example,
for i = 1 to max do
x[i] = 0;
might have token sequence
for id = num to id do id [ id ] = num sep
As a token is identified, there may be an action.
For example, when a number is identified, itsvalue is calculated
2.2 Finite automata with Epsilon transitions
We can extend an NFA by introducing a "feature" that allows us to make a transition on
, the empty string. All the transition lets us do is spontaneously make a transition,
without receiving an input symbol. This is another mechanism that allows our NFA to be
Dept of ISE,SJBIT
24
10CS56
in multiple states at once. Whenever we take an edge, we must fork off a new "thread"
for the NFA starting in the destination state.
Just as nondeterminism made NFA's more convenient to represent some problems than
DFA's but were not more powerful, the same applies to HNFA's. While more
expressive, anything we can represent with an HNFA we can represent with a DFA that
has no H transitions.
Epsilon Closure
Epsilon Closure of a state is simply the set of all states we can reach by following the
transition function from the given state that are labeled . Generally speaking, a collection of
objects is closed under some operation if applying that operation to members of the
collection
returns an object still in the collection.
In the above example:
H
(q) = { q }
H
(r) = { r, s}
let us define the extended transition function for an HNFA. For a
regular, NFA we said for the induction step:
Let
G^(q,w) = {p1, p2, ... pk}
G(pi,a) = Sifor i=1,2,...k
Then ^(q, wa) = S1,S2... Sk
For an -NFA, we change for ^(q, wa):
Union[ G
(Each state in S1, S2, ... Sk)]
This includes the original set S1,S2... Sk as well as any states we can reach via .
When coupled with the basis that ^(q, ) = G
(q) lets us inductively define an
extended transition function for a HNFA.
Eliminating HTransitions
HTransitions are a convenience in some cases, but do not increase the power of the NFA.
To eliminate them we can convert a HNFA into an equivalent DFA, which is quite
similar to the steps we took for converting a normal NFA to a DFA, except we must now
follow all HTransitions and add those to our set of states.
1. Compute H
for the current state, resulting in a set of states S.
2. G(S,a) is computed for all a in by
a. Let S = {p1, p2, ... pk}
b. Compute I=1k (pi,a) and call this set {r1, r2, r3... rm}. This set is achieved by
following input a,
not by following any H transitions
Note :The (epsilon) transition refers to a transition from one state to another
without the reading of an input
symbol (ie without the tape containing the input string moving). Epsilon
transitions can be inserted between
Dept of ISE,SJBIT
25
10CS56
any states. There is also a conversion algorithm from a NFA with epsilon
transitions to a NFA without
epsilon transitions.
b
C
G a
H
q0 {q0} I
{q1}
I
q1 I
{q2} I
{q2} Consider the NFA-epsilon move machine M = { Q, ,
G, q0, F}
q2 I
{q2} I
I
Q = { q0, q1, q2 }
= { a, b, c } and H moves
q0 = q0
F = { q2 }
26
10CS56
q2 in the NFA-epsilon becomes {q2} just to keep the notation the same. q2
can go nowhere except q2, that is what phi means, on an epsilon move.
We do not show the epsilon transition of a state to itself here, but,
beware, we will take into account the state to itself epsilon transition
when converting NFA's to regular expressions.
The initial state of our new machine is {q0,q1,q2} the epsilon closure of q0
The final state(s) of our new machine is the new state(s) that contain
a state symbol that was a final state in the original machine.
The new machine accepts the same language as the old machine, thus same sigma.
So far we have for out new NFA
Q' = { {q0,q1,q2}, {q1,q2}, {q2} } or renamed { qx, qy, qz }
= { a, b, c }
F' = { {q0,q1,q2}, {q1,q2}, {q2} } or renamed { qx, qy, qz }
q0 = {q0,q1,q2}
or renamed qx
inputs
a b c
Gc
qx or{q0,q1,q2}
qy or{q1,q2}
qz or{q2}
Now we fill in the transitions. Remember that a NFA has transition entries that are sets.
Further, the names in the transition entry sets must be only the state names from Q'.
Very carefully consider each old machine transitions in the first row.
You can ignore any I entries and ignore the H column.
In the old machine G(q0,a)=q0 thus in the new machine
G'({q0,q1,q2},a)={q0,q1,q2} this is just because the new machine
accepts the same language as the old machine and must at least have the
the same transitions for the new state names.
inputs
a
b c
Gc
qx or{q0,q1,q2} {qx} or{{q0,q1,q2}}
qy or{q1,q2}
qz or{q2}
No more entries go under input a in the first row because
old G(q1,a)= I, G(q2,a)=I
Now consider the input b in the first row, G(q0,b)= I, G(q1,b)={q2}
and G(q2,b)= I. The reason we considered q0, q1 and q2 in the old
Dept of ISE,SJBIT
27
10CS56
machine was because out new state has symbols q0, q1 and q2 in the new
state name from the epsilon closure. Since q1 is in {q0,q1,q2} and
G(q1,b)=q1 then G'({q0,q1,q2},b)={q1,q2}. WHY {q1,q2} ?, because
{q1,q2} is the new machines name for the old machines name q1. Just
compare the zeroth column of G to G'. So we have
inputs
a
b
c
Gc
qx or{q0,q1,q2} {qx} or{{q0,q1,q2}} {qy} or{{q1,q2}}
qy or{q1,q2}
qz or{q2}
Now, because our new qx state has a symbol q2 in its name and
G(q2,c)=q2 is in the old machine, the new name for the old q2,
which is qz or {q2} is put into the input c transition in row 1.
Inputs
a
b
c
Gc
qx or{q0,q1,q2} {qx} or{{q0,q1,q2}} {qy} or{{q1,q2}} {qz} or{{q2}}
qy or{q1,q2}
qz or{q2}
Now, tediously, move on to row two, ... .
You are considering all transitions in the old machine, delta,
for all old machine state symbols in the name of the new machines states.
Fine the old machine state that results from an input and translate
the old machine state to the corresponding new machine state name and
put the new machine state name in the set in delta'. Below are the
"long new state names" and the renamed state names in delta'.
Inputs
Gc
qx or{q0,q1,q2}
qy or{q1,q2}
qz or{q2}
a
{qx} or{{q0,q1,q2}}
I
I
inputs
b
c
Gc a
qx {qx} {qy} {qz}
qy I
{qy} {qz}
qz I
{qz}
I
Dept of ISE,SJBIT
\
/
b
{qy} or{{q1,q2}}
{qy} or{{q1,q2}}
I
c
{qz} or{{q2}}
{qz} or{{q2}}
{qz} or{{q2}}
\ Qc
/
28
10CS56
The figure above labeled NFA shows this state transition table.
It seems rather trivial to add the column for epsilon transitions,
but we will make good use of this in converting regular expressions
to machines. regular-expression -> NFA-epsilon -> NFA -> DFA.
2.3 :Regular expression
Definition: A regular expression is recursively defined as follows.
1. I is a regular expression denoting an empty language.
2. H-(epsilon) is a regular expression indicates the language containing an empty
string.
3. a is a regular expression which indicates the language containing only {a}
4. If R is a regular expression denoting the language LR and S is a regular
expression denoting the language LS, then
a. R+S is a regular expression corresponding to the language LRULS.
b. R.S is a regular expression corresponding to the language LR.LS..
c. R* is a regular expression corresponding to the language LR*.
5. The expressions obtained by applying any of the rules from 1-4 are regular
expressions.
The table 3.1 shows some examples of regular expressions and the language corresponding to
these regular expressions.
Regular
expressions
(a+b)*
(a+b)*abb
ab(a+b)*
(a+b)*aa(a+b)
*
a*b*c*
a+b+c+
aa*bb*cc*
Dept of ISE,SJBIT
Meaning
Set of strings of as and bs of any length
including the NULL string.
Set of strings of as and bs ending with the
string abb
Set of strings of as and bs starting with the
string ab.
Set of strings of as and bs having a sub string
aa.
Set of string consisting of any number of
as(may be empty string also) followed by any
number of bs(may include empty string)
followed by any number of cs(may include
empty string).
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.
Set of string consisting of at least one a
29
10CS56
String of as and bs 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 H. 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 t 0}
Obtain a regular expression to accept a language consisting of strings of as and bs of odd
length.
String of as and bs 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 as and bs 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.
Dept of ISE,SJBIT
30
10CS56
qf
q0 H
(a)
qf
q0
(b)
qf
(c)
q1
f1
M1
q2
f2
M2
H
qf
H
L(R2)
31
10CS56
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)
H
q1 M1
q2 M2
f1
f2
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 H-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.
H
q0
q1
f1
M1
qf
L(R1)
H
(a)
H
q0
q1
f1
M1
qf
H
(b)
Fig. 3.5 To accept the language L(R1)*
It is clear from figure 3.5 that the machine can either accept H 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 as and bs starting with the string ab.
32
10CS56
b
H
H
0
H
a
5 H
3
H
8
6
H
Fig. 3.6 To accept the language L(ab(a+b)*)
Dept of ISE,SJBIT
33
10CS56
q1 4
r
3
(3.1)
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)
Obtain a regular expression for the FA shown below:
0
q0
0
q1
1
q2
0
q3
0,1
34
10CS56
It is clear from this figure that the machine accepts strings of 01s and 10s of any length
and the regular expression can be of the form
(01 + 10)*
What is the language accepted by the following FA
0
q0
q1
0,
q2 1
Since, state q2 is the dead state, it can be removed and the following FA is obtained.
1
0
q0
q1
The state q0 is the final state and at this point it can accept any number of 0s which can
be represented using notation as
0*
q1 is also the final state. So, to reach q1 one can input any number of 0s followed by 1
and followed by any number of 1s 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 0s
(possibly H) followed by any number of 1s(possibly H).
In UNIX operating system, we can use the editor ed to search for a specific pattern in the
text. For example, if the command specified is
/acb*c/
Dept of ISE,SJBIT
35
10CS56
then the editor searches for a string which starts with ac followed by zero or more bs 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.
Dept of ISE,SJBIT
36
10CS56
Assignment questions:
1. Obtain an NFA to accept the following language L = {w | w ababn or aban where n t 0}
2. Convert the following NFA into an equivalent DFA.
0
q0
0,1 q 0, 1 q
1
2
H
H
0
H
5
3
H
8
6
b
H
7 H
4. P.T. Let R be a regular expression. Then there exists a finite automaton M = (Q,
, G, q0, A) which accepts L(R).
5. Obtain an NFA which accepts strings of as and bs starting with the string ab.
6. Define grammar? Explain Chomsky Hierarchy? Give an example
7.
(a) Obtain grammar to generate string consisting of any number of as and bs with at
least one b.
x Obtain a grammar to generate the following language: L ={WWR where
W{a, b}*}
8.
(a) Obtain a grammar to generate the following language: L = { 0m 1m2n | m>= 1 and
n>=0}
x Obtain a grammar to generate the set of all strings with no more than three as
when 6 = {a, b}
9. Obtain a grammar to generate the following language:
( i ) L = { w | n a ( w) > n b ( w ) }
(ii) L = { an bm ck | n+2m = k for n>=0, m>=0}
10. Define derivation , types of derivation , Derivation tree & ambiguous grammar. Give
example for each.
11. Is the following grammar ambiguous?
S aB | bA
A aS | bAA |a
B bS | aBB | b
12. Define PDA. Obtain PDA to accept the language L = {an bn | n>=1} by a final state.
13. write a short note on application of context free grammar.
Dept of ISE,SJBIT
37
10CS56
Dept of ISE,SJBIT
38
10CS56
3.1:Regular languages
In theoretical computer science and formal language theory, a regular language is a
formal language that can be expressed using a regular expression. Note that the "regular
expression" features provided with many programming languages are augmented with
features that make them capable of recognizing languages that can not be expressed by
the formal regular expressions (as formally defined below).
In the Chomsky hierarchy, regular languages are defined to be the languages that are
generated by Type-3 grammars (regular grammars). Regular languages are very useful in
input parsing and programming language design.
Formal definition
The collection of regular languages over an alphabet is defined recursively as follows:
x
x
x
x
See regular expression for its syntax and semantics. Note that the above cases are in
effect the defining rules of regular expression
Examples
All finite languages are regular; in particular the empty string language {} = * is
regular. Other typical examples include the language consisting of all strings over the
alphabet {a, b} which contain an even number of as, or the language consisting of all
strings of the form: several as followed by several bs.
A simple example of a language that is not regular is the set of strings
.
Intuitively, it cannot be recognized with a finite automaton, since a finite automaton has
finite memory and it cannot remember the exact number of a's. Techniques to prove this
fact rigorously are given below.
Pumping Lemma
Used to prove certain languages like L = {0n1n | n 1} are not regular.
Dept of ISE,SJBIT
39
10CS56
L = {0n1n | n 1}
There is no regular expression to define L. 00*11* is not the regular expression defining
L. Let L= {0212}
0
1
3
1
4
0
0
0,1
0,1
State 6 is a trap state, state 3 remembers that two 0s have come and from there state 5
remembers that two 1s 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 fwe have to have infinite states, which is not
possible with a finite state machine, which has finite number of states.
40
10CS56
k=1
a1 ------ an is accepted
k=2
(ii)
Example 1.
To prove that L={w|w H anbn, where n 1} is not regular
Dept of ISE,SJBIT
41
10CS56
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.
42
10CS56
Put k=0. we get an-l b an L, because, it is not a palindrome. Contradiction, hence the
language is not regular
.
Example 3.
To prove that L={ all strings of 1s whose length is prime} is not regular. i.e.,
L={12, 13 ,15 ,17 ,111 ,----}
Let k = p-m
= (p-m) + m (p-m)
= (p-m) (1+m) ----- this can not be prime
if p-m 2 or 1+m 2
1.
(1+m) 2 because m 1
2.
Example 4.
To prove that L={ 0i2 | i is integer and i >0} is not regular. i.e., L={02, 04 ,09 ,016
,025 ,----}
Proof: Let L be regular. Let w = 0n2 where |w| = n2 n
by PL xykz L, for all k = 0,1,--Select k = 2
| xy2z | = | xyz | + | y |
= n2 + Min 1 and Max n
Therefore n2 < | xy2z | n2 + n
is
Say n = 5 this implies that string can have length > 25 and < 36
which is not of the form 0i2.
a) Show that following languages are not regular
Dept of ISE,SJBIT
43
10CS56
44
10CS56
Consider a DFA, A that accepts all and only the strings of 0s and 1s that end
in 01. That is L(A) = (0+1)*01. The complement of L(A) is therefore all string of 0s and
1s that do not end in 01
Dept of ISE,SJBIT
45
10CS56
*
regular language
Proof: - Let L =L(A) for some DFA. A=(Q, 6, G, q0, F). Then L = L(B), where B is
the DFA (Q, 6, G, 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 G^ ( q0,
w) is in Q-F, which occurs if and only if w is not in L(A).
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
Dept of ISE,SJBIT
46
10CS56
seen neither 0 nor 1. Then state qr means that we have seen only once 0s, while state ps
represents the condition that we have seen only 1s. The accepting state qs represents the
condition where we have seen both 0s and 1s.
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.
Dept of ISE,SJBIT
47
10CS56
DFA for L1 L2
Reversal
Theorem : If L is a regular language, so is LR
Ex.
L={001,10,111,01}
LR={100,01,111,10}
To prove that regular languages are closed under reversal.
Let L = {001, 10, 111}, be a language over 6={0,1}.
LR is a language consisting of the reversals of the strings of L.
That is LR = {100,01,111}.
If L is regular we can show that LR is also regular.
Proof.
As L is regular it can be defined by an FA, M = (Q, 6 , G, q0, F), having only one final
state. If there are more than one final states, we can use - transitions from the final
states going to a common final state.
Let FA, MR = (QR, 6R , G R,q0R,FR) defines the language LR,
Dept of ISE,SJBIT
48
10CS56
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.
Dept of ISE,SJBIT
49
10CS56
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 6, and h is a homomorphism on 6,
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
L1= (a+b)* a (a+b)*
h : {a, b}
{0, 1}*
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.
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)*.
Dept of ISE,SJBIT
50
10CS56
O(n34n 2n)
Regular Expression to Automaton Conversion
Regular expression to H-NFA takes linear time O(n) on a regular expression of length n.
Conversion from H-NFA to NFA takes O(n3) time.
Testing Emptiness of Regular Languages
Suppose R is regular expression, then
empty.
1. R = R1 + R2. Then L(R) is empty if and only if both L(R1) and L(R2) are
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 H
4. R=(R1) Then L(R) is empty if and only if L(R1) is empty since they are the
same language.
1. R = R1 + R2. Then L(R) is empty if and only if both L(R1) and L(R2) are
2. R= R1R2. Then L(R) is empty if and only if either L(R1) or L(R2) is empty.
Dept of ISE,SJBIT
51
10CS56
Fig 2. gives the list of all unordered pairs of states (p,q) with p q.
Dept of ISE,SJBIT
52
10CS56
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, G(1,a) I and G (3,a) 2. That is (1,3)
where I and 3 are non final states.
(I,2),
Dept of ISE,SJBIT
53
10CS56
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.
Dept of ISE,SJBIT
54
10CS56
Assignment questions
1. Let M = (Q, , G, q0, A) be an FA recognizing the language L. Then there exists
an equivalent regular expression R for the regular language L such that L = L(R).
2. Obtain a regular expression for the FA shown below:
0
q0
0
q1
1
q2
0
q3
0,1
0
q0
q1
0,1
q2
q0
b
q1
a,b
q2
a
q3
a,b
55
L={anbmcmdn | n, m t1 }
10CS56
10. Apply pumping lemma to following languages and understand why we cannot
complete proof
x
L={anaba | n t0 }
L={anbm | n, mt0 }
= 6* - L is also a
14. Write a DFA to accept the intersection of L1=(a+b)*a and L2=(a+b)*b that is for
L1 L2.
15. Find the DFA to accept the intersection of L1=(a+b)*ab (a+b)* and L2=(a+b)*ba
(a+b)* that is for L1 L2
16. P.T. If L and M are regular languages, then so is L M.
17.
Dept of ISE,SJBIT
56
10CS56
Dept of ISE,SJBIT
57
10CS56
Dept of ISE,SJBIT
58
10CS56
59
10CS56
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:
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)
Dept of ISE,SJBIT
60
10CS56
Parsers
The YACC Parser Generator
Markup Languages
XML and Document typr definitions
61
10CS56
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"
%}
%%
Dept of ISE,SJBIT
62
10CS56
Markup Languages
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
<P> The things I <EM>hate</EM>:
<OL>
<LI> Moldy bread
<LI>People who drive too slow
In the fast lane
</OL>
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
ABC
63
2. AE1 | E2.
3. A(E1)*
4. A(E1)+
5.
A(E1)?
10CS56
BE1
CE2
AE1
AE2
ABA
AH
BE1
ABA
AB
BE1
AH
AE1
4.4: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.
Dept of ISE,SJBIT
64
10CS56
Dept of ISE,SJBIT
65
10CS56
ASSIGNMENT QUESTIONS
1) Design context-free grammar for the following cases
a) L={ 0n1n | nl }
b) L={aibjck| ij or jk}
2) The following grammar generates the language of RE
0*1(0+1)*
S A|B
A 0A|H
B 0B|1B|H
Give leftmost and rightmost derivations of the following strings
a) 00101
b) 1001
c) 00011
3) Consider the grammar
S aS|aSbS|H
Show that deviation for the string aab is ambiguous
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) ?
5) Design context-free grammar for the following cases
a) L={ 0n1n | nl }
b) L={aibjck| ij or jk}
6) The following grammar generates the language of RE
0*1(0+1)*
S A|B
A 0A|H
B 0B|1B|H
Give leftmost and rightmost derivations of the following strings
a) 00101
b) 1001
c) 00011
66
10CS56
Dept of ISE,SJBIT
67
10CS56
Dept of ISE,SJBIT
68
10CS56
X = {x1, ... , xm} is a finite set of input symbols. As above, it is also called an
alphabet. The empty symbol is not a member of this set. It does, however, carry
its usual meaning when encountered in the input.
Z = {z1, ... zn} is a finite set of states.
= {s1, ... , sp} is a finite set of stack symbols. In this case
x
x
x
x
ZF
69
10CS56
and leading to
, where
is one of the final states. Here it
doesn't play a role what the contents of the stack are at the end.
In our example the PDA
would accept
and
because
. Hence we conclude
On the other hand since there is no successful sequence of IDs starting with
we know that
If we specify a PDA for acceptance by empty stack we will leave out the set of
final states
.
also works if we leave out
We can always turn a PDA which use one acceptance method into one which uses the
other. Hence, both acceptance criteria specify the same class of languages.
Dept of ISE,SJBIT
70
10CS56
C FG
PDA by
empty stack
PDA by
Final state
Dept of ISE,SJBIT
71
10CS56
Example:
Convert the grammar with following production to PDA accepted by empty stack:
S 0S1 | A
A 1A0 | S |
Solution:
P = ({q}, {0, 1}, {0, 1, A, S}, , q, S), where is given by:
(q, , S) = {(q, 0S1), (q, A)}
(q, , A) = {(q, 1A0), (q, S), (q, )}
(q, 0, 0) = {(q, )}
(q, 1, 1) = {(q, )}
From PDA to CFG:
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
1. For all states p, G has productions S [q0Z0 p]
2. Let (q,a,X) = {(r, Y1Y2Yk)} where a or a = , k can be 0 or any
number and r1r2 rk are list of states. G has productions
[qXrk] a[rY1r1] [r1Y2r2] [rk-1Ykrk]
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:
Equivalent productions are:
S [qZq]
[qZq] i[qXq][qZq]
Dept of ISE,SJBIT
72
10CS56
[qXq] e
[qZq]
If [qZq] is renamed to A and [qXq] is renamed to B, then the CFG can be defined by:
G = ({S, A, B}, {i, e}, {SA, AiBA | , B e}, S)
Example:
Convert PDA to CFG. PDA is given by P = ({p,q}, {0,1}, {X,Z}, , q, Z)), Transition
function is defined by:
73
10CS56
5.4:Deterministic PDA
NPDA provides non-determinism to PDA. Deterministic PDAs (DPDA) are very useful
for use in programming languages. For example Parsers used in YACC are DPDAs.
Definition:
A PDA P= (Q, , , , q0, Z0, F) is deterministic if and only if,
1.(q,a,X) has at most one member for qQ, a or a= and X
2.If (q,a,X) is not empty for some a, then (q, ,X) must be empty
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.
Dept of ISE,SJBIT
74
10CS56
Example:
Construct DPDA which accepts the language L = {wcwR | w {a, b}*, c }.
The transition diagram for the DPDA is given in figure 2.
0, Z0/0Z0
1, Z0/1Z0
0,0/00
1,1/11
0,1/ 01
1,0/ 10
0,0/ H
1,1/ H
q0
c,0/0
c,1/1
c, Z0/ Z0
q1
H, Z0 / Z0
q2
Dept of ISE,SJBIT
75
10CS56
Dept of ISE,SJBIT
76
10CS56
ASSIGNMENT QUESTIONS
a. Convert to PDA, CFG with productions:
1. A aAA, A aS | bS | a
2. S SS | (S) |
3. S aAS | bAB | aB, A bBB | aS | a, B bA | a
b. Convert to CFG, PDA with transition function:
(q, 0, Z) = {(q, XZ)}
(q, 0, X) = {(q, XX)}
(q, , X) = {(p, )}
(p, 1, X) = {(p, XX)}
Dept of ISE,SJBIT
77
10CS56
Dept of ISE,SJBIT
78
10CS56
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.
79
10CS56
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
1. Eliminating non generating symbols
2. Eliminating symbols that are non reachable
Elimination in the order of 1 followed by 2
D
80
10CS56
C xDy
If no edge reaching a variable X from Start
symbol, X is non reachable
Example
1. G= ({S,A}, {a}, {S a, A a},S)
S
Example
S AB | CA, B BC|AB, A a, C AB|b
1. Eliminate non generating symbols V1 = {A,C,S} P1 = {S CA, A a, C b }
2. Eliminate symbols that are non reachable
V2 = {A,C,S}
P2 = {S C
A, A a, C b
Exercises
Eliminate useless symbols from the grammar
1. P= {S aAa, A Sb|bCC, C abb, E aC}
2. P= {S aBa|BC, A aC|BCC,C a, B bcc, D E, E d }
3. P= {S aAa, A bBB, B ab, C aB }
4. P= {S aS|AB, A bA,BAA }
Eliminate - productions
Most theorems and methods about grammars G assume L(G) does not contain
Dept of ISE,SJBIT
81
10CS56
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
Step 3: The desired grammar consists of the original productions together with the
productions constructed in step 2, minus any productions of the form A
Example:
S ABA | BA | AA | AB | A | B
A aA | a
B bB | b
PROBLEM:
Dept of ISE,SJBIT
82
10CS56
83
10CS56
B bB | b
Remove unit productions
S ABA | BA | AA | AB | aA | a | bB | b
A aA | a
B bB | b
Example (2): S Aa | B, A a | bc | B, B A | bb
Solution Unit productions are
S B, A B, B A, A and B are derivable
Add productions from derivable and eliminate unit productions
S bb | a | bc
A a| bc | bb
B bb | a | bc
Example (3) : Eliminate useless symbols, - productions and unit productions from
S a | aA|B|C, A aB|, B aA, C cCD, D ddd
Soulution Eliminate - productions
Nullable = {A}
P1 = {S a|aA|B|C, A aB, B aA|a, C cCD, D ddd}
-- Eliminate unit productions
Unit productions: S B, S C Derivable variables:B & C
P2 = {S a|aA| cCD, A aB, B aA|a, C cCD, D ddd}
Eliminate useless symbols
After eliminate non generating symbols
P3 = {S a|aA, A aB, B aA|a, D oddd}
After eliminate symbols that are non reachable
S
Dept of ISE,SJBIT
84
10CS56
Simplified Grammar:
If you have to get a grammar without - productions, useless symbols and unit
productions, follow the sequence given below:
1. Eliminate - productions from G and obtain G1
2. Eliminate unit productions from G1 and obtain G2
3. Eliminate useless symbols from G2and obtain G3
Chomsky Normal Form (CNF)
Every nonempty CFL without , has a grammar with productions of the form
1. A --> BC, where A, B, C V
2. A --> a, where A V
and a T
Algorithm:
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 -->X1X2Xn 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 -->X1X2Xn, where n 3 and all Xis are
variables. Introduce new productions A -->X1C1,
C1-->X2C2, , Cn-2 -->Xn-1Xn to P1 and C1, C2, ,Cn-2 to V1
Example (4): Convert to CNF:
S -->aAD, A --> aB | bAB, B -->b, D -->d
Solution Step1: Simplify the grammar
already simplified
Step2a: Elimination of terminals on RHS
S -->aAD to S --> CaAD, Ca-->a
A -->aB to A --> CaB
A -->bAB to A --> CbAB, Cb-->b
Step2b: Reduce RHS with 2 variables
S --> CaAD to S --> CaC1, C1 -->AD
A --> CbAB to A --> CbC2, C2-->AB
Dept of ISE,SJBIT
85
10CS56
Dept of ISE,SJBIT
86
10CS56
is given in figure 1. Both leftmost derivation and rightmost derivation have same parse
tree because the grammar is unambiguous.
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.
Let L be a CFL. Then there exists a constant k 0 such that if z is any string in L such
87
10CS56
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.
Example parse tree:
For the above example S has repeated occurrences, and the parse tree is shown in figure
3. w = ab is the string generated by lower occurrence of S and vwx = aabb is the string
generated by upper occurrence of S. So here u=aa, v=a, w=ab, x=b, y=bb.
Cutting out t and replacing it with copy of T as many times to get a valid parse tree for
uviwxiy for i 1.
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.
Dept of ISE,SJBIT
88
10CS56
Example:
Show that L = {aibici | i 1} is not CFL
Solution:
Assume L is CFL. Choose an appropriate z = anbncn = uvwxy. Since |vwx| n then vwx
can either consists of
1. All as or all bs or all cs
2. Some as and some bs
3. Some bs and some cs
Case 1: vwx consists of all as
If z = a2b2c2 and u = , v = a, w = , x = a and y = b2c2 then, uv2wx2y will be
a4b2c2L
Case 2: vwx consists of some as and some bs
If z = a2b2c2 and u = a, v = a, w = , x = b, y = bc2, then uv2wx2y will be a3b3c2 L
Case 3: vwx consists of some bs and some cs
If z = a2b2c2 and u = a2b, v = b, w = c, x = , y = c, then uv2wx2y will be a2b3c2 L
If you consider any of the above 3 cases, uv2wx2y will not be having an equal number of
as, bs and cs. But Pumping Lemma says uv2wx2y L. Cant contradict the pumping
lemma! Our original assumption must be wrong. So L is not context-free.
Example:
Show that L = {ww |w {0, 1}*} is not CFL
Solution:
Dept of ISE,SJBIT
89
10CS56
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 = uvwx y, 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 0s: let vx consists of k 0s. 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.
Example: z = 03130313, vx = 02 then uwy = tt = 0130313, so first t = 0130 and second
t = 0213. Both ts are not same.
Suppose vwx consists of 1st block of 0s and first block of 1s: vx consists of only 0s
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.
Very similar explanations could be given for the cases of vwx consists of first block of
1s and vwx consists of 1st block of 1s and 2nd block of 0s. 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.
Dept of ISE,SJBIT
90
10CS56
Example:
Many operations on Context Free Languages (CFL) guarantee to produce CFL. A few do
not produce CFL. Closure properties consider operations on CFL that are guaranteed to
produce a CFL. The CFLs are closed under substitution, union, concatenation, closure
(star), reversal, homomorphism and inverse homomorphism. CFLs are not closed under
intersection (but the intersection of a CFL and a regular language is always a CFL),
complementation, and set-difference.
I.
Substitution:
By substitution operation, each symbol in the strings of one language is replaced by an
entire CFL language
.
Example:
S(0) = {anbn| n 1}, S(1)={aa,bb} is a substitution on alphabet ={0, 1}.
Theorem:
If a substitution s assigns a CFL to every symbol in the alphabet of a CFL L, then s(L) is
a CFL.
Dept of ISE,SJBIT
91
10CS56
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
x V = V Va
x T= union of Tas all for a
x
x
x
P consists of
o
o
o All productions in any Pa for a
o
o
o
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 Ss to S0 and S1, respectively. Rename second A to B.
Resulting grammars are:
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
i s:
S S0SS1 | S0S1
S0 aS0b | A; A aA | ab
S1abB; B c |
II.
Application of substitution:
92
10CS56
Dept of ISE,SJBIT
93
10CS56
Closure under
IV.
Reversal:
Intersection:
Dept of ISE,SJBIT
94
10CS56
Intersection of
a. CFL and Regular Language:
Theorem: If L is CFL and R is a regular language, then L R is a CFL.
Accept/
FA
AND
Reject
PDA
Stack
Proof:
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
x Q = (Qp X QA)
x qo = (qp, qA)
x F = (FPX FA)
x 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.
CFL and RL properties:
Theorem: The following are true about CFLs L, L1, and L2, and a regular language R.
1. Closure of CFLs under set-difference with a regular language.
2.
ie
1. L - R is a CFL.
Proof:
Dept of ISE,SJBIT
95
10CS56
Dept of ISE,SJBIT
96
10CS56
Assignment questions
1.Using pumping lemma for CFL prove that below languages are not context free
1. {0p | p is a prime}
2. {anbnci | i n}
Dept of ISE,SJBIT
97
10CS56
Dept of ISE,SJBIT
98
10CS56
R: Right
10101111110
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 tapes cells, and other cells contain blank symbols.
Some of the characteristics of a Turing machine are:
1. The symbols can be both read from the tape and written on it.
2. The TM head can move in either directions Left or Right.
3. The tape is of infinite length
4. The special states, Halting states and Accepting states, take immediate effect.
Solved examples:
TM Example 1:
Dept of ISE,SJBIT
99
10CS56
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.
Ex: 5 (11111) 3 (111) = 2 (11)
#11111b1110000..
#___11b___000
a) Stamp out the first 1 of x and seek the first 1 of y.
(S0, 1)
(S0, b)
(S1, 1)
(S1, b)
(S1, _, R)
(h, b, STOP)
(S1, 1, R)
(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)
(S2,_)
(S2, 0)
(S3, _, L)
(S2, _, R)
(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,b)
(S3, _, L)
(S4, b, L)
Dept of ISE,SJBIT
100
(S4, 1)
(S4, _)
(S4, #)
10CS56
(S4, 1, L)
(S0, _, R)
(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,b)
(S6, 1)
(S6, _)
(S5, _, L)
(S6, b, L)
(S6, 1, L)
(h, 1, STOP)
Solved examples:
TM Example 1: Design a Turing Machine to recognize 0n1n2n
ex: #000111222_ _ _ _ _.
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, 1
S
2,1
S
1 , 0,R
S
2 ,Y
,R
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
S
3 , 1, L
S
3, Y
S
3, 0
S
3, X
S
3 ,Y
,L
S
3, 0 , L
S
0 ,X
,R
Dept of ISE,SJBIT
101
10CS56
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
S
4 ,Z
S
4,
S
4 ,Y
,R
S
4 ,Y
,R
S
4 ,Z
,R
S
A,
,S
TOP
S4 = Seeking blank
These are the transitions that result in halting states.
S
4,1
h, 1 , S
TOP
S
4, 2
h, 2 , S
TOP
S
4,
S
A,
,S
TOP
S
0,1
S
0, 2
h, 1 , S
TOP
h, 2 , S
TOP
S
1, 2
h, 2 , S
TOP
S
2,
h, , STOP
S0 , 0
S1 , , R
S0 , 1
S
2,
,R
S1 ,
S3 , 1
S2 ,
S5 , 0
Dept of ISE,SJBIT
S3 , , L
h, 1 , S
TOP
S5 , , L
h, 0 , S
TOP
102
10CS56
Step 2: If the last character is 0/1 accordingly, then move left until a blank is reached to
start the process again.
S3 , 0
S4 , , L
S4 , 1
S4 , 0
S4 , 1 , L
S4 , 0 , L
S4 ,
S0 , , R
S5 , 1
S6 , , L
S6 , 1
S6 , 1 , L
S6 , 0 S6 , 0 , L
S6 , S0 , , 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.
S
3,
S
A,
,S
TOP
S
5,
SA, , STOP
S
0,
SA, , STOP
The sequence of events for the above given input are as follows:
#s010101_ _ _
#_s20101_ _ _
#_0s2101_ _ _
....
#_0101s5_ _ _
#_010s6_ _ _ _
#_s60101_ _ _
#_s00101_ _ _
....
#_ _ _ _ s5 _ _ _ _ _ _
#_ _ _ _ sA _ _ _ _ _ _
Dept of ISE,SJBIT
103
10CS56
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:
TM: 0n1n2n
0-Stamper
1-Seeker
1-Stamper
2-Seeker
2-Stamper
0-Seeker
Load o Decode o Execute o Store
104
10CS56
$ : 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.
Sequence of actions in UTM:
Initially UTM is in the start state S0.
D ecode
E x ecute
Stor e
Track 1
0 1 1 0 1 0 1 0 0
0 0 1 1 1 1 1 1 0
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.
Dept of ISE,SJBIT
105
10CS56
TM = STM:
For S moves of the STM, do the following:
1.Move right,
2.Move back left without changing the tape
3.STM: (s,a) |-- (s,b,S)
TM: (s,a) |-- (s, b, R)
(s,*) |-- (s,*,L)
2-way Infinite Turing Machine
In a 2-way infinite TM (2TM), the tape is infinite on both sides.
There is no # that delimits the left end of the tape.
Equivalence of 2TMs and TMs
2TM = TM:
Just dont use the left part of the tape
TM = 2TM:
Simulate a 2-way infinite tape on a one-way infinite tape
Dept of ISE,SJBIT
106
10CS56
-6 -5 -4 -3 -2 -1 0 1 2 3 4 5 6
0 1 1 2 2 3 3 4 4 5 5
Multi-tape Turing Machines
A multi-tape TM (MTM) utilizes many tapes.
0 1 2 3 4 5 6 7
0 1 2 3 4 5 6 7
0 1 2 3 4 5 6 7
TM
A0 B0 C0 A1 B1 C1 A2 B2 C2 A3 B3 ..
Dept of ISE,SJBIT
107
10CS56
Non-deterministic TM
A non-deterministic TM (NTM) is defined as:
NTM = <S, T, s0, , H>
where : S x T 2SxTx{L,R}
Ex: (s2,a) {(s3,b,L) (s4,a,R)}
Equivalence of NTMs and TMs
A concurrent view of an NTM:
(s2,a) {(s3,b,L) (s4,a,R)}
Dept of ISE,SJBIT
108
10CS56
Unit-8:Undesirability
8.1: A language that is not recursively enumerable
8.2: a un decidable problem that is RE
8.3: Posts correspondence problem
8.4: other undecidable problem
Dept of ISE,SJBIT
109
10CS56
Input
Accept
Accept
Rejec
t
Rejec
t
Complements of RE Languages
Theorem: If both a language L and its complement L are RE, L is recursive.
Proof: Let M1 and M2 be TM for L and L respectively. We can construct a TM
M from M1 and M2 for L that always halt as follows:
In p u t
M1
Accept
M2
Accept
Accept
Reject
A Non-recursive RE Language
Dept of ISE,SJBIT
110
10CS56
Ld
We will now
look at an
example in
this region.
Recursive
Recursively
Enumerable (RE)
Non-recursively
Enumerable (Non-RE)
A Non-recursive RE Language
Recall that we can encode each TM uniquely as a binary number and enumerate
all TMs as T1, T2, , Tk, where the encoded value of the kth TM, i.e., Tk, is
k.
Consider the language Lu:
Lu = {(k, w) | Tk accepts input w}
This is called the universal language.
Universal Language
Note that designing a TM to recognize Lu is the same as solving the problem of
given k and w, decide whether Tk accepts w as its input.
We are going to show that Lu is RE but non-recursive, i.e., Lu can be accepted by
a TM, but there is no TM for Lu that always halt.
Dept of ISE,SJBIT
111
10CS56
separator
(k, w)
i.e., k1111110w
Tk
Accept
Accept
Dept of ISE,SJBIT
112
10CS56
Universal Language
Since there is a TM that accepts Lu, Lu is
RE. We are going to show that Lu is nonrecursive.
If Lu is recursive, there is a TM M for Lu
that always halt. Then, we can construct a
TM M for Ld as follows:
k
Copy
k1111110k
Accept
Reject
Reject
Accept
A Non-recursive RE Language
Since we have already shown that Ld is non-recursively enumerable, so M does
not exist and there is no such M.
Therefore the universal language is recursively enumerable but non-recursive.
Halting Problem
Consider the halting problem:
Given (k,w), determine if Tk halts on w.
Its corresponding language is:
Lh = { (k, w) | Tk halts on input w}
The halting problem is also undecidable, i.e., Lh is non-recursive. To show this,
we can make use of the universal language problem.
We want to show that if the halting problem can be solved (decidable), the
universal language problem can also be solved.
So we will try to reduce an instance (a particular problem) in Lu to an instance
in Lh in such a way that if we know the answer for the latter, we will know the
answer for the former.
Class Discussion
Consider a particular instance (k,w) in Lu, i.e., we want to determine if Tk will
accept w. Construct an instance I=(k,w) in Lh from (k,w) so that if we know
whether Tk will halt on w, we will know whether Tk will accept w.
Halting Problem
Therefore, if we have a method to solve the halting problem, we can also solve
the universal language problem. (Since for any particular instance I of the
universal language problem, we can construct an instance of the halting problem,
solve it and get the answer for I.) However, since the universal problem is
undecidable, we can conclude that the halting problem is also undecidable.
Modified Post Correspondence Problem
Dept of ISE,SJBIT
113
10CS56
We have seen an undecidable problem, that is, given a Turing machine M and an
input w, determine whether M will accept w (universal language problem).
We will study another undecidable problem that is not related to Turing machine
directly.
Given two lists A and B:
A = w1, w2, , wk B = x1, x2, , xk
The problem is to determine if there is a sequence of one or more integers i1, i2,
, im such that:
w1wi1wi2wim = x1xi1xi2xim
(wi, xi) is called a corresponding pair.
Example
A
B
xi
i
wi
11
1
1
1
111
2
0111
10
3
4
10
0
This MPCP instance has a solution: 3, 2, 2, 4:
w1w3w2w2w4 = x1x3x2x2x4 = 1101111110
Dept of ISE,SJBIT
114
10CS56
Undecidability of PCP
To show that MPCP is undecidable, we will
reduce the universal language problem (ULP) to
MPCP:
Universal
Language
Problem (ULP)
A mapping
MPCP
Dept of ISE,SJBIT
115
10CS56
MPCP instance
Construct an
MPCP instance
Two lists:
A an d B
Dept of ISE,SJBIT
116
10CS56
0/0, L
q1
1/0, R
G(q0,1)=(q0,0,R)
G(q0,0)=(q1,0,L)
Consider input w=110.
Dept of ISE,SJBIT
117
10CS56
q1
q1
q1
118
8.
q1## #
Example of ULP to MPCP
16. 1q10
10CS56
q1
List B
#q0101#
0q0
q 1 00
q 1 10
#
0
1
#
List A
9. 0q1
10. 1q1
11. q10
12. q11
13. 0q11
14. 1q10
15. 0q10
16. 1q10
List B
q1
q1
q1
q1
q1
q1
q1
q1
119
10CS56
Using this mapping, we can prove that the original ULP instance has a solution if
and only if the mapped MPCP instance has a solution. (Textbook, p.402, Theorem
9.19)
Dept of ISE,SJBIT
120
10CS56
Example:
A = 1; 10111; 10
B = 111; 10; 0
Dept of ISE,SJBIT
121
10CS56
122
10CS56
Input
Accept
Accept
Rejec
t
Rejec
t
Complements of RE Languages
Theorem: If both a language L and its complement L are RE, L is recursive.
Proof: Let M1 and M2 be TM for L and L respectively. We can construct a TM
M from M1 and M2 for L that always halt as follows:
In p u t
Dept of ISE,SJBIT
M1
Accept
M2
Accept
Accept
Reject
123
10CS56
ASSIGNMENT QUESTIONS
Unit 8:
1. Explain briefly the following Halting problem
2. What is Posts Correspondence problem
3. P.t If L is a recursive language, L is also recursive.
4. define undecidability, decidability
Dept of ISE,SJBIT
124