Mathematical Psychology
About

Multinomial Logit Model

The multinomial logit model expresses choice probabilities as a softmax function of utility differences, providing the standard econometric model for discrete choice with the IIA property.

P(i) = exp(Vᵢ) / Σ exp(Vⱼ)

The multinomial logit (MNL) model, derived by McFadden (1974, Nobel Prize 2000), is the workhorse model of discrete choice in economics, marketing, and transportation. It expresses the probability of choosing each alternative as a softmax function of systematic utility, and is mathematically equivalent to Luce's Choice Axiom applied to utilities measured on a ratio scale.

The Model

Multinomial Logit Uᵢ = Vᵢ + εᵢ (utility = systematic + random)
εᵢ ~ iid Gumbel (Type I extreme value)

P(choose i) = exp(Vᵢ) / Σⱼ exp(Vⱼ)
Vᵢ = β₁x_{i1} + β₂x_{i2} + ... (linear in parameters)

IIA Property and Limitations

The MNL inherits the IIA property from its Gumbel error assumption: the odds ratio P(i)/P(j) = exp(Vᵢ − Vⱼ) is independent of other alternatives in the choice set. This makes estimation simple but produces the "red bus/blue bus" problem — adding a second bus route halves the market share of the existing bus rather than drawing proportionally from all modes. Nested logit, mixed logit, and probit models relax IIA by allowing correlated errors.

In psychology, the softmax function appears in reinforcement learning models (as the action selection rule), neural network models (as the output layer for classification), and rational models of categorization. The temperature parameter τ in softmax P(i) = exp(Vᵢ/τ)/Σexp(Vⱼ/τ) controls the tradeoff between exploitation (low τ, choosing the best option) and exploration (high τ, choosing randomly).

Related Topics

References

  1. McFadden, D. (1974). Conditional logit analysis of qualitative choice behavior. In P. Zarembka (Ed.), Frontiers in Econometrics (pp. 105–142). Academic Press. https://doi.org/10.1108/eb028592
  2. Luce, R. D. (1959). Individual Choice Behavior: A Theoretical Analysis. Wiley. https://doi.org/10.1037/14396-000
  3. Train, K. E. (2009). Discrete Choice Methods with Simulation (2nd ed.). Cambridge University Press. https://doi.org/10.1017/CBO9780511805271
  4. McFadden, D. (2001). Economic choices. American Economic Review, 91(3), 351–378. https://doi.org/10.1257/aer.91.3.351

External Links