it explains why naive offline Q-learning must fail — extrapolation error is amplified by Bellman bootstrapping (bootstrapping error amplification): updating
Q(s,a)←r+γmaxa′Q^(s′,a′), the
max operator selects the most erroneous
a′, so the error propagates round after round, Q inflates globally, and the policy drifts toward OOD actions; hence conservative offline algorithms (CQL, IQL, BCQ).