Deterministic Finite Automata Flashcards
What does ∪ mean?
Union
What does ∩ mean?
Intersection
What does ∈ mean?
Is an element of
What does ∉ mean?
Is not an element of
The set of all words in an alphabet Σ is denoted by?
Σ∗
What defines a language in Σ?
Any subset L⊂Σ∗
What is cardinality?
The number of elements in a set.
Let w1,w2 ∈Σ∗. We say that w1 is a subword of w2 if?
There
exist words u,v∈Σ∗such that w2 = uw1v.
A Finite Automaton (FA) is a collection of five objects
(Q, Σ, δ, s, F) which are?
*Q is a finite set of states;
*Σ is the input alphabet;
*δ: Q×Σ →Q is the transition function;
*s∈Q is the initial state;
*F ⊂Q is the set of accepting states.
Define the pumping lemma for regular languages.
Let L be a regular language. There exists an
integer number n > 0 such that any word w ∈L with |w|> n can be represented as
w = xyz where
*y ̸= e
* |xy|≤n,
*xyiz ∈L for all integer i ≥0.
What does ⊆ mean?
Is a subset of.
What are context free languages closed under?
Union, concatenation, kleene star.
Define the pumping lemma for context free grammars.
Let L be a context-free language. Then there
exists an integer number n > 0 such that any word w ∈L with |w|≥n can be
represented as w = uvxyz where
*either v or y is different from e (in other words, |vy|> 0),
* |vxy|≤n,
*for every i ≥0 the word uvixyiz ∈L
State the Church Turing thesis.
if a function is effectively calculable it can be implemented on a TM
A pushdown automaton is a system
A= (Q, Σ, Γ, s, ∆, F) where?
*Q is a finite set of states,
*Σ is an input alphabet,
*Γ is a stack alphabet,
*s∈Q is an initial state,
*∆ is a transition relation:
∆ ⊂(Q×(Σ ∪{e}) ×Γ∗) ×(Q×Γ∗),
*F ⊂Q is a set of final states.
Turing machine (TM) is a system (Q, Σ, Σ0, s, δ, H) where?
*Q is set of states;
*Σ is an alphabet containing ⊔(blank), ◃ (left end symbol), and not con-
taining →and ←;
*Σ0 ⊂Σ {⊔,◃}is the input alphabet;
*s is the initial state;
*H ⊂Q is the set of halting states;
*δ is the transition function,
δ: (Q\H) ×Σ → Q×(Σ ∪{←,→})
such that
(a) for all q∈Q\H if δ(q,◃) = (p,b) then b=→;
(b) for all q∈Q\H and a∈Σ if δ(q,a) = (p,b) then b̸= ◃.