DIZNR INTERNATIONAL

GATE 1991 Subject – Theory Of Computation Topic -Finite Automata.

GATE 1991 Subject – Theory Of Computation Topic -Finite Automata.

https://www.gyanodhan.com/video/7B3.%20GATE%20CSEIT/Theory%20of%20Computation/627.%20CSEIT%20-%20GATE%201991%20%20%20Subject%20-%20Theory%20Of%20Computation%20%20%20Topic%20-Finite%20Automata....mp4

 Finite Automata – GATE 1991 (Theory of Computation)

Finite Automata (FA) is a key topic in Theory of Computation (TOC) and is used to recognize Regular Languages. It is one of the fundamental models of computation.

 Definition of Finite Automata

A Finite Automaton (FA) is formally defined as a 5-tuple (Q, Σ, δ, q₀, F), where:

 Types of Finite Automata

Finite Automata can be classified into two main types:

Type Description Recognizes
DFA (Deterministic Finite Automata) Exactly one transition per input symbol from each state Regular Languages
NFA (Nondeterministic Finite Automata) Multiple transitions for the same input symbol or ε-moves Regular Languages

Both DFA and NFA recognize the same class of languages (Regular Languages).

 Example of DFA

Language: Strings over {0,1} that end with 1.

DFA Representation:

States: {q0, q1}
Alphabet: {0,1}
Start State: q0
Final State: q1
Transitions:

State Input 0 Input 1
q0 q0 q1
q1 q1 q1

Explanation:

 Example of NFA

Language: Strings containing 10 as a substring.

NFA Representation:

States: {q0, q1, q2}
Alphabet: {0,1}
Start State: q0
Final State: q2
Transitions:

State Input 0 Input 1
q0 q0 q1
q1 q2
q2 q2 q2

Explanation:

 GATE 1991 Question on Finite Automata

Q: Which of the following statements is true?
(A) Every NFA can be converted to an equivalent DFA.
(B) NFA can recognize more languages than DFA.
(C) There exists an NFA for which no equivalent DFA exists.
(D) DFA and NFA recognize different sets of languages.

Correct Answer: (A) Every NFA can be converted to an equivalent DFA.
Explanation: DFA and NFA are equivalent in power, meaning any language recognized by an NFA can also be recognized by a DFA. The subset construction algorithm is used to convert an NFA to an equivalent DFA.

 Summary

Finite Automata recognizes Regular Languages.
DFA has unique transitions, while NFA allows multiple transitions.
Both DFA and NFA are equivalent in power but differ in complexity.
Used in compilers, text searching, and pattern recognition.

 Do you need more solved GATE questions or examples?

In the GATE 1991 Computer Science Engineering (CSE) exam, Question 17(b) under the Theory of Computation section focused on Finite Automata. The question required constructing a Non-Deterministic Finite Automaton (NFA) for a specified language and determining the number of states in the minimized equivalent Deterministic Finite Automaton (DFA).

Understanding the Problem

The task involves two main steps:

  1. Designing an NFA: Create an NFA that accepts a particular language.

  2. Converting to a DFA: Transform the NFA into an equivalent DFA and minimize it to find the least number of states required.

This process typically employs the powerset construction method to convert the NFA to a DFA, followed by DFA minimization techniques to reduce the number of states.

Detailed Solution

A comprehensive solution to this question, including the construction of the NFA and the minimization process to obtain the DFA, is available on GateOverflow:

GATE CSE 1991 Question 17(b) – GateOverflow

This resource provides step-by-step explanations and diagrams to aid in understanding the conversion and minimization processes.

Additional Learning Resources

For a more in-depth understanding of Finite Automata and related concepts, consider the following video lectures:

These resources can help reinforce your understanding of finite automata and prepare you for similar questions in competitive exams.