Visualise the time/space tradeoff for typical algorithms.
Time and space measure two different resources of a Turing machine: how many steps it takes vs how many distinct tape cells it uses. The two are related but not identical, captured by Sipser's fundamental sandwich theorem.
For any space-constructible function f(n) ≥ log n:
TIME(f(n)) ⊆ SPACE(f(n)) ⊆ TIME(2O(f(n)))
Both inclusions have one-line proofs:
P ⊆ PSPACE ⊆ EXPTIME. Each containment is via the sandwich theorem at a specific scale.
Sipser: §8.1 (space complexity). Lecture notes: Module 6 slide 1. Companion problems: P34 (Savitch tree), P35 (PSPACE vs NPSPACE), P63 (NP ⊆ EXPTIME).