Probit Versus Logit Models
Two near-identical ways to model a yes/no outcome by squashing a linear score through an S-shaped curve — logit uses the logistic function, probit uses the normal distribution's CDF — and in practice they give almost the same answers, differing mainly in convenience and interpretation.
Prerequisites: Logistic Regression, Maximum Likelihood Estimation (MLE)
Ordinary linear regression predicts an unbounded number, but plenty of questions a quant faces are yes/no: will this bond default, will this trade fill, will this IPO price above range? Fit a straight line to a 0/1 outcome and it will happily predict probabilities of 1.4 or −0.2, which are meaningless. Probit and logit models fix this by squashing a linear score through an S-shaped curve that's pinned between 0 and 1 no matter how extreme the score gets — they just pick two very slightly different S-shapes to do it.
An analogy: two rulers that read almost the same
Imagine two rulers for measuring the same thing, one marked in a slightly different unit than the other but both spanning the same physical length. Convert between them and, for most everyday measurements, the numbers you get are close enough not to matter — the underlying quantity being measured is identical, only the labeling convention differs. Probit and logit are like this: both squash a linear score into a probability between 0 and 1, both fit by the same method, and for most datasets their fitted probabilities track each other almost exactly across the middle of the range. The real choice between them is about convenience of interpretation, not about which is "more correct."
The models, one piece at a time
Both start from the same linear score, , built exactly like an ordinary regression. The two models differ only in the function used to turn into a probability:
where is the cumulative distribution function of the standard normal distribution — the probability that a standard normal random variable falls below . In plain English: logit assumes the "noise" pushing an observation across the yes/no threshold follows a logistic distribution, while probit assumes that noise is normally distributed; both are symmetric, bell-shaped, S-curve-producing choices, and the logistic curve only has slightly fatter tails than the normal one. Both are fit by maximum likelihood, choosing to make the observed 0/1 outcomes as probable as possible under the model.
The practical difference is in the coefficients' scale, not their implied probabilities: logit coefficients are commonly reported as odds ratios (, how much the odds of the outcome multiply per unit of ), which has no clean probit equivalent — probit coefficients don't have a similarly popular closed-form interpretation and are usually reported as marginal effects on probability instead.
Worked example 1: predicting a bond default
A credit model scores a bond's default probability from its leverage ratio , fit by logit as . At (leverage ratio of 1), , and — about an 18.2% predicted default probability. A probit fit on the same data typically comes out close to (probit coefficients are usually smaller in magnitude, roughly by a factor of 1.6-1.7, because is steeper near the middle than the logistic function); at , , and — an 17.1% predicted probability, close to logit's 18.2%.
Worked example 2: odds ratio versus marginal effect
Suppose the logit fit above gives on leverage. The odds ratio is : each one-unit increase in leverage ratio multiplies the odds of default by about 4.48. This is a clean, scale-free statement. The equivalent probit marginal effect (the change in default probability, not odds, for a small change in near a given point) must instead be computed as where is the normal density — at , , giving a marginal effect of about , meaning roughly a 24-percentage-point increase in default probability per unit of leverage at that point on the curve — a number that itself changes at different points on the S-curve, unlike the odds ratio, which is constant everywhere.
Drag the mean and standard deviation to see the normal density that underlies the probit link — it's the slope of at each point, which is why probit's marginal effects vary across the curve while logit's odds ratios don't.
What this means in practice
Logit dominates in practice mainly because odds ratios are easy to communicate and logit is what most binary classifiers and credit-scoring models default to, but probit shows up wherever the modeling story is explicitly about an underlying normal latent variable — most notably as the first stage of a Heckman selection model (see The Heckman Selection Correction). For a quant deciding between them, the fitted probabilities and classification performance are usually nearly indistinguishable; the choice is about which coefficient interpretation the audience wants.
Logit and probit both map a linear score to a probability via an S-shaped curve, differing only in whether the curve is the logistic function or the normal CDF — the fitted probabilities are nearly identical in practice, and the real choice is between logit's clean odds-ratio interpretation and probit's normal-latent-variable framing.
The classic mistake is comparing raw logit and probit coefficients directly, as if a probit coefficient of 0.95 versus a logit coefficient of 1.5 meant the probit effect is weaker — it doesn't, the two models are simply on different internal scales (probit coefficients run roughly 1.6-1.7 times smaller because the normal density is more concentrated than the logistic density). Only compare them after converting to a common, meaningful quantity, such as the predicted probability or the marginal effect at a specific point.
Related concepts
Practice in interviews
Further reading
- Greene, Econometric Analysis, ch. 17