programming4us
programming4us
DESKTOP

Algorithms for Compiler Design: EXAMPLES OF FINITE AUTOMATA CONSTRUCTION

- How To Install Windows Server 2012 On VirtualBox
- How To Bypass Torrent Connection Blocking By Your ISP
- How To Install Actual Facebook App On Kindle Fire
7/24/2010 7:58:40 PM
2.7 EXAMPLES OF FINITE AUTOMATA CONSTRUCTION
EXAMPLE 1
Start example

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.

End example

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.

Click To expand
Figure 1: Transition diagram for Example 1 finite automata.
EXAMPLE 2
Start example

Construct a finite automata that will accept strings of zeros and ones that contain even numbers of zeros and odd numbers of ones.

End example

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.

Click To expand
Figure 2: Finite automata containing even number of zeros and odd number of ones.
EXAMPLE 3
Start example

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.

End example

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.

Click To expand
Figure 3: Finite automata containing odd number of zeros and even number of ones.
EXAMPLE 4
Start example

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.

End example

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.

Click To expand
Figure 4: Example 4 finite automata considers the set prefix.
EXAMPLE 5
Start example

Construct a finite automata for accepting all possible strings of zeros and ones that do not contain 101 as a substring.

End example

Figure 5 shows a transition diagram of the finite automata that accepts the strings containing 101 as a substring.

Click To expand
Figure 5: Finite automata accepts strings containing the substring 101.

A DFA equivalent to this NFA will be:

0

1

{A}

{A}

{A, B}

{A, B}

{A, C}

{A, B}

{A, C}

{A}

{A, B, D}

{A, B, D}*

{A, C, D}

{A, B, D}

{A, C, D}*

{A, D}

{A, B, D}

{A, C, D}*

{A, D}

{A, B, D}

Let us identify the states of this DFA using the names given below:

{A}

q0

{A, B}

q1

{A, C}

q2

{A, B, D}

q3

{A, C, D}

q4

{A, D}

q5

The transition diagram of this automata is shown in Figure 6.

Click To expand
Figure 6: DFA using the names A-D and q05.

The complement of the automata in Figure 6 is shown in Figure 7.

Click To expand
Figure 7: Complement to Figure 6 automata.

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.

Click To expand
Figure 8: DFA after minimization.
EXAMPLE 6
Start example

Construct a finite automata that will accept those strings of decimal digits that are divisible by three (see Figure 9).

Click To expand
Figure 9: Finite automata that accepts string decimals that are divisible by three.

End example

EXAMPLE 7
Start example

Construct a finite automata that accepts all possible strings of zeros and ones that do not contain 011 as a substring.

End example

Figure 10 shows a transition diagram of the automata that accepts the strings containing 101 as a substring.

Click To expand
Figure 10: Finite automata accepts strings containing 101.

A DFA equivalent to this NFA will be:

0

1

{A}

{A, B}

{A}

{A, B}

{A, B}

{A, C}

{A, C}

{A, B}

{A, D}

{A, D}*

{A, B, D}

{A, D}

{A, B, D}*

{A, B, D}

{A, C, D}

{A, C, D}*

{A, B, D}

{A, D}

Let us identify the states of this DFA using the names given below:

{A}

q0

{A, B}

q1

{A, C}

q2

{A, D}

q3

{A, B, D}

q4

{A, C, D}

q5

The transition diagram of this automata is shown in Figure 11.

Click To expand
Figure 11: Finite automata identified by the name states A-D and q05.

The complement of automata shown in Figure 11 is illustrated in Figure 12.

Click To expand
Figure 12: Complement to Figure 11 automata.

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.

Click To expand
Figure 13: Minimization of nondistinguishable states of Figure 12.
EXAMPLE 8
Start example

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.

Click To expand
Figure 14: Automata that accepts binary strings that are divisible by three.

End example


Other  
 
Top 10
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 2) - Wireframes,Legends
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 1) - Swimlanes
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Formatting and sizing lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Adding shapes to lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Sizing containers
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 3) - The Other Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 2) - The Data Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 1) - The Format Properties of a Control
- Microsoft Access 2010 : Form Properties and Why Should You Use Them - Working with the Properties Window
- Microsoft Visio 2013 : Using the Organization Chart Wizard with new data
REVIEW
- First look: Apple Watch

- 3 Tips for Maintaining Your Cell Phone Battery (part 1)

- 3 Tips for Maintaining Your Cell Phone Battery (part 2)
programming4us programming4us
programming4us
 
 
programming4us