Questions: Linear Bounded Automata

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A pushdown automaton can recognize {aⁿbⁿ | n ≥ 1} — equal numbers of a's and b's. Why can't a PDA recognize {aⁿbⁿcⁿ | n ≥ 1}, and how does an LBA handle it?

APDAs can recognize {aⁿbⁿcⁿ} — the claim that they cannot is a misconception; both PDAs and LBAs handle this language
BA PDA can count one group against another using its stack, but after matching a's against b's the stack is empty and cannot track the c's; an LBA uses its bounded tape as scratch memory to scan back and forth, counting all three groups
CPDAs fail because they are nondeterministic; a deterministic PDA (DPDA) can handle {aⁿbⁿcⁿ} by using multiple stack symbols
DAn LBA succeeds because it has a larger alphabet, allowing it to mark visited cells with special symbols not available to a PDA
Question 2 Multiple Choice

An LBA's tape is bounded to the length of its input. Despite this restriction, the number of distinct configurations an LBA can be in grows with input length n as:

APolynomially in n — bounded tape means bounded configurations
BLinearly in n — proportional to the tape length
CExponentially in n — because each of the n tape cells can hold any of |Γ| symbols, the head can be at n positions, and the machine can be in |Q| states
DDoubly exponentially in n — because each configuration can branch into exponentially many successors
Question 3 True / False

The question of whether deterministic LBAs recognize all context-sensitive languages — equivalently, whether DLBA = NLBA — remains an open problem in computability theory.

TTrue
FFalse
Question 4 True / False

An LBA recognizes most recursively enumerable languages, since it is a type of Turing machine with primarily a minor restriction on tape usage.

TTrue
FFalse
Question 5 Short Answer

What does the Immerman-Szelepcsényi theorem say about context-sensitive languages, and why is the result non-obvious for nondeterministic machines?

Think about your answer, then reveal below.