Loading...
Loading...
Loading Curriculum...
Loading Subject...
Loading Topic...
Loading Lesson...
Loading Lab...
An MDP is the mathematical model behind most reinforcement learning: states, actions, transition probabilities, and rewards. The “Markov” assumption says the future depends only on the current state and action.
An MDP is a 5-tuple (S, A, P, R, γ).
Given a fixed policy π, you can compute V^π by repeatedly applying the Bellman backup.
Press Step to sample action from π and then sample next state from P(·|s,a). Terminal ends the episode; the next Step starts a new episode at A.
Change how “slippery” action left in state A is: it either stays in A or accidentally moves to B.
Small changes here explain big behaviors in real RL.