Machine Learning & AI
Advanced
Bellman Equation
Expresses the value of a state as the best immediate reward plus discounted future value.
Formula
Variables
V(s)State value
RReward
\gammaDiscount factor
PTransition probability
Example
gamma near 1 values the long-term future
Did You Know?
Richard Bellman coined "dynamic programming" — and the "curse of dimensionality" — in the 1950s.
Share this formula
More in Machine Learning & AI
View allLinear Regression Model
BasicPredicts a continuous value as a weighted sum of input features plus a bias.
Gradient Descent Update
BasicIteratively moves parameters in the direction that most reduces the loss.
ReLU Activation
BasicRectified Linear Unit: outputs the input if positive, else zero.
Leaky ReLU
BasicA ReLU variant that lets a small gradient flow for negative inputs.
Tanh Activation
BasicSquashes input to the range (-1, 1); zero-centred activation.
Softmax
BasicTurns a vector of scores into a probability distribution that sums to 1.