2.7 EXAMPLES OF FINITE AUTOMATA CONSTRUCTION
EXAMPLE 1
Construct a finite automata accepting the set of all strings of zeros and ones, with at most one pair of consecutive zeros and at most one pair of consecutive ones.
A transition diagram of the finite automata accepting the set of all strings of zeros and ones, with at most one pair of consecutive zeros and at most one pair of consecutive ones is shown in Figure 1.
EXAMPLE 2
Construct a finite automata that will accept strings of zeros and ones that contain even numbers of zeros and odd numbers of ones.
A transition diagram of the finite automata that accepts the set of all strings of zeros and ones that contains even numbers of zeros and odd numbers of ones is shown in Figure 2.
EXAMPLE 3
Construct a finite automata that will accept a string of zeros and ones that contains an odd number of zeros and an even number of ones.
A transition diagram of finite automata accepting the set of all strings of zeros and ones that contains an odd number of zeros and an even number of ones is shown in Figure 3.
EXAMPLE 4
Construct the finite automata for accepting strings of zeros and ones that contain equal numbers of zeros and ones, and no prefix of the string should contain two more zeros than ones or two more ones than zeros.
A transition diagram of the finite automata that will accept the set of all strings of zeros and ones, contain equal numbers of zeros and ones, and contain no string prefixes of two more zeros than ones or two more ones than zeros is shown in Figure 4.
EXAMPLE 5
Construct a finite automata for accepting all possible strings of zeros and ones that do not contain 101 as a substring.
Figure 5 shows a transition diagram of the finite automata that accepts the strings containing 101 as a substring.
A DFA equivalent to this NFA will be:
Let us identify the states of this DFA using the names given below:
The transition diagram of this automata is shown in Figure 6.
The complement of the automata in Figure 6 is shown in Figure 7.
After minimization, we get the DFA shown in Figure 8, because states q3, q4, and q5 are nondistinguishable states. Hence, they get combined, and this combination becomes a dead state and, can be eliminated.
EXAMPLE 6
Construct a finite automata that will accept those strings of decimal digits that are divisible by three (see Figure 9).
EXAMPLE 7
Construct a finite automata that accepts all possible strings of zeros and ones that do not contain 011 as a substring.
Figure 10 shows a transition diagram of the automata that accepts the strings containing 101 as a substring.
A DFA equivalent to this NFA will be:
Let us identify the states of this DFA using the names given below:
The transition diagram of this automata is shown in Figure 11.
The complement of automata shown in Figure 11 is illustrated in Figure 12.
After minimization, we get the DFA shown in Figure 13, because the states q3, q4, and q5 are nondistinguishable states. Hence, they get combined, and this combination becomes a dead state that can be eliminated.
EXAMPLE 8
Construct a finite automata that will accept those strings of a binary number that are divisible by three.
The transition diagram of this automata is shown in Figure 14.
|