Imagine a small robot in a grid. It wants to reach a charging pad and avoid a pit. It can move up, down, left or right — but the floor is slippery, so a chosen move only usually lands where intended. Sometimes it slides sideways. How should the robot act, in every square, to collect the most reward over time?
That question is a Markov decision process (MDP). You give it four ingredients: a set of states (the squares), a set of actions (the moves), the transition probabilities (the odds each action lands you somewhere), and a reward for each step. The word Markov means the future depends only on where you are now, not on the path that got you there.
The answer an MDP hands back is not a single route. It is a policy: a recommended action for every possible state, so that no matter where luck drops you, you already know the best thing to do.
Comments
Loading comments...