Monte Carlo (MC) updates from the full episode return, defined as discounted cumulative reward
Gt=∑k=0T−t−1γkrt+k+1, where
T is the terminal time step,
rt+k+1 the reward
k+1 steps after
t, and
γk the discount; the update is
V(st)←V(st)+α[Gt−V(st)].Since
Gt is an unbiased sample estimate of
vπ(st) (real samples only, no reliance on current estimates), MC is unbiased; but it sums
T−t stochastic rewards, so variance grows with episode length and
γ, and learning must wait until episode end — episodic tasks only.