Question 9.3: Prove that NTIME(n) ⊊ PSPACE.

Prove that NTIME(n) \subsetneq SPACE.

The blue check mark means that this solution has been answered and checked by an expert. This guarantees that the final answer is accurate.
Learn more on how we answer questions.

NTIME(n)\subseteq NSPACE(n) because any Turing machine that operates in time t(n) on every computation branch can use at most t(n) tape cells on every branch. Furthermore, NSPACE(n)\subseteq SPACE(n^{2} ) due to Savitch’s theorem. However, SPACE(n^{2} )\subsetneq SPACE(n^{3} ) because of the space hierarchy theorem. The result follows because SPACE(n^{3} )\subseteq PSPACE.

Related Answered Questions

Question: 9.2

Verified Answer:

The containment TIME (2^{n}) ⊆ TIME (2^{2n+...
Question: 9.1

Verified Answer:

The time complexity classes are defined in terms o...