What is the difference between probability and likelihood?
Answer
Probability and likelihood use the same joint density but read it in opposite directions. Probability fixes the parameters
and asks how plausible different data
are; likelihood fixes the observed data and asks which parameter values would have made that data plausible. A probability distribution must sum or integrate to 1 over all possible data; a likelihood carries no such constraint over the parameters. Maximum likelihood estimation is exactly this direction flip: hold the sample fixed and choose
to make the observed data as probable as possible.
(1) Same Formula, Two Directions: with fixed,
is a probability over data; with
fixed at the observed sample, the same expression becomes the likelihood
, a function of
.
(2) Normalization: probabilities integrate to 1 over all possible data, while likelihoods do not integrate to 1 over , so a likelihood is never “the probability of the parameter”.
(3) Where Each Is Used: probability drives prediction and simulation of unseen data; likelihood drives parameter estimation. Amazon’s DeepAR forecaster is trained by maximizing the likelihood of observed demand series, then at inference emits probability distributions over future demand.

Figure 1: The same density viewed two ways. With fixed, the curve over data values is a probability distribution and integrates to 1 (left). With the data fixed at the observed sample, the curve over
is the likelihood (right), whose peak is the maximum likelihood estimate.
Mathematical Formulation:
Where:
is the observed data and
the model parameters.
is the density of the data under parameters
;
is the same expression read as a function of
.
with
indexes independent samples, so the joint likelihood factorizes into a product and the logarithm turns it into a sum.
| Feature | Probability | Likelihood |
|---|---|---|
| What Varies | The data | The parameters |
| What Is Fixed | The parameters | The observed data |
| Normalization | Binomial example: P(X = 3) = C(10,3)*0.3^3*0.7^7 = 0.267 | No constraint over |
| Answers | “What data should I expect?” | “Which parameters fit the data I saw?” |
| Typical Use | Prediction, simulation, p-values | Estimation (MLE), model comparison |