Why is Lognormal Distribution Important?

The lognormal distribution is commonly used to simulate the distribution of equities and commodity prices, exchange rates, and indices. The normal distribution is commonly used for modelling returns.

Lognormal Distribution

A Short Example

The stochastic differential equation is often used to represent equities.

dS = \mu S\ dt + \sigma S\ dX

results in a lognormal distribution for S, provided \mu and \sigma are not dependent on stock price.

A Deep Dive into Lognormal Distribution

Lognormal distribution occurs when a quantity’s logarithm follows a normal distribution, as defined.
The probability density function is:

\dfrac {1}{\sqrt {2\pi}bx}exp\left ( -\dfrac{1}{2b^{2}}(ln(x)-a)^{2} \right ) \ x \geq 0,

The values a and b > 0 indicate location and scale. The distribution is tilted to the right, reaching infinity and confined below by zero. (The left limit can be adjusted to add a parameter, or reflected vertically to extend to minus infinity.)

Using the preceding stochastic differential equation, the probability density function for S based on time and parameters is

\dfrac {1}{\sigma S 2\pi t}e^{-\left ( ln(S/S_0)-(\mu - \dfrac{1}{2}\sigma ^{2})t \right )^{2}/2\sigma ^{2}t}

where S_0 is the value of S at time t = 0.

Equity prices typically follow a random walk around an exponentially increasing average. Take the logarithm of the stock price and expect it to be normal around a mean. This is the non-mathematical explanation behind the lognormal distribution.

Lognormality can be supported mathematically by using the Central Limit Theorem. Using R_i to represent the random return on a stock price from day i-1 to day i, we get

S_1 = S_0 (1 + R_1 ),

The stock price increases with the return from day zero (beginning value) to day 1. Following the second day, we have

S_2 = S_1 (1 + R_2 ) = S_0 (1 + R_1 )(1 + R_2 )

After n days we have,

S_n = S_0 \prod _{i=1}^{n}(1 + R_i ),
Lognormal Distribution
The probability density function for the lognormal random walk evolving through time.

The stock price is calculated by multiplying the beginning value by n factors, where each factor represents one plus the random returns. Taking logarithms of this, we obtain

ln(S_n ) = ln(S_0 ) + n\sum _{i=1}^{n}ln(1 + R_i ),

the logarithm of a product being the sum of the logarithms.

Conclusion

Now consider the Central Limit Theorem. If each R_i is unpredictable, so is ln(1 + R_i). The expression for ln(S_n) is simply a big accumulation of random numbers. If the R_i are independent and identically distributed, and the mean and standard deviation of ln(1 + R_i) are finite, we can use the CLT to deduce that ln(S_n) is normally distributed. Thus, S_n is regularly distributed. The mean of ln(S_n) will rise linearly with the number of ‘days’ (or any defined time period), whereas the standard deviation will expand proportionally to the square root of n, similar to how time grows.

Related Readings

Leave a Reply

Your email address will not be published. Required fields are marked *