A flat distribution of defaults
Take a basket of credits. Each one defaults with the same probability , and every pair of them has the same asset correlation . How many defaults should you expect, and how are they distributed?
Two cases are easy. If the names are independent, the count is binomial. If they are perfectly correlated they share one fate: either none default or all of them do. Everything between those two needs numerical work.
Except at one point, where the answer is as simple as an answer can be.
The model
This is the Gaussian copula, the standard model for a credit basket. Each name has a latent asset return, and the name defaults when that return falls below a threshold. Matching the threshold to the default probability puts it at standard deviations.
Correlation enters through a single market factor :
where is noise particular to name . Conditional on the market β once is known β the names are independent, so the number of defaults is binomial with a shifted probability. Integrating that binomial over the market factor gives the distribution:
That integral normally wants a quadrature rule. Which is the point: closed-form answers are scarce here, and scarce enough that a single one is worth having, if only to check the numerical methods against.
The special case
Look at . It would be much friendlier if were zero β that is, if . And friendlier still if the and matched, which happens when . Put both together and the conditional probability collapses to
Substituting turns the integral into a beta integral, and out comes . But there is a better route that needs no calculus at all.
With and the factor model is just
and name defaults when β equivalently when . Write , and name defaults exactly when .
So the number of defaults is the number of the βs that exceeds. Sort and the noise terms into one list. They are identically distributed continuous random variables, so is equally likely to land in any of the positions. Therefore
Every outcome β no defaults, one default, all of them β is equally likely. The distribution is flat, and it stays flat for any .
Try it
Move the correlation and watch the binomial spread out, flatten, and then collapse toward the two-point distribution at . The dashed line marks . It is only the answer at one setting, but you can see the shape pass through it.
What to look for
The mean never moves. Slide the correlation from zero to one and the expected number of defaults stays at throughout. Correlation does not change how likely any individual name is to default; it changes only how much they default together. Everything correlation does, it does to the shape.
The tails are what correlation buys. At low correlation the distribution concentrates near the mean and the extremes are negligible. Raise it and probability drains out of the middle into both ends β many defaults at once becomes far more likely, and so does none at all. This is the whole reason correlation matters for a tranche: a senior tranche only takes losses in the right tail, which barely exists at low correlation and is substantial at high.
Flat is not the same as random. A uniform distribution over defaults looks like the least informative outcome possible, but it comes from a very specific pair of parameters. Move either one and the flatness goes.
Notes
The distribution is computed by numerical integration over the market factor, using a composite Gauss-Legendre rule with panels placed on the transition region β as approaches 1 the conditional default probability becomes nearly a step function in , and a fixed grid misses it. At the computed values agree with to machine precision, which is the tightest check available: the code has to reproduce an exact identity, not merely come close.
This page follows Pete Benson, βDistribution of Defaults in a Credit Basket: An Interesting Special Caseβ, RiskMetrics Journal, Vol. 6, No. 1, Winter 2005, pp. 3β8. Per the editorβs note in that issue, the result became a standard interview question at RiskMetrics.