4

If $X$ is distributed normally $N(\mu,\sigma^2)$ then the variable $Y = \exp(X)$ is lognormally distributed.

If the variable $Y$ is multiplied by some constant $C$:

$$D = CY$$

Is the variable $D$ also lognormally distributed?

Yes it is since:

$$D = C\exp(X)$$ $$\log(D) = \log(C\exp(X)) = \ln(C) + X$$ $$X + \ln(C) \sim N(\mu + ln(C), \sigma^2)$$ $$D \sim \ln N(\mu + ln(C), \sigma^2)$$

egg
  • 845
  • 10
  • 25
  • 2
    If $Z$ is normally distributed, what's the distribution of $Z+a$? – Glen_b Jul 19 '16 at 10:51
  • $Z$ will be normal $N(\mu_Z+\alpha,\sigma_Z^2)$. So I suppose this means that $D$ is my question is lognormally distributed. – egg Jul 19 '16 at 10:53
  • Yes, Z+a is normal so exp(Z+a) is lognormal. If you want to answer yourself, go ahead. If not I'll probably put an answer sometime soon – Glen_b Jul 19 '16 at 22:38

1 Answers1

2

The multiple of a lognormal variable is also lognormally distributed.

$$X \sim \mathcal{N}(\mu,\sigma^2)$$ $$Y = e^X$$ $$CY = Ce^X$$

The random variable $CY$ is lognormally distributed since:

$$\ln(CY) = \ln(Ce^X)=\ln(C)+\ln(e^X)=\ln(C)+X$$

Note that:

$$\ln(C) + X \sim \mathcal{N}(\mu + \ln(C), \sigma^2)$$

Therefore $CY$ is lognormally distributed $CY \sim \ln \mathcal{N}(\mu + \ln(C), \sigma^2)$

egg
  • 845
  • 10
  • 25