Why tabular methods don't scale
Every algorithm in the previous lessons stores one number per state (or state-action pair). For Atari, the raw pixel state space has roughly distinct frames — storing a table is physically impossible. For continuous control (robot joints, financial portfolios), the state space isn't even countable.
Function approximation replaces the table with a parameterised function or , where are the weights of a neural network. The network generalises from visited states to nearby unseen ones.
The shift introduces new failure modes: the value function is no longer guaranteed to converge, updates can destabilise each other, and the "deadly triad" can cause divergence. Understanding these risks is as important as understanding the algorithms.
