2.14.1 Lognormal Flashcards
(12 cards)
What is a lognormal distribution?
A distribution where the logarithm of the variable is normally distributed.
What’s the key relationship between the normal and lognormal distributions?
If X ~ Lognormal(μ, σ), then ln(X) ~ Normal(μ, σ)
What is the PDF of a lognormal distribution?
f(x) = (1 / (xσ√(2π))) * exp( - (ln(x) - μ)² / (2σ²) ), for x > 0
How is the CDF of a lognormal computed?
Use Φ((ln(x) - μ) / σ), where Φ is the standard normal CDF
What is the mean of X ~ Lognormal(μ, σ)?
E[X] = exp(μ + σ² / 2)
What is the variance of X ~ Lognormal(μ, σ)?
Var(X) = (exp(σ²) - 1) * exp(2μ + σ²)
Are μ and σ the mean and standard deviation of X?
No — they are the mean and standard deviation of ln(X)
What happens when you multiply independent lognormal variables?
Their product is also lognormal
What parameters result from multiplying X_i ~ Lognormal(μ_i, σ_i)?
The product is Lognormal(Σμ_i, Σσ_i²)
How do you calculate a percentile of a lognormal variable?
Take z such that Φ(z) = desired percentile → x = exp(μ + zσ)
What trick helps identify a lognormal in compound expressions?
Look for exponentials of sums of normal variables
How do you define a lognormal variable using a normal variable?
If Y ~ Normal(μ, σ), then X = e^Y is Lognormal(μ, σ)