ML Math / Algo · 2026-03-10

Algorithms for Decision Making — Study Skeleton

A lightweight topic map for future deep dives in ML math and algorithms.

Reference source for study planning:

This is a skeleton only for topics and sequencing.

Topic map

Suggested progression

flowchart LR
  A[Probability] --> B[Decision Theory]
  B --> C[Dynamic Programming]
  C --> D[MDPs]
  D --> E[Planning Under Uncertainty]
  E --> F[Approximate Methods]
One possible study sequence

Core equation placeholders

Bellman-style recursion template:

V(s)=maxa[R(s,a)+γsP(ss,a)V(s)]V^*(s)=\max_a\left[R(s,a)+\gamma\sum_{s'}P(s'\mid s,a)V^*(s')\right]

Bayesian update template:

P(θx)=P(xθ)P(θ)P(x)P(\theta\mid x)=\frac{P(x\mid\theta)P(\theta)}{P(x)}

Next iterations

  1. Fill one worked example per topic.
  2. Add one coding notebook or script per section.
  3. Connect each concept to one real decision problem.