Deterministic Finite Automata Flashcards

1
Q

What does ∪ mean?

A

Union

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does ∩ mean?

A

Intersection

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does ∈ mean?

A

Is an element of

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does ∉ mean?

A

Is not an element of

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

The set of all words in an alphabet Σ is denoted by?

A

Σ∗

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What defines a language in Σ?

A

Any subset L⊂Σ∗

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is cardinality?

A

The number of elements in a set.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Let w1,w2 ∈Σ∗. We say that w1 is a subword of w2 if?

A

There
exist words u,v∈Σ∗such that w2 = uw1v.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

A Finite Automaton (FA) is a collection of five objects
(Q, Σ, δ, s, F) which are?

A

*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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Define the pumping lemma for regular languages.

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does ⊆ mean?

A

Is a subset of.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are context free languages closed under?

A

Union, concatenation, kleene star.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Define the pumping lemma for context free grammars.

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

State the Church Turing thesis.

A

if a function is effectively calculable it can be implemented on a TM

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

A pushdown automaton is a system
A= (Q, Σ, Γ, s, ∆, F) where?

A

*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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Turing machine (TM) is a system (Q, Σ, Σ0, s, δ, H) where?

A

*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̸= ◃.