Turing machines Flashcards

1
Q

Turing machine model

A

An infinite tape with letters of a certain alphabet on it. There is a reader/writer head that can move left and right in each step. The head starts at the right #.

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

Turing machine parameters <Q, Σ, δ, s, h>

A

Q: all the possible states that the machine might be in.
Σ: The input alphabet.
δ: The transition function. (δ:(Q-{h}) x Σ -> Q x Σ x {L,R,C})
s: starting state
h: end state

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

Configuration

A

A capture of the current state of the machine.
c = (Q?, #????, current letter, ???#)

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

A TM computes a function f(w) if:

A

hello

There is a certain number of transitions that lead from configuration (s, #w#) to configuration (h, #f(w)#)

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

Decidable language

A

A languadge L is decidable if there is a turing machine that can determine (in a finite amount of time) if a given string is in the language or not

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

e

Acceptable language

A

A language L is acceptable if there is a TM that will eventually accept and hault given a string w in L.

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

L is decidable -> L is acceeptable

A

True

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

L is acceptable -> L is decidable

A

False

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

L is decidable -> L̄ is decidable

A

True

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

L is acceptable -> L̄ is acceptable

A

False

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

Decidable languages are closed to ∪

A

True

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

Acceptable languages are closed to ∪

A

True

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

Post’s theorem

A

L̄, L are acceptable -> L is decidable

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