Skip to content

Home / Glossary / Normal Distribution

Statistics

Normal Distribution

Bell-shaped probability distribution defined by mean and std dev.

Financial returns are often modelled as normally distributed (though in reality they have fat tails). The normal distribution underlies Black-Scholes option pricing and many risk models.

Example

import numpy as np
np.random.normal(loc=0.001, scale=0.015, size=252)

Practise Normal Distribution hands-on — free, in your browser

Related terms