Loading...
Loading...
Loading Curriculum...
Loading Subject...
Loading Topic...
Loading Lesson...
Loading Lab...
The Bellman equation is the core “backup” identity behind dynamic programming and modern reinforcement learning. In this simulation, you’ll watch values update step-by-step as the equation propagates information through an MDP.
Read it as: value = immediate reward + discounted next value, averaged over what happens next. The only difference is whether you average over a policy (expectation) or take the best action (optimality).
Each step costs -1. From D, going right reaches terminal with reward +10. Value iteration uses the Bellman equation to push that information backward.