Lectur Notes TOC
Lectur Notes TOC
What is TOC??
In theoretical computer science, the theory of computation is the branch that deals with
whether and how efficiently problems can be solved on a model of computation, using an
algorithm. The field is divided into three major branches: automata theory, computability theory
and computational complexity theory.
In order to perform a rigorous study of computation, computer scientists work with a
mathematical abstraction of computers called a model of computation. There are several models
in use, but the most commonly examined is the Turing machine.
Automata theory
In theoretical computer science, automata theory is the study of abstract machines (or more
appropriately, abstract 'mathematical' machines or systems) and the computational problems that
can be solved using these machines. These abstract machines are called automata.
This automaton consists of
• states (represented in the figure by circles),
• and transitions (represented by arrows).
As the automaton sees a symbol of input, it makes a transition (or jump) to another state,
according to its transition function (which takes the current state and the recent symbol as its
inputs).
Uses of Automata: compiler design and parsing.
De Morgan’s Law:
(AUB)’ =A’ ∩ B’
(A∩B)’ = A’ U B’
Double compliment
(A’)’ =A
A ∩ A’ = Φ
Logic relations:
a b = > 7a U b
7(a∩b)=7a U 7b
Relations:
Let a and b be two sets a relation R contains aXb.
Relations used in TOC:
Reflexive: a = a
Symmetric: aRb = > bRa
Transition: aRb, bRc = > aRc
If a given relation is reflexive, symmentric and transitive then the relation is called equivalence
relation.
Deductive proof: Consists of sequence of statements whose truth lead us from some initial
statement called the hypothesis or the give statement to a conclusion statement.
For any sets a,b,c if a∩b = Φ and c is a subset of b the prove that a∩c =Φ
Given : a∩b=Φ and c subset b
Assume: a∩c Φ
Then
= > a∩b Φ = > a∩c=Φ(i.e., the assumption is wrong)
Proof by mathematical Induction:
Languages :
The languages we consider for our discussion is an abstraction of natural languages. That is,
our focus here is on formal languages that need precise and formal definitions. Programming
languages belong to this category.
Symbols :
Symbols are indivisible objects or entity that cannot be defined. That is, symbols are the atoms
of the world of languages. A symbol is any single object such as , a, 0, 1, #,
begin, or do.
Alphabets :
An alphabet is a finite, nonempty set of symbols. The alphabet of a language is normally denoted
by . When more than one alphabets are considered for discussion, then
subscripts may be used (e.g. etc) or sometimes other symbol like G may also be
introduced.
Example :
It is not the case that a string over some alphabet should contain all the symbols from the alpha-
bet. For example, the string cc over the alphabet { a, b, c } does not contain the symbols a and b.
Hence, it is true that a string over an alphabet is also a string over any superset of that alphabet.
Length of a string :
The number of symbols in a string w is called its length, denoted by |w|.
Convention : We will use small case letters towards the beginning of the English alphabet
to denote symbols of an alphabet and small case letters towards the end to
denote strings over an alphabet. That is,
(symbols) and
are strings.
Example : Consider the string 011 over the binary alphabet. All the prefixes, suffixes and
substrings of this string are listed below.
Note that x is a prefix (suffix or substring) to x, for any string x and is a prefix (suffix or
substring) to any string.
In the above example, all prefixes except 011 are proper prefixes.
Powers of Strings : For any string x and integer , we use to denote the string
formed by sequentially concatenating n copies of x. We can also give an inductive
definition of as follows:
= e, if n = 0 ; otherwise
Example : If x = 011, then = 011011011, = 011 and
Powers of Alphabets :
We write (for some integer k) to denote the set of strings of length k with symbols
from . In other words,
= { w | w is a string over and | w | = k}. Hence, for any alphabet, denotes the set
of all strings of length zero. That is, = { e }. For the binary alphabet { 0, 1 } we have
the following.
The set contains all the strings that can be generated by iteratively concatenating sym-
bols from any number of times.
Example : If = { a, b }, then = { , a, b, aa, ab, ba, bb, aaa, aab, aba, abb, baa, …}.
Please note that if , then that is . It may look odd that one can proceed
from the empty set to a non-empty set by iterated concatenation. But there is a reason for this
and we accept this convention
The set of all nonempty strings over an alphabet is denoted by . That is,
Note that is infinite. It contains no infinite strings but strings of arbitrary lengths.
Reversal :
For any string the reversal of the string is .
Example :
Convention : Capital letters A, B, C, L, etc. with or without subscripts are normally used to
denote languages.
Set operations on languages : Since languages are set of strings we can apply set operations to
languages. Here are some simple examples (though there is nothing new in it).
Union : A string
iff or
Example : { 0, 11, 01, 011 } { 1, 01, 110 } = { 0, 11, 01, 011, 111 }
Complement : Usually, is the universe that a complement is taken with respect to.
Thus for a language L, the complement is L(bar) = { | }.
Example : Let L = { x | |x| is even }. Then its complement is the language { | |x| is
odd }.
Similarly we can define other usual set operations on languages like relative com-
plement, symmetric difference, etc.
Reversal of a language :
The reversal of a language L, denoted as , is defined as: .
Example :
Note that ,
1. in general.
2.
3.
Iterated concatenation of languages : Since we can concatenate two languages, we also repeat
this to concatenate any number of languages. Or we can concatenate a language with itself any
number of times. The operation denotes the concatenation of
L with itself n times. This is defined formally as follows:
and so on.
= ( Union n in N )
(Generates) (Recognizes)
Grammar Language Automata
An automata is an abstract computing device (or machine). There are different varities of such
abstract machines (also called models of computation) which can be defined mathematically.
• Every automaton consists of some essential features as in real computers. It has a mech-
anism for reading input. The input is assumed to be a sequence of symbols over a given
alphabet and is placed on an input tape(or written on an input file). The simpler automata
can only read the input one symbol at a time from left to right but not change. Powerful
versions can both read (from left to right or right to left) and change the input.
• The automaton can produce output of some form. If the output in response to an input
string is binary (say, accept or reject), then it is called an accepter. If it produces an out-
put sequence in response to an input sequence, then it is called a transducer(or automaton
with output).
• The automaton may have a temporary storage, consisting of an unlimited number of
cells, each capable of holding a symbol from an alphabet ( whcih may be different from
the input alphabet). The automaton can both read and change the contents of the storage
cells in the temporary storage. The accusing capability of this storage varies depending
on the type of the storage.
• The most important feature of the automaton is its control unit, which can be in any
one of a finite number of interval states at any point. It can change state in some de-
fined manner determined by a transition function.
Automata (singular : automation) are a particularly simple, but useful, model of compu-
tation. They were initially proposed as a simple model for the behavior of neurons.
Let us first give some intuitive idea about a state of a system and state transitions before
describing finite automata.
Informally, a state of a system is an instantaneous description of that system which gives all
relevant information necessary to determine how the system can evolve from that point on.
Transitions are changes of states that can occur spontaneously or in response to inputs to the
states. Though transitions usually take time, we assume that state transitions are instantaneous
(which is an abstraction).
Some examples of state transition systems are: digital systems, vending machines, etc. A system
containing only a finite number of states and transitions among them is called
a finite-state transition system.
Informally, a DFA (Deterministic Finite State Automaton) is a simple machine that reads an in-
put string -- one symbol at a time -- and then, after the input has been completely read, decides
whether to accept or reject the input. As the symbols are read from the tape, the automaton can
change its state, to reflect how it reacts to what it has seen so far. A machine for which a deter-
ministic code can be formulated, and if there is only one unique way to formulate the code, then
the machine is called deterministic finite automata.
1. A tape to hold the input string. The tape is divided into a finite number of cells. Each
cell holds a symbol from .
2. A tape head for reading symbols from the tape
3. A control , which itself consists of 3 things:
o finite number of states that the machine is allowed to be in (zero or more states
are designated as accept or final states),
o a current state, initially set to a start state,
o a state transition function for changing the current state.
An automaton processes a string on the tape by repeating the following actions until the tape
head has traversed the entire string:
1. The tape head reads the current tape cell and sends the symbol s found there to the
control. Then the tape head moves to the next cell.
2. he control takes s and the current state and consults the state transition function to get
the next state, which becomes the new current state.
Once the entire string has been processed, the state in which the automation enters is examined.
If it is an accept state , the input string is accepted ; otherwise, the string is rejected . Summariz-
ing all the above we can formulate the following formal definition:
Acceptance of Strings :
The language accepted or recognized by a DFA M is the set of all strings accepted by M , and
That is, is the state the automation reaches when it starts from the state q and finish
processing the string w. Formally, we can give an inductive definition as follows:
The language of the DFA M is the set of strings that can take the start state to one of the
accepting states i.e.
L(M) = { | M accepts w }
={ | }
Example 1 :
It is a formal description of a DFA. But it is hard to comprehend. For ex. The language of the
DFA is any string over { 0, 1} having at least one 1
We can describe the same DFA by transition table or state transition diagram as follow-
ing:
Transition Table :
0 1
It is easy to comprehend the transition diagram.
Explanation : We cannot reach find state w/0 or in the i/p string. There can be any no.
of 0's at the beginning. ( The self-loop at on label 0 indicates it ). Similarly there
can be any no. of 0's & 1's in any order at the end of the string.
Transition table :
It is basically a tabular representation of the transition function that takes two arguments (a state
and a symbol) and returns a value (the “next state”).
0 1
A state transition diagram or simply a transition diagram is a directed graph which can be
constructed as follows:
We construct REs from primitive constituents (basic elements) by repeatedly applying certain
recursive rules as given below. (In the definition)
Definition : Let S be an alphabet. The regular expressions are defined recursively as follows.
Basis :
i) is a RE
ii) is a RE
iii) , a is RE.
Recursive Step :
If
and are REs over, then so are
i)
ii)
iii)
iv)
Closure : r is RE over only if it can be obtained from the basis elements (Primitive REs)
by a finite no of applications of the recursive step (given in 2).
Example : Let = { 0,1,2 }. Then (0+21)*(1+ F ) is a RE, because we can construct this
expression by applying the above rules as given in the following step.
Steps RE Constructed Rule Used
1 1 Rule 1(iii)
2 Rule 1(i)
3 1+ Rule 2(i) & Results of Step 1, 2
4 (1+ ) Rule 2(iv) & Step 3
5 2 1(iii)
6 1 1(iii)
7 21 2(ii), 5, 6
8 0 1(iii)
9 0+21 2(i), 7, 8
10 (0+21) 2(iv), 9
11 (0+21)* 2(iii), 10
12 (0+21)* 2(ii), 4, 11
Language described by REs : Each describes a language (or a language is associated
with every RE). We will see later that REs are used to attribute regular languages.
Notation : If r is a RE over some alphabet then L(r) is the language associate with r . We can
define the language L(r) associated with (or described by) a REs as follows.
= L(0)*L(0) ∪ L(1)
={ , 0,00,000,........} {0,1}
Precedence Rule
Consider the RE ab + c. The language described by the RE can be thought of either
L(a)L(b+c) or L(ab) L(c) as provided by the rules (of languages described by REs)
given already. But these two represents two different languages lending to ambiguity.
To remove this ambiguity we can either
2) Use a set of precedence rules to evaluate the options of REs in some order. Like
other algebras mod in mathematics.
i) The star operator precedes concatenation and concatenation precedes union (+)
operator.
ii) It is also important to note that concatenation & union (+) operators are associative
and union operation is commutative.
Using these precedence rule, we find that the RE ab+c represents the language L(ab)
L(c) i.e. it should be grouped as ((ab)+c).
We can, of course change the order of precedence by using parentheses. For example,
the language represented by the RE a(b+c) is L(a)L(b+c).
Example : The RE ab*+b is grouped as ((a(b*))+b) which describes the language
L(a)(L(b))* L(b)
Example : It is easy to see that the RE (0+1)*(0+11) represents the language of all
strings over {0,1} which are either ended with 0 or 11.
Example : The regular expression r =(00)*(11)*1 denotes the set of all strings with an
even number of 0's followed by an odd number of 1's i.e.
Note : The notation is used to represent the RE rr*. Similarly, represents the RE
rr, denotes r, and so on.
Exercise : Give a RE r over {0,1} s.t. L(r)={ has at least one pair of
consecutive 1's}
Solution : Every string in L(r) must contain 00 somewhere, but what comes before and
what goes before is completely arbitrary. Considering these observations we can write
the REs as (0+1)*11(0+1)*.
Example : Consider the RE 0*10*10*. It is not difficult to see that this RE describes the
set of strings over {0,1} that contains exactly two 1's. The presence of two 1's in the RE
and any no of 0's before, between and after the 1's ensure it.
Example : Consider the language of strings over {0,1} containing two or more 1's.
Solution : There must be at least two 1's in the RE somewhere and what comes before,
between, and after is completely arbitrary. Hence we can write the RE as
(0+1)*1(0+1)*1(0+1)*. But following two REs also represent the same language, each
ensuring presence of least two 1's somewhere in the string
i) 0*10*1(0+1)*
ii) (0+1)*10*10*
Alternative Solution :
The language can be viewed as repetitions of the strings 0 and 01. Hence get the RE as
r = (0+10)*(1+ ).This is a shorter expression but represents the same language.
Recall that, language that is accepted by some FAs are known as Regular language.
The two concepts : REs and Regular language are essentially same i.e. (for) every
regular language can be developed by (there is) a RE, and for every RE there is a
Regular Langauge. This fact is rather suprising, because RE approach to describing
language is fundamentally differnet from the FA approach. But REs and FA are
equivalent in their descriptive power. We can put this fact in the focus of the following
Theorem.
This Theorem has two directions, and are stated & proved below as a separate lemma
RE to FA :
Proof : To prove the lemma, we apply structured index on the expression r. First, we
show how to construct FA for the basis elements: , and for any . Then we show
how to combine these Finite Automata into Complex Automata that accept the Union,
Concatenation, Kleen Closure of the languages accepted by the original smaller
automata.
Use of NFAs is helpful in the case i.e. we construct NFAs for every REs which are
represented by transition diagram only.
Basis :
Since the start state is also the accept step, and there is no any transition defined, it will
accept the only string and nothing else.
• Case (iii) : r = a for some . Then L(r) = {a}, and the following NFA N
accepts L(r).
Induction :
Assume that the start of the theorem is true for REs and . Hence we can assume
that we have automata and that accepts languages denoted by REs and ,
respectively i.e. and . The FAs are represented
schematically as shown below.
Each has an initial state and a final state. There are four cases to consider.
Create a new (initial) start state and give - transition to the initial state of and
.This is the initial state of .
• Create a final state and give -transition from the two final state of and
. is the only final state of and final state of and will be ordinary
states in .
• All the state of and are also state of .
• All the moves of and are also moves of . [ Formal Construction]
= by following transition of
Starts at initial state and enters the start state of either or follwoing the
transition i.e. without consuming any input. WLOG, assume that, it enters the start state
of . From this point onward it has to follow only the transition of to enter the final
state of , because this is the only way to enter the final state of M by following the e-
transition.(Which is the last transition & no input is taken at hte transition). Hence the
whole input w is considered while traversing from the start state of to the final state
of . Therefore must accept .
Say, or .
WLOG, say
Therefore when process the string w , it starts at the initial state and enters the final
state when w consumed totally, by following its transition. Then also accepts w, by
starting at state and taking -transition enters the start state of -follows the moves
of to enter the final state of consuming input w thus takes -transition to .
Hence proved
Case(iv) : Let =( ). Then the FA is also the FA for ( ), since the use of
parentheses does not change the language denoted by the expression
• - transitions.
• In contrast to a DFA, the next state is not necessarily uniquely determined by the
current state and input symbol in case of an NFA. (Recall that, in a DFA there is
exactly one start state and exactly one transition out of every state for each
symbol in ).
• This means that - in a state q and with input symbol a - there could be one, more
than one or zero next state to go, i.e. the value of is a subset of Q. Thus
= which means that any one of could be the next
state.
• The zero next state case is a special one giving = , which means that
there is no next state on input symbol when the automata is in state q. In such a
case, we may think that the automata "hangs" and the input will be rejected.
- transitions :
In an -transition, the tape head doesn't do anything- it doesnot read and it doesnot
move. However, the state of the automata can be changed - that is can go to zero, one
or more states. This is written formally as implying that the next
state could by any one of w/o consuming the next input symbol.
Acceptance :
Informally, an NFA is said to accept its input if it is possible to start in some start state
and process , moving according to the transition rules and making choices along the
way whenever the next state is not uniquely defined, such that when is completely
processed (i.e. end of is reached), the automata is in an accept state. There may be
several possible paths through the automation in response to an input since the start
state is not determined and there are choices along the way because of multiple next
states. Some of these paths may lead to accpet states while others may not. The
automation is said to accept if at least one computation path on input starting from
at least one start state leads to an accept state- otherwise, the automation rejects input
. Alternatively, we can say that, is accepted iff there exists a path with label from
some start state to some accept state. Since there is no mechanism for determining
which state to start in or which of the possible next moves to take (including the -
transitions) in response to an input symbol we can think that the automation is having
some "guessing" power to chose the correct one in case the input is accepted
Example 1 : Consider the language L = { {0, 1}* | The 3rd symbol from the right is
1}. The following four-state automation accepts L.
The m/c is not deterministic since there are two transitions from state on input 1 and
no transition (zero transition) from on both 0 & 1.
For any string whose 3rd symbol from the right is a 1, there exists a sequence of legal
transitions leading from the start state q, to the accept state . But for any string
where 3rd symbol from the right is 0, there is no possible sequence of legal
tranisitons leading from and . Hence m/c accepts L. How does it accept any string
L?
From the discussion of the acceptance by an NFA, we can give the formal definition of a
language accepted by an NFA as follows :
given by .
That is, L(N) is the set of all strings w in such that contains at least one
accepting state.
Removing ϵ-transition:
- transitions do not increase the power of an NFA . That is, any - NFA ( NFA with
transition), we can always construct an equivalent NFA without -transitions. The
equivalent NFA must keep track where the NFA goes at every step during
computation. This can be done by adding extra transitions for removal of every -
transitions from the - NFA as follows.
We construct
i.e.
Basis : , then
But by definition of .
By definition of extension of
By inductions hypothesis.
Assuming that
By definition of
Since
If (and thus is not in F ), then with leads to an accepting state in N' iff it lead
to an accepting state in N ( by the construction of N' and N ).
Let . If w cannot lead to in N , then . (Since can add transitions to get an accept
state). So there is no harm in making an accept state in N'.
Transition Diagram
0 1
Transition diagram for ' for the equivalent NFA without - moves
0 1
Since the start state q0 must be final state in the equivalent NFA .
-closures:
The concept used in the above construction can be made more formal by defining the
-closure for a state (or a set of states). The idea of -closure is that, when moving
from a state p to a state q (or from a set of states Si to a set of states Sj ) an input ,
we need to take account of all -moves that could be made after the transition.
Formally, for a given state q,
-closures:
-closures:
So, in the construction of equivalent NFA N' without -transition from any NFA with
It is worth noting that a DFA is a special type of NFA and hence the class of languages
accepted by DFA s is a subset of the class of languages accepted by NFA s.
Surprisingly, these two classes are in fact equal. NFA s appeared to have more power
than DFA s because of generality enjoyed in terms of -transition and multiple next
states. But they are no more powerful than DFA s in terms of the languages they
accept.
Proof: A DFA is just a special type of an NFA . In a DFA , the transition functions is
defined from whereas in case of an NFA it is defined from and
be a DFA . We construct an equivalent NFA as
follows.
i. e
If and
Then it is clear from the above construction of N that there is a sequence of states (in N)
Hence ,
Given any NFA we need to construct as equivalent DFA i.e. the DFA need to simulate
the behaviour of the NFA . For this, the DFA have to keep track of all the states where
the NFA could be in at every step during processing a given input string.
There are possible subsets of states for any NFA with n states. Every subset
corresponds to one of the possibilities that the equivalent DFA must keep track of. Thus,
the equivalent DFA will have states.
The formal constructions of an equivalent DFA for any NFA is given below. We first
consider an NFA without transitions and then we incorporate the affects of
transitions later.
as follows
i.e.
where
That is,
To show that this construction works we need to show that L(D)=L(N) i.e.
Or,
So, by definition.
Inductive step
Now,
Now, given any NFA with -transition, we can first construct an equivalent NFA without
-transition and then use the above construction process to construct an equivalent
DFA , thus, proving the equivalence of NFA s and DFA s..
It is also possible to construct an equivalent DFA directly from any given NFA with -
transition by integrating the concept of -closure in the above construction.
- closure :
In the equivalent DFA , at every step, we need to modify the transition functions to
keep track of all the states where the NFA can go on -transitions. This is done by
Besides this the initial state of the DFA D has to be modified to keep track of all the
states that can be reached from the initial state of NFA on zero or more -transitions.
This can be done by changing the initial state to -closure ( ).
It is clear that, at every step in the processing of an input string by the DFA D , it enters
a state that corresponds to the subset of states that the NFA N could be in at that
particular point. This has been proved in the constructions of an equivalent NFA for any
-NFA
If the number of states in the NFA is n , then there are states in the DFA . That is,
each state in the DFA is a subset of state of the NFA .
But, it is important to note that most of these states are inaccessible from the start
state and hence can be removed from the DFA without changing the accepted
language. Thus, in fact, the number of states in the equivalent DFA would be much less
than .
Example : Consider the NFA given below.
0 1
{ }
The final states are all those subsets that contains (since
in the NFA).
0 1
1. If is the start state of the NFA, then make - closure ( ) the start state of the
equivalent DFA . This is definitely the only accessible state.
2. If we have already computed a set of states which are accessible. Then
Following these steps in the above example, we get the transition table given below
MODULE-II
We construct REs from primitive constituents (basic elements) by repeatedly applying certain recursive rules as
given below. (In the definition)
Definition : Let S be an alphabet. The regular expressions are defined recursively as follows.
Basis :
i) is a RE
ii) is a RE
iii) , a is RE.
Recursive Step :
i)
ii)
iii)
iv)
Closure : r is RE over only if it can be obtained from the basis elements (Primitive REs) by a finite no of
applications of the recursive step (given in 2).
Example : Let = { 0,1,2 }. Then (0+21)*(1+ F ) is a RE, because we can construct this expression by
applying the above rules as given in the following step.
Steps RE Constructed Rule Used
1 1 Rule 1(iii)
2 Rule 1(i)
Notation : If r is a RE over some alphabet then L(r) is the language associate with r . We can define the
language L(r) associated with (or described by) a REs as follows.
= L(0)*L(0) ∪ L(1)
={ , 0,00,000,........} {0,1}
Precedence Rule
Consider the RE ab + c. The language described by the RE can be thought of either L(a)L(b+c) or
L(ab) L(c) as provided by the rules (of languages described by REs) given already. But these two
represents two different languages lending to ambiguity. To remove this ambiguity we can either
2) Use a set of precedence rules to evaluate the options of REs in some order. Like other algebras mod in
mathematics.
i) The star operator precedes concatenation and concatenation precedes union (+) operator.
ii) It is also important to note that concatenation & union (+) operators are associative and union operation is
commutative.
Using these precedence rule, we find that the RE ab+c represents the language L(ab) L(c) i.e. it should be
grouped as ((ab)+c).
We can, of course change the order of precedence by using parentheses. For example, the language
represented by the RE a(b+c) is L(a)L(b+c).
Example : The RE ab*+b is grouped as ((a(b*))+b) which describes the language L(a)(L(b))* L(b)
Example : It is easy to see that the RE (0+1)*(0+11) represents the language of all strings over {0,1} which are
either ended with 0 or 11.
Example : The regular expression r =(00)*(11)*1 denotes the set of all strings with an even number of 0's
Note : The notation is used to represent the RE rr*. Similarly, represents the RE rr, denotes r,
and so on.
Exercise : Give a RE r over {0,1} s.t. L(r)={ has at least one pair of consecutive 1's}
Solution : Every string in L(r) must contain 00 somewhere, but what comes before and what goes before is
completely arbitrary. Considering these observations we can write the REs as (0+1)*11(0+1)*.
Example : Considering the above example it becomes clean that the RE (0+1)*11(0+1)*+(0+1)*00(0+1)*
represents the set of string over {0,1} that contains the substring 11 or 00.
Example : Consider the RE 0*10*10*. It is not difficult to see that this RE describes the set of strings over {0,1}
that contains exactly two 1's. The presence of two 1's in the RE and any no of 0's before, between and after the
1's ensure it.
Example : Consider the language of strings over {0,1} containing two or more 1's.
Solution : There must be at least two 1's in the RE somewhere and what comes before, between, and after is
completely arbitrary. Hence we can write the RE as (0+1)*1(0+1)*1(0+1)*. But following two REs also represent
the same language, each ensuring presence of least two 1's somewhere in the string
i) 0*10*1(0+1)*
ii) (0+1)*10*10*
Solution : Though it looks similar to ex ……., it is harder to construct to construct. We observer that, whenever
a 1 occurs, it must be immediately followed by a 0. This substring may be preceded & followed by any no of
0's. So the final RE must be a repetition of strings of the form: 00…0100….00 i.e. 0*100*. So it looks like the
RE is (0*100*)*. But in this case the strings ending in 1 or consisting of all 0's are not accounted for. Taking
these observations into consideration, the final RE is r = (0*100*)(1+ )+0*(1+ ).
Alternative Solution :
The language can be viewed as repetitions of the strings 0 and 01. Hence get the RE as r = (0+10)*(1+ ).This
is a shorter expression but represents the same language.
Regular Expression:
FA to regular expressions:
Lemma : If a language is regular, then there is a RE to describe it. i.e. if L = L(M) for some DFA M, then there
is a RE r such that L = L(r).
Notations : is a RE denoting the language which is the set of all strings w such that w is the label of a
path from state i to state j in M, and that path has no intermediate state whose number is
greater then k. ( i & j (begining and end pts) are not considered to be "intermediate" so i and /or j can be
greater than k )
Basis : k = 0, i.e. the paths must not have any intermediate state ( since all states are numbered 1 or
above). There are only two possible paths meeting the above condition :
Induction :
Assume that there exists a path from state i to state j such that there is no intermediate state whose number is
1. The path dose not go through the state k at all i.e. number of all the intermediate states are less than
k. So, the label of the path from state i to state j is tha language described by the RE .
2. The path goes through the state k at least once. The path may go from i to j and k may appear more
than once. We can break the into pieces as shown in the figure 7.
Figure 7
1. The first part from the state i to the state k which is the first recurence. In this path, all intermediate
states are less than k and it starts at iand ends at k. So the RE denotes the language of the
label of path.
2. The last part from the last occurence of the state k in the path to state j. In this path also, no
intermediate state is numbered greater than k. Hence the RE denoting the language of the label
of the path.
3. In the middle, for the first occurence of k to the last occurence of k , represents a loop which may be
taken zero times, once or any no of times. And all states between two consecutive k's are numbered
less than k.
Hence the label of the path of the part is denoted by the RE .The label of the path from state i to state
j is the concatenation of these 3 parts which is
Since either case 1 or case 2 may happen the labels of all paths from state i to j is denoted by the following RE
We can construct for all i, j {1,2,..., n} in increasing order of k starting with the basis k = 0 upto k = n
since depends only on expressions with a small superscript (and hence will be available). WLOG, assume
that state 1 is the start state and are the m final states where ji {1, 2, ... , n }, and
. According to the convention used, the language of the automatacan be denoted by the RE
Since is the set of all strings that starts at start state 1 and finishes at final state following the transition
of the FA with any value of the intermediate state (1, 2, ... , n) and hence accepted by the automata.
Regular Grammar:
A grammar is right-linear if each production has one of the following three forms:
• A cB ,
• A c,
• A
Where A, B ( with A = B allowed) and . A grammar G is left-linear if each production has once of
the following three forms.
A Bc , A c, A
Regular grammar and Finite Automata are equivalent as stated in the following theorem.
Theorem : A language L is regular iff it has a regular grammar. We use the following two lemmas to prove the
above theorem.
Let and .
N=Q, and
[ Note: If , then ]
By construction, the grammar G will have one production for each of the above transitions. Therefore, we have
the corresponding derivation.
Hence w L(g).
Conversely, if , then the derivation of w in G must have the form as given above. But,
then the construction of G from M implies that
is constructed as follows:
if
and , if .
Given any left-linear grammar G with production of the form , we can construct from it a right-
linear grammar by replacing every production of G of the form with
Putting the two lemmas and the discussions in the above paragraph together we get the proof of the theorem-
It is easy to see that G generates the language denoted by the regular expression (01)*0.
The construction of lemma 2 for this grammar produces the follwoing FA.
This FA accepts exactly (01)*1.
In this section, we examine some questions about CFLs we can answer. A CFL may be represented using a
CFG or PDA. But an algorithm that uses one representation can be made to work for the others, since we can
construct one from the other.
Testing Emptiness :
Proof : Given any CFL L, there is a CFG G to generate it. We can determine, using the construction described
in the context of elimination of useless symbols, whether the start symbol is useless. If so, then ;
otherwise not.
Testing Membership :
Given a PDA P for L, simulating the PDA on input string x doesnot quite work, because the PDA can grow its
stack indefinitely on input, and the process may never terminate, even if the PDA is deterministic.
determine whether and it can easily be done using the technique given in the context of elimination of
Hence, if the length of the input string x is n, then it takes exactly n steps to derive x ( provided x is in ).
Let the maximum number of productions for any nonterminal in is K. So at every step in derivation, there
are atmost k choices. We may try out all these choices, systematically., to derive the string x in . Since
there are atmost i.e. choices. This algorithms is of exponential time complexity. We now present an
efficient (polynomial time) membership algorithm.
Pumping Lemma:
Limitations of Finite Automata and Non regular Languages :
The class of languages recognized by FA s is strictly the regular set. There are certain languages which are
non regular i.e. cannot be recognized by any FA
In order to accept is language, we find that, an automaton seems to need to remember when passing the
center point between a's and b's how many a's it has seen so far. Because it would have to compare that with
the number of b's to either accept (when the two numbers are same) or reject (when they are not same) the
input string.
But the number of a's is not limited and may be much larger than the number of states since the string may be
arbitrarily long. So, the amount of information the automaton need to remember is unbounded.
A finite automaton cannot remember this with only finite memory (i.e. finite number of states). The fact that FA
s have finite memory imposes some limitations on the structure of the languages recognized. Inductively, we
can say that a language is regular only if in processing any string in this language, the information that has to
be remembered at any point is strictly limited. The argument given above to show that is non regular is
informal. We now present a formal method for showing that certain languages such as are non regular
Properties of CFL’s
Let . Then . All productions applied in their derivation are also in . Hence i.e.
Similarly, if , then
Thus .
Conversely, let . Then and the first step in this derivation must be either or
Since and are disjoint, the derivation must use the productions of only ( which are also in
So, , as claimed
Again, we assume that and are disjoint, and is a nonterminal not in or . we construct the CFG
We claim that
To prove it, we first assume that and . Then and . We can derive the string xy in
as shown below.
i.e. the first step in the derivation must see the rule . Again, since and are
disjoint and and , some string x will be generated from using productions in ( which are
Thus
Hence and .
This means that w can be divided into two parts x, y such that and . Thus .This
completes the proof
Theorem : If L is a CFL, then so is .
Proof : Let be the CFG generating L. Let us construct the CFG from G
where .
Let for any n >1 we can write where for . w can be generated by
using following steps.
First (n-1)-steps uses the production S SS producing the sentential form of n numbers of S 's. The
nonterminal S in the i-th position then generates using production in P ( which are also in )
It is also easy to see that G can generate the empty string, any string in L and any string for n >1 and
none other.
Hence
Proof : We prove it by giving a counter example. Consider the language .The following
CFG generates L1 and hence a CFL
The nonterminal X generates strings of the form and C generates strings of the form , .
These are the only types of strings generated by X and C. Hence, S generates .
Using similar reasoning, it can be shown that the following grammar and hence it is
also a CFL.
Hence proof.
Proof : Assume, for contradiction, that CFL's are closed under complementation. SInce, CFL's are also closed
under union, the language , where and are CFL's must be CFL. But by DeMorgan's law
This contradicts the already proved fact that CFL's are not closed under intersection.
But it can be shown that the CFL's are closed under intersection with a regular set.
where is defined as
contains iff
and contains
The idea is that M simulates the moves of P and D parallely on input w, and accepts w iff both P and D
accepts. That means, we want to show that
iff
and
Basic Case is n=0. Hence , and . For this case it is trivially true
Let
From the definition of and considering the n-th move of the PDA M above, we have
and
Hence and
If and , then and we got that if M accepts w, then both P and D accepts it.
We can show that converse, in a similar way. Hence is a CFL ( since it is accepted by a PDA M )
This property is useful in showing that certain languages are not context-free.
Example : Consider the language
iff .
The proof is by induction on n, the number of steps taken by the derivation. We assume, for simplicity (and of
course without loss of generality), that G and hence are in CNF.
The basis is n=1 in which case it is trivial. Because must be either or BC with .
Hence iff
Assume that it is true for (n-1)-steps. Let . Then the first step must apply a rule of the form
and it gives
where and
By constructing of G',
Hence
.
Similarly, for any language L,
The following theorem shows that CFLs are closed under substitution.
Thereom : Let is a CFL, and s is a substitution on such that is a CFL for all , thus
s(L) is a CFL
Proof : Let L = L(G) for a CFG and for every , for some
. Without loss of generality, assume that the sets of nonterminals N and 's are
disjoint.
Now, we construct a grammar , generating s(L), from G and 's as follows :
•
• consists of
1. and
2. The production of P but with each terminal a in the right hand side of a production replaced by
everywhere.
If Part : Let then according to the definition there is some string and
From the construction of , we find that, there is a derivation corresponding to the string
(since contains all productions of G but every ai replaced with in the RHS of any
production).
Every is the start symbol of and all productions of are also included in .
Hence
Therefore,
Each ( ) can only generate a string , since each 's and N are disjoin. Therefore,
we get
since
since
Proof : Let be a CFL, and h is a homomorphism on i.e for some alphabets . consider
the following substitution S:Replace each symbol by the language consisting of the only string h(a), i.e.
for all . Then, it is clear that, h(L) = s(L). Hence, CFL's being closed under substitution
must also be closed under homomorphism.
Grammar
A grammar is a mechanism used for describing languages. This is one of the most simple but yet powerful
mechanism. There are other notions to do the same, of course.
In everyday language, like English, we have a set of symbols (alphabet), a set of words constructed from these
symbols, and a set of rules using which we can group the words to construct meaningful sentences. The
grammar for English tells us what are the words in it and the rules to construct sentences. It also tells us
whether a particular sentence is well-formed (as per the grammar) or not. But even if one follows the rules of
the english grammar it may lead to some sentences which are not meaningful at all, because of impreciseness
and ambiguities involved in the language. In english grammar we use many other higher level constructs like
noun-phrase, verb-phrase, article, noun, predicate, verb etc. A typical rule can be defined as
meaning that "a sentence can be constructed using a 'noun-phrase' followed by a predicate".
If we take {a, an, the} to be <article>; cow, bird, boy, Ram, pen to be examples of <noun>; and eats, runs,
swims, walks, are associated with <verb>, then we can construct the sentence- a cow runs, the boy eats, an
pen walks- using the above rules. Even though all sentences are well-formed, the last one is not meaningful.
We observe that we start with the higher level construct <sentence> and then reduce it to <noun-phrase>,
<article>, <noun>, <verb> successively, eventually leading to a group of words associated with these
constructs.
These concepts are generalized in formal language leading to formal grammars. The word 'formal' here refers
to the fact that the specified rules for the language are explicitly stated in terms of what strings or symbols can
occur. There can be no ambiguity in it.
The binary relation defined by the set of production rules is denoted by , i.e. iff .
In other words, P is a finite set of production rules of the form , where and
Production rules:
The production rules specify how the grammar transforms one string to another. Given a string , we say
that the production rule is applicable to this string, since it is possible to use the rule to rewrite
the (in ) to obtaining a new string . We say that derives and is denoted as
Successive strings are dervied by applying the productions rules of the grammar in any arbitrary order. A
particular rule can be used if it is applicable, and it can be applied as many times as described.
We write if the string can be derived from the string in zero or more steps; if can be
derived from in one or more steps.
By applying the production rules in arbitrary order, any given grammar can generate many strings of terminal
symbols starting with the special start symbol, S, of the grammar. The set of all such terminal strings is called
the language generated (or defined) by the grammar.
That is iff .
If , we must have for some , , denoted as a
Example : Consider the grammar , where N = {S}, ={a, b} and P is the set of the following
production rules
{S ab, S aSb}
Some terminal strings generated by this grammar together with their derivation is given below.
S ab
S aSb aabb
To generate any other string, it needs to start with the production S aSb and then the non-terminal S in the
RHS can be replaced either by ab (in which we get the string aabb) or the same production S aSb can be
used one or more times. Every time it adds an 'a' to the left and a 'b' to the right of S, thus giving the sentential
form . When the non-terminal is replaced by ab (which is then only possibility for generating a
There is no general rule for finding a grammar for a given language. For many languages we can devise
grammars and there are many languages for which we cannot find any grammar.
It is possible to find a grammar for L by modifying the previous grammar since we need to generate an extra b
at the end of the string . We can do this by adding a production S Bb where the non-terminal B
generates as given in the previous example.
Parse Trees:
Construction of a Parse tree:
Yield of a Parse tree:
It is observed that FA have limited capability. (in the sense that the class of languages accepted or
characterized by them is small). This is due to the "finite memory" (number of states) and "no external memory"
involved with them. A PDA is simply an NFA augmented with an "external stack memory". The addition of a
stack provides the PDA with a last-in, first-out memory management cpapability. This "Stack" or "pushdown
store" can be used to record a potentially unbounded information. It is due to this memory management
capability with the help of the stack that a PDA can overcome the memory limitations that prevents a FA to
accept many interesting languages like . Although, a PDA can store an unbounded amount of
information on the stack, its access to the information on the stack is limited. It can push an element onto the
top of the stack and pop off an element from the top of the stack. To read down into the stack the top elements
must be popped off and are lost. Due to this limited access to the information on the stack, a PDA still has
some limitations and cannot accept some other interesting languages.
As shown in figure, a PDA has three components: an input tape with read only head, a finite control and a
pushdown store.
The input head is read-only and may only move from left to right, one symbol (or cell) at a time. In each step,
the PDA pops the top symbol off the stack; based on this symbol, the input symbol it is currently reading, and
its present state, it can push a sequence of symbols onto the stack, move its read-only head one cell (or
symbol) to the right, and enter a new state, as defined by the transition rules of the PDA.
PDA are nondeterministic, by default. That is, - transitions are also allowed in which the PDA can pop and
push, and change state without reading the next input symbol or moving its read-only head. Besides this, there
may be multiple options for possible next moves.
• go to state
• pop z off the stack
• push onto the stack (where ) (The usual convention is that if , then
• go to state
• pop z off the stack
Final states are indicated by double circles and the start state is indicated by an arrow to it from nowhere.
A configuration or an instantaneous description (ID) of PDA at any moment during its computation is an
element of describing the current state, the portion of the input remaining to be read (i.e.
under and to the right of the read head), and the current stack contents. Only these three elements can
affect the computation from that point on and, hence, are parts of the ID.
The start or inital configuartion (or ID) on input is . That is, the PDA always starts in its
start state, with its read head pointing to the leftmost input symbol and the stack containing only the
start/initial stack symbol, .
The "next move relation" one figure describes how the PDA can move from one configuration to another
in one step.
Formally,
iff
'a' may be or an input symbol.
Let I, J, K be IDs of a PDA. We define we write I K, if ID I can become K after exactly i moves. The
I K
I J if such that I J.
That is, is the reflexive, transitive closure of . We say that I J if the ID J follows from the ID I in
zero or more moves.
Consider the PDA . Informally, the PDA M is said to accept its input by final
state if it enters any final state in zero or more moves after reading its entire input, starting in the start
configuration on input .
2. Acceptance by empty stack (or Null stack) : The PDA M accepts its input by empty stack if starting in the
start configuration on input , it ever empties the stack w/o pushing anything back on after reading the entire
input. Formally, we define N(M), the language accepted by empty stack, to be
{ | for some }
Note that the set of final states, F is irrelevant in this case and we usually let the F to be the empty set i.e. F =
Q.
Informally, whenever the PDA M sees an input a in the start state with the start symbol z on the top of the
stack it pushes a onto the stack and changes state to . (to remember that it has seen the first 'a'). On state
if it sees anymore a, it simply pushes it onto the stack. Note that when M is on state , the symbol on the
top of the stack can only be a. On state if it sees the first b with a on the top of the stack, then it needs to
start comparison of numbers of a's and b's, since all the a's at the begining of the input have already been
pushed onto the stack. It start this process by popping off the a from the top of the stack and enters in state q3
(to remember that the comparison process has begun). On state , it expects only b's in the input (if it sees
any more a in the input thus the input will not be in the proper form of anbn). Hence there is no more on input a
when it is in state . On state it pops off an a from the top of the stack for every b in the input. When it
sees the last b on state q3 (i.e. when the input is exaushted), then the last a from the stack will be popped off
and the start symbol z is exposed. This is the only possible case when the input (i.e. on -input ) the PDA M
Let the input be aabb. we start with the start configuration and proceed to the subsequent IDs using the
transition function defined
( using transition 1 )
( using transition 2 )
( using transition 3 )
( using transition 4 ), ( using transition 5 ) , is final state. Hence , accept. So the
string aabb is rightly accepted by M
we can show the computation of the PDA on a given input using the IDs and next move relations. For example,
following are the computation on two input strings.
Hence the PDA gets stuck and the string aabab is not accepted.
Example 2 : We give an example of a PDA M that accepts the set of balanced strings of parentheses [] by
empty stack.
The PDA M is given below.
where is defined as
Informally, whenever it sees a [, it will push the ] onto the stack. (first two transitions), and whenever it sees a ]
and the top of the stack symbol is [, it will pop the symbol [ off the stack. (The third transition). The fourth
transition is used when the input is exhausted in order to pop z off the stack ( to empty the stack) and accept.
Note that there is only one state and no final state. The following is a sequence of configurations leading to the
acceptance of the string [ [ ] [ ] ] [ ].
It turns out that the two definitions of acceptance of a language by a PDA - accpetance by final state and empty
stack- are equivalent in the sense that if a language can be accepted by empty stack by some PDA, it can also
be accepted by final state by some other PDA and vice versa. Hence it doesn't matter which one we use, since
each kind of machine can simulate the other.Given any arbitrary PDA M that accpets the language L by final
state or empty stack, we can always construct an equivalent PDA M with a single final state that accpets
exactly the same language L. The construction process of M' from M and the proof of equivalence of M & M'
are given below.
CASE I : PDA M accepts by final state, Let Let qf be a new state not in Q.
contains and . It is easy to show that M and M' are equivalent i.e.
L(M) = L( )
Then
Thus accepts
inherits all other moves except the last one from M. Hence for some
.
Thus M accepts . Informally, on any input simulate all the moves of M and enters in its own final state
whenever M enters in any one of its final status in F. Thus accepts a string iff M accepts it.
We will construct from M in such a way that simulates M and detects when M empties its stack.
enters its final state when and only when M empties its stack.Thus will accept a string iff M
accepts.
and
Transitions 1 causes to enter the initial configuration of M except that will have its own bottom-of-stack
marker X which is below the symbols of M's stack. From this point onward will simulate every move of M
since all the transitions of M are also in
If M ever empties its stack, then when simulating M will empty its stack except the symbol X at the bottom.
At this point, will enter its final state by using transition rule 2, thereby (correctly) accepting the input.
We will prove that M and are equivalent.
( by transition rule 1)
( by transition rule 2 )
Hence, M starting with its initial configuration will eventually empty its stack and accept the input i.e.
We will first prove that the first part i.e. we want to show to convert a given CFG to an equivalent PDA.
Let the given CFG is . Without loss of generality we can assume that G is in Greibach
Normal Form i.e. all productions of G are of the form .
where and .
From the given CFG G we now construct an equivalent PDA M that accepts by empty stack. Note that there is
only one state in M. Let
, where
that M and G are equivalent i.e. L(G)=N(M). i.e. for any . iff .
If , then by definition of L(G), there must be a leftmost derivation starting with S and deriving w.
i.e.
Again if , then one sysmbol. Therefore we need to show that for any .
iff .
But we will prove a more general result as given in the following lemma. Replacing A by S (the start symbol)
and by gives the required proof.
Basis : n = 0
iff i.e. and
iff
iff
Induction Step :
First, assume that via a leftmost derivation. Let the last production applied in their derivation is
where and
.............................................................................(1)
and let
be the transition used in the last move. Then for some , and
where and .
i.e.
S aAB
A a / aA
B a / bB
The one state PDA M equivalent to G is shown below. For convenience, a production of G and the
corresponding transition in M are marked by the same encircled number.
(1) S aAB
(2) A a
(3) A aA
(4) B a
(5) B bB
2. ( q, aba, AB )
3. ( q, ba, B )
4. ( q, a, B )
Note : encircled numbers here shows the transitions rule applied at every step.
Now consider the derivation of the same string under grammar G. Once again, the production used at every
step is shown with encircled number.
Observations:
• There is an one-to-one correspondence of the sequence of moves of the PDA M and the derivation
sequence under the CFG G for the same input string in the sense that - number of steps in both the
cases are same and transition rule corresponding to the same production is used at every step (as
shown by encircled number).
• considering the moves of the PDA and derivation under G together, it is also observed that at every
step the input read so far and the stack content together is exactly identical to the corresponding
sentential form i.e.
<what is Read><stack> = <sentential form>
Say, at step 2, Read so far = a
stack = AB
Sentential form = aAB From this property we claim that iff . If the claim is
Thus N(M) = L(G) as desired. Note that we have already proved a more general version of the claim
We now want to show that for every PDA M that accpets by empty stack, there is a CFG G such that L(G) =
N(M)
we first see whether the "reverse of the construction" that was used in part (i) can be used here to construct an
equivalent CFG from any PDA M.
It can be show that this reverse construction works only for single state PDAs.
• That is, for every one-state PDA M there is CFG G such that L(G) = N(M). For every move of the
we can now apply the proof in part (i) in the reverse direction to show that L(G) = N(M).
But the reverse construction does not work for PDAs with more than one state. For example, consider the PDA
( Note ).
But under this grammar we can also derive some strings which are not in the language. e.g
and . But
Therefore, to complete the proof of part (ii) we need to prove the following claim also.
Claim: For every PDA M there is some one-state PDA such that .
It is quite possible to prove the above claim. But here we will adopt a different approach. We start with any
arbitrary PDA M that accepts by empty stack and directly construct an equivalent CFG G.
PDA to CFG
We want to construct a CFG G to simulate any arbitrary PDA M with one or more states. Without loss of
generality we can assume that the PDA M accepts by empty stack.
The idea is to use nonterminal of the form <PAq> whenever PDA M in state P with A on top of the stack goes
to state . That is, for example, for a given transition of the PDA corresponding production in the grammar as
shown below,
And, we would like to show, in general, that iff the PDA M, when started from state P with A on
the top of the stack will finish processing , arrive at state q and remove A from the stack.
we are now ready to give the construction of an equivalent CFG G from a given PDA M. we need to introduce
two kinds of producitons in the grammar as given below. The reason for introduction of the first kind of
production will be justified at a later point. Introduction of the second type of production has been justified in the
above discussion.
Where
• N is the set of nonterminals of the form <PAq> for and and P contains the follwoing
two kind of production
1.
, .
iff
Now, to show that the above construction of CFG G from any PDA M works, we need to prove the proposed
claim.
Note: At this point, the justification for introduction of the first type of production (of the form ) in
the CFG G, is quite clear. This helps use deriving a string from the start symbol of the grammar.
The proof consists of two parts: ' if ' part and ' only if ' part. First, consider the ' if ' part
If then .
Basis is n =1
Then
Inductive Hypothesis :
Inductive Step :
For n >1, let w = ax for some and consider the first move of the PDA M which uses the
general transition =
Let , where is the prefix of x that M has consumed when first appears at top of
the stack. Then there must exist a sequence of states in M (as per construction) (with
), such that
[ This step implies ]
[ Note: Each step takes less than or equal to n -1 moves because the total number of moves required assumed
to be n-1.]
, .
We can show the computation of the PDA on a given input using the IDs and next move relations. For example,
following are the computation on two input strings.
i) Let the input be aabb. we start with the start configuration and proceed to the subsequent IDs using the
transition function defined
we can show the computation of the PDA on a given input using the IDs and next move relations. For example,
following are the computation on two input strings.
Hence the PDA gets stuck and the string aabab is not accepted.
It turns out that the two definitions of acceptance of a language by a PDA - accpetance by final state and empty
stack- are equivalent in the sense that if a language can be accepted by empty stack by some PDA, it can also
be accepted by final state by some other PDA and vice versa. Hence it doesn't matter which one we use, since
each kind of machine can simulate the other.Given any arbitrary PDA M that accpets the language L by final
state or empty stack, we can always construct an equivalent PDA M with a single final state that accpets
exactly the same language L. The construction process of M' from M and the proof of equivalence of M & M'
are given below
CASE 1 : PDA M accepts by final state, Let . Let be a new state not in Q.
Then .
Thus accepts .
Conversely, let accepts i.e. , then for some
. inherits all other moves except the last one from M. Hence for some
.
Thus M accepts . Informally, on any input simulate all the moves of M and enters in its own final state
whenever M enters in any one of its final status in F. Thus accepts a string iff M accepts it.
we will construct from M in such a way that simulates M and detects when M empties its stack.
enters its final state when and only when M empties its stack.Thus will accept a string iff M
accepts.
and
Transitions 1 causes to enter the initial configuration of M except that will have its own bottom-of-stack
marker X which is below the symbols of M's stack. From this point onward M' will simulate every move of M
since all the transitions of M are also in .
If M ever empties its stack, then when simulating M will empty its stack except the symbol X at the bottom.
At this point , will enter its final state by using transition rule 2, thereby (correctly) accepting the input.
we will prove that M and are equivalent.
Let M accepts .
Then
( by transition rule 1 )
Hence, M starting with its initial configuration will eventually empty its stack and accept the input i.e.
Deterministic PDA:
Regular Languages and DPDA’s The DPDA’s accepts a class of languages that is in between the regular
languages and CFL’s.
Deterministic Pushdown Automata (DPDA) and Deterministic Context-free Languages (DCFLs)
Pushdown automata that we have already defined and discussed are nondeterministic by default, that is , there may be two or
more moves involving the same combinations of state, input symbol, and top of the stock, and again, for some state and
top of the stock the machine may either read and input symbol or make an - transition (without consuming any input).
In deterministic PDA , there is never a choice of move in any situation. This is handled by preventing the above mentioned two
cases as described in the definition below.
Defnition : Let be a PDA . Then M is deterministic if and only if both the following conditions are
satisfied.
1. has at most one element for any and (this condition prevents multiple choice f
any combination of )
(This condition prevents the possibility of a choice between a move with or without an input symbol).
Empty Production Removal
The productions of context-free grammars can be coerced into a variety of forms without
affecting the expressive power of the grammars. If the empty string does not belong to a language,
then there is a way to eliminate the productions of the form A→ λ from the grammar.
If the empty string belongs to a language, then we can eliminate λ from all productions
save for the single production S → λ. In this case we can also eliminate any occurrences of S from
the right-hand side of productions.
Procedure to find CFG with out empty Productions
Unit production removal
Solution
Pumping Lemma for CFG
A “Pumping Lemma” is a theorem used to show that, if certain strings belong to a
language, then certain other strings must also belong to the language. Let us discuss a Pumping
Lemma for CFL. We will show that , if L is a context-free language, then strings of L that are at
least ‘m’ symbols long can be “pumped” to produce additional strings in L. The value of ‘m’
depends on the particular language. Let L be an infinite context-free language. Then there is some
positive integer ‘m’ such that, if S is a string of L of Length at least ‘m’, then
(i) S = uvwxy (for some u, v, w, x, y)
(ii) | vwx| ≤ m
(iii) | vx| ≥1
(iv) uv iwx i y∈L.
for all non-negative values of i.
It should be understood that
(i) If S is sufficiently long string, then there are two substrings, v and x, somewhere in S.
There is stuff (u) before v, stuff (w) between v and x, and stuff (y), after x.
(ii) The stuff between v and x won’t be too long, because | vwx | can’t be larger than m.
(iii) Substrings v and x won’t both be empty, though either one could be.
(iv) If we duplicate substring v, some number (i) of times, and duplicate x the same number
of times, the resultant string will also be in L.
Definitions
A variable is useful if it occurs in the derivation of some string. This requires that
(a) the variable occurs in some sentential form (you can get to the variable if you start from S), and
(b) a string of terminals can be derived from the sentential form (the variable is not a “dead end”).
A variable is “recursive” if it can generate a string containing itself. For example, variable A is
recursive if
Inverse Homomorphism:
V
MODULE-IV
Turing machine:
Informal Definition:
We consider here a basic model of TM which is deterministic and have one-tape. There are many variations, all
are equally powerfull.
The basic model of TM has a finite set of states, a semi-infinite tape that has a leftmost cell but is infinite to the
right and a tape head that can move left and right over the tape, reading and writing symbols.
For any input w with |w|=n, initially it is written on the n leftmost (continguous) tape cells. The infinitely many
cells to the right of the input all contain a blank symbol, B whcih is a special tape symbol that is not an input
symbol. The machine starts in its start state with its head scanning the leftmost symbol of the input w. De-
pending upon the symbol scanned by the tape head and the current state the machine makes a move which
consists of the following:
The action it takes in each step is determined by a transition functions. The machine continues computing (i.e.
making moves) until
• it decides to "accept" its input by entering a special state called accept or final state or
• halts without accepting i.e. rejecting the input when there is no move defined.
On some inputs the TM many keep on computing forever without ever accepting or rejecting the input, in which
case it is said to "loop" on that input
Formal Definition :
So, given the current state and tape symbol being read, the transition function describes the next state, symbol
to be written on the tape, and the direction in which to move the tape head ( L and R denote left and right,
respectively ).
Transition function :
• The heart of the TM is the transition function, because it tells us how the machine gets one step to
the next.
• when the machine is in a certain state q Q and the head is currently scanning the tape symbol
, and if , then the machine
The ID (instantaneous description) of a TM capture what is going out at any moment i.e. it contains all the
information to exactly capture the "current state of the computations".
Note that, although there is no limit on how far right the head may move and write nonblank symbols on the
tape, at any finite
time, the TM has visited only a finite prefix of the infinite tape.
That is, the tape head is currently scanning the leftmost tape symbol of . ( Note that if , then the tape
head is scanning a blank symbol)
If is the start state and w is the input to a TM M then the starting or initial configuration of M is onviously
denoted by
Moves of Turing Machines
To indicate one move we use the symbol . Similarly, zero, one, or more moves will be represented by .A
move of a TM
M is defined as follows.
• In other words, when two IDs are related by the relation , we say that the first one yields the second
( or the second is the result of the first) by one move.
• If IDj results from IDi by zero, one or more (finite) moves then we write ( If the TM M is understand,
then the subscript M can be dropped from or )
In other words the TM M accepts a string that cause M to enter a final or accepting state when started
• ;
• The representation of IDk contains an accepting state.
The set of strings that M accepts is the language of M, denoted L(M), as defined above
• An ID is called a blocking (or halting) ID if is undefined i.e. the TM has no move at this
point.
• is the initial (or starting) ID if is the input to the TM and is the initial (or start) state
of M.
either
or
However, on some input string, , , it is possible that the TM M loops for ever i.e. it never halts
The Halting Problem
The input to a Turing machine is a string. Turing machines themselves can be written as
strings. Since these strings can be used as input to other Turing machines. A “Universal Turing
machine” is one whose input consists of a description M of some arbitrary Turing machine, and
some input w to which machine M is to be applied, we write this combined input as M + w. This
produces the same output that would be produced by M. This is written as
Universal Turing Machine (M + w) = M (w).
As a Turing machine can be represented as a string, it is fully possible to supply a Turing
machine as input to itself, for example M (M). This is not even a particularly bizarre thing to do for
example, suppose you have written a C pretty printer in C, then used the Pretty printer on itself.
Another common usage is Bootstrapping—where some convenient languages used to write a
minimal compiler for some new language L, then used this minimal compiler for L to write a new,
improved compiler for language L. Each time a new feature is added to language L, you can
recompile and use this new feature in the next version of the compiler. Turing machines sometimes
halt, and sometimes they enter an infinite loop.
A Turing machine might halt for one input string, but go into an infinite loop when given
some other string. The halting problem asks: “It is possible to tell, in general, whether a given
machine will halt for some given input?” If it is possible, then there is an effective procedure to look
at a Turing machine and its input and determine whether the machine will halt with that input. If
there is an effective procedure, then we can build a Turing machine to implement it. Suppose we
have a Turing machine “WillHalt” which, given an input string M + w, will halt and accept the string
if Turing machine M halts on input w and will halt and reject the string if Turing machine M does not
halt on input w. When viewed as a Boolean function, “WillHalt (M, w)” halts and returns “TRUE” in
the first case, and (halts and) returns “FALSE” in the second.
Theorem
Turing Machine “WillHalt (M, w)” does not exist.
Proof: This theorem is proved by contradiction. Suppose we could build a machine “WillHalt”.
Then we can certainly build a second machine, “LoopIfHalts”, that will go into an infinite loop if
and only if “WillHalt” accepts its input:
Function LoopIfHalts (M, w):
if WillHalt (M, w) then
while true do { }
else
return false;
We will also define a machine “LoopIfHaltOnItSelf” that, for any given input M, representing a
Turing machine, will determine what will happen if M is applied to itself, and loops if M will halt in
this case.
Function LoopIfHaltsOnItself (M):
return LoopIfHalts (M, M):
Finally, we ask what happens if we try:
Func tion Impos sible:
return LoopIfHaltsOnItself (LoopIfHaltsOnItself):
This machine, when applied to itself, goes into an infinite loop if and only if it halts when
applied to itself. This is impossible. Hence the theorem is proved.
Implications of Halting Problem
Programming
The Theorem of “Halting Problem” does not say that we can never determine whether or not
a given program halts on a given input. Most of the times, for practical reasons, we could eliminate
infinite loops from programs. Sometimes a “meta-program” is used to check another program for
potential infinite loops, and get this meta-program to work most of the time.
The theorem says that we cannot ever write such a meta-program and have it work all of the
time. This result is also used to demonstrate that certain other programs are also impossible.
The basic outline is as follows:
(i) If we could solve a problem X, we could solve the Halting problem
(ii) We cannot solve the Halting Problem
(iii) Therefore, we cannot solve problem X
3. Subroutines
Y
UNDECIDABILITY
Recursive Languages:
Universal
Language:
Undecidability of Universal Language:
Problem -Reduction :
If P1 reduced to P2,
Then P2 is at least as hard as P1.
Theorem: If P1 reduces to P2 then,
• If P1 is undecidable the so is P2.
• If P1 is Non-RE then so is P2.
Post's Correspondence Problem (PCP)
Because
i xi yi
1
2
3
i xi yi
1
2
This can be proved as follows. cannot be chosen at the start, since than the LHS and RHS would
differ in the first symbol ( in LHS and in RHS). So, we must start with . The next pair must be
so that the 3 rd symbol in the RHS becomes identical to that of the LHS, which is a . After this
step, LHS and RHS are not matching. If is selected next, then would be mismatched in the 7 th symbol
( in LHS and in RHS). If is selected, instead, there will not be any choice to match the both side in
the next step.
i xi yi
1 1 101
2 10 00
3 011 11
Proposition Any PCP instance over an alphabet with is equivalent to a PCP instance over an
alphabet with
Proof : Let
Consider We can now encode every as any PCP instance over will now
have only two symbols, 0 and 1 and, hence, is equivalent to a PCP instance over
Theorem : PCP is undecidable. That is, there is no algorithm that determines whether an arbitrary Post
Correspondence System has a solution.
Proof: The halting problem of turning machine can be reduced to PCP to show the undecidability of PCP. Since
halting problem of TM is undecidable (already proved), This reduction shows that PCP is also undecidable. The
proof is little bit lengthy and left as an exercise.
We can use the undecidability of PCP to show that many problem concerning the context-free languages are
undecidable. To prove this we reduce the PCP to each of these problem. The following discussion makes it
clear how PCP can be used to serve this purpose.
Let be a Post Correspondence System over the alphabet . We construct
two CFG's Gx and Gy from the ordered pairs x,y respectively as follows.
and
where
and
it is clear that the grammar generates the strings that can appear in the LHS of a sequence while solving
the PCP followed by a sequence of numbers. The sequence of number at the end records the sequence of
strings from the PCP instance (in reverse order) that generates the string. Similarly, generates the strings
that can be obtained from the RHS of a sequence and the corresponding sequence of numbers (in reverse
order).
Now, if the Post Correspondence System has a solution, then there must be a sequence
In this case
Hence , and implying
Conversely, let
Hence, w must be in the form w1w2 where and w2 in a sequence (since, only that kind of
It is interesting to note that we have here reduced PCP to the language of pairs of CFG,s whose intersection is
nonempty. The following result is a direct conclusion of the above.
Theorem : Given any two CFG's G1 and G2 the question "Is " is undecidable.
Proof: Assume for contradiction that there exists an algorithm A to decide this question. This would imply that
PCP is decidable as shown below.
For any Post Correspondence System, P construct grammars and by using the constructions
elaborated already. We can now use the algorithm A to decide whether and
Thus, PCP is decidable, a contradiction. So, such an algorithm does not exist.
If and are CFG's constructed from any arbitrary Post Correspondence System, than it is not difficult to
show that and are also context-free, even though the class of context-free languages are not
closed under complementation.
and their complements can be used in various ways to show that many other questions
related to CFL's are undecidable. We prove here some of those.
Theorem : Foe any two arbitrary CFG's the following questions are undecidable
i. Is
ii. Is
iii. Is
Proof :
i. If then,
Since, and are CFl's and CFL's are closed under union, is also context-
ii.
Let P be any arbitrary Post correspondence system and and are CFg's constructed from the pairs of
strings.
PCP. Hence, contains all but those strings representing the solution to the PCP.
It is now obvious that if and only if the PCP has no solutions, which is already proved to be
iii.
Let be a CFG generating the language and G2 be a CFG generating
where and are CFG.s constructed from same arbitrary instance of PCP.
iff
i.e. iff the PCP instance has no solutions as discussed in part (ii).
Proof : Consider an arbitrary instance of PCP and construct the CFG's and from the ordered pairs of
strings.
where
This constructions gives a reduction of PCP to the -------- of whether a CFG is ambiguous, thus leading to the
undecidability of the given problem. That is, we will now show that the PCP has a solution if and only if G is
ambiguous. (where G is constructed from an arbitrary instance of PCP).
is a solution to the PCP. Hence the same string of terminals has two derivations. Both these
derivations are, clearly, leftmost. Hence G is ambiguous.
If It is important to note that any string of terminals cannot have more than one derivation in and
Because, every terminal string which are derivable under these grammars ends with a sequence of integers
This sequence uniquely determines which productions must be used at every step of the derivation.
Hence, if a terminal string, , has two leftmost derivations, then one of them must begin with the
step.
In both derivations the resulting string must end with a sequence for same The reverse of
this sequence must be a solution to the PCP, because the string that precede in one case is
and in the other case. Since the string derived in both cases are identical, the
sequence