Questions: EXPTIME and EXPSPACE Complexity Classes

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A researcher claims: 'Since EXPTIME-complete problems and NP-complete problems are both considered computationally intractable, the two complexity classes must be roughly equivalent in hardness.' What is the most important flaw in this reasoning?

AEXPTIME-completeness is a *proven* hardness guarantee — P ≠ EXPTIME follows from the time hierarchy theorem — while NP-completeness is only conjectured hard because P ≠ NP remains unproven
BNP-complete problems are actually harder than EXPTIME-complete problems because they can be verified in polynomial time, a stricter requirement
CThe two classes are equivalent; calling either 'harder' is meaningless because both are intractable for large inputs
DEXPTIME-complete problems are easier than NP-complete problems because exponential time is a weaker restriction than nondeterminism
Question 2 Multiple Choice

Why do two-player perfect-information games like generalized chess fall in EXPTIME rather than NP?

AA winning strategy must specify a response to every possible opponent move at every turn, forming an exponentially large game tree that cannot be compressed into a polynomial-time verifiable certificate
BTwo-player games require solving NP-hard subproblems at each move, compounding exponentially across the game tree
CThe rules of chess are too complex to be verified by a polynomial-time algorithm, making any winning strategy unverifiable
DTwo-player games involve randomness in move selection, making them incompatible with the deterministic verification required for NP membership
Question 3 True / False

The existence of EXPTIME-complete problems proves that P ≠ EXPTIME, meaning some problems genuinely require super-polynomial time regardless of how clever the algorithm is.

TTrue
FFalse
Question 4 True / False

If P = NP were someday proved, it would follow that most EXPTIME-complete problems are also solvable in polynomial time, since NP ⊆ EXPTIME.

TTrue
FFalse
Question 5 Short Answer

Explain why EXPTIME-complete problems are considered to have a *stronger* hardness guarantee than NP-complete problems, even though both are practically intractable for large instances.

Think about your answer, then reveal below.