Bhanu Priya has Published 1581 Articles

What is Kleene’s Theorem in TOC?

Bhanu Priya

Bhanu Priya

Updated on 15-Jun-2021 11:18:44

15K+ Views

Kleene's Theorem states the equivalence of the following three statements −A language accepted by Finite Automata can also be accepted by a Transition graph.A language accepted by a Transition graph can also be accepted by Regular Expression.A language accepted by Regular Expression can also be accepted by finite Automata.Kleene’s theorem ... Read More

Explain the complementation process in DFA

Bhanu Priya

Bhanu Priya

Updated on 15-Jun-2021 07:05:03

876 Views

The complementation process in the deterministic finite automata (DFA) is explained below −Let’s take a DFA which is defined by (Q, Σ, δ, q0, F) and it accepts the language L1. Now, the DFA that accepts the language L2, where L2 = ̅L1, is defined as follows −      ... Read More

Explain the cross product method process in DFA

Bhanu Priya

Bhanu Priya

Updated on 15-Jun-2021 07:01:52

1K+ Views

The cross product method process in the deterministic finite automata (DFA) is explained below −Let a's DFA diagram has m number of states and b's DFA diagram has n number of states the cross product m x n will have mxn states.Languages represented by even number of ‘a’ and even ... Read More

Explain the concatenation process in DFA

Bhanu Priya

Bhanu Priya

Updated on 15-Jun-2021 06:56:42

3K+ Views

The concatenation process in the deterministic finite automata (DFA) is explained below −If L1 and If L2 are two regular languages, their union L1 ∩ L2 will also be regular.For example, L1 = {an | n > O} and L2 = {bn | n > O}L3 = L1 ∩ L2 ... Read More

Explain Union process in DFA

Bhanu Priya

Bhanu Priya

Updated on 15-Jun-2021 06:55:09

2K+ Views

The union process in the deterministic finite automata (DFA) is explained below −If L1 and If L2 are two regular languages, their union L1 U L2 will also be regular.For example, L1 = {an | n > O} and L2 = {bn | n > O}L3 = L1 U L2 ... Read More

Construct DFA of a string in which the second symbol from RHS is ‘a’

Bhanu Priya

Bhanu Priya

Updated on 15-Jun-2021 06:52:53

2K+ Views

A Deterministic Finite automaton (DFA) is a 5-tuplesM=(Q, Σ, δ, q0, F)Where, Q : Finite set called states.Σ : Finite set called alphabets.δ : Q × Σ → Q is the transition function.q0 ϵ Q is the start or initial state.F : Final or accept state.ProblemDesign a finite automaton where ... Read More

Design DFA for language over {0,1} accepting strings with odd number of 1’s and even number of 0’s

Bhanu Priya

Bhanu Priya

Updated on 15-Jun-2021 06:50:08

3K+ Views

A Deterministic Finite automaton (DFA) is a 5-tuplesM=(Q, Σ, δ, q0, F)Where, Q : Finite set called states.Σ : Finite set called alphabets.δ : Q × Σ → Q is the transition function.q0 ϵ Q is the start or initial state.F : Final or accept state.ProblemConstruct a DFA machine accepting ... Read More

Construct an NFA accepting strings with an even number of 0s or an odd number of 1s

Bhanu Priya

Bhanu Priya

Updated on 15-Jun-2021 06:47:51

9K+ Views

Non-deterministic finite automata (NFA) also have five states which are same as DFA, but with different transition function, as shown follows −δ: Q X Σ → 2QWhere, Q : Finite set called states.Σ : Finite set called alphabets.δ : Q × Σ → Q is the transition function.q0 ϵ Q ... Read More

Design a DFA machine accepting odd numbers of 0’s or even numbers of 1’s

Bhanu Priya

Bhanu Priya

Updated on 15-Jun-2021 06:46:13

8K+ Views

A Deterministic Finite automaton (DFA) is a five tuplesM=(Q, Σ, δ, q0, F)Where, Q : Finite set called states.Σ : Finite set called alphabets.δ : Q × Σ → Q is the transition function.q0 ϵ Q is the start or initial state.F : Final or accept state.ProblemConstruct a DFA machine ... Read More

Design a DFA of a string with at least two 0’s and at least two 1’s

Bhanu Priya

Bhanu Priya

Updated on 15-Jun-2021 06:41:24

2K+ Views

A Deterministic Finite automaton (DFA) is a 5-tuplesM=(Q, Σ, δ, q0, F)Where, Q : Finite set called states.Σ : Finite set called alphabets.δ : Q × Σ → Q is the transition function.q0 ϵ Q is the start or initial state.F : Final or accept state.ProblemConstruct DFA of a string ... Read More

Advertisements