Game Theory DP handles adversarial opponents who play optimally. But what if outcomes are random? Probability DP computes expected values when transitions are stochastic.
Instead of min/max, you take weighted averages. The state design is similar, but transitions sum over possibilities weighted by probabilities. Make sure you understand game theory DP's minimax logic. Probability DP replaces adversarial choices with probabilistic outcomes.