What does the Bellman equation say?
mediumAnswer
- For a policy pi: .
- For the optimal value: E[r + gamma · V*(s')].
- It expresses the value of a state as the immediate reward plus the discounted value of the next state.
- Solving the Bellman equation is the core of dynamic programming, TD learning, and Q-learning.
Check yourself — multiple choice
- V(s) = r + V(s') without discount
- The Bellman equation applies only to episodic tasks
- It says V(s) = R for all s
Recursive value = expected immediate reward + discounted next value.
#theory
Practise Reinforcement Learning
214 interview questions in this topic.