mtal
- 5
- 0
Hello,
Let X be a set of N lognormal prices (in dollars), meaning
\log(X) = Y \sim MN(\mu_Y , \Sigma_Y) ,
i.e. the log of X follows a multivariate normal distribution.
Imagine now that one wants to compute various quantiles for this set, e.g. 2.5%, 50% and 97.5\%, and does this by simulating 100k draws from the distribution above.
You then get say a 100k \times N matrix, and to get the total value you'd find these three quantiles for each of the N prices, resulting in a N \times 3 matrix of quantiles, and then simply add up each of the three columns giving three numbers which represent the total quantiles for the whole set.
So, my question is:
How would one go about transforming the information for the quantiles for the whole set from log-dollars to dollars?
I am of course aware of the exponential function, so what I'm asking is how and where in this process do I use it?
------------------------------------------------------------------------------------------------------------------------------------------------------
My main idea is this:
The three final quantiles, 2.5%, 50% and 97.5\%, represent the log-quantiles of the set as a whole, say V_{2.5\%}, V_{50\%} and V_{97.5\%}. They also have their log/exp-counterparts, e.g. V_{50\%} = log(X_{50\%}).
Now, the difference between, for example, the 50% and 2.5%, V_{50\%} - V_{2.5\%} could then be represented as
log(X_{50\%}) - log(X_{2.5\%}) = log\left(\frac{X_{50\%}}{X_{2.5\%}}\right),
meaning that the log difference can be interpreted as log-proportional difference. Thus one could just exp and inverse this value and get
exp \left( log \left( \frac{ X_{50\%} }{ X_{2.5\%} } \right) \right)^{-1} = \frac{X_{2.5\%}}{X_{50\%}}
which gives you the proportional difference of the quantiles in dollars, instead of log-dollars. With this information the 2.5% quantile can be obtained by multiplying X_{2.5\%} with the mean of the N prices.
Or am I way off here?
Any help is greatly appreaciated.
Let X be a set of N lognormal prices (in dollars), meaning
\log(X) = Y \sim MN(\mu_Y , \Sigma_Y) ,
i.e. the log of X follows a multivariate normal distribution.
Imagine now that one wants to compute various quantiles for this set, e.g. 2.5%, 50% and 97.5\%, and does this by simulating 100k draws from the distribution above.
You then get say a 100k \times N matrix, and to get the total value you'd find these three quantiles for each of the N prices, resulting in a N \times 3 matrix of quantiles, and then simply add up each of the three columns giving three numbers which represent the total quantiles for the whole set.
So, my question is:
How would one go about transforming the information for the quantiles for the whole set from log-dollars to dollars?
I am of course aware of the exponential function, so what I'm asking is how and where in this process do I use it?
------------------------------------------------------------------------------------------------------------------------------------------------------
My main idea is this:
The three final quantiles, 2.5%, 50% and 97.5\%, represent the log-quantiles of the set as a whole, say V_{2.5\%}, V_{50\%} and V_{97.5\%}. They also have their log/exp-counterparts, e.g. V_{50\%} = log(X_{50\%}).
Now, the difference between, for example, the 50% and 2.5%, V_{50\%} - V_{2.5\%} could then be represented as
log(X_{50\%}) - log(X_{2.5\%}) = log\left(\frac{X_{50\%}}{X_{2.5\%}}\right),
meaning that the log difference can be interpreted as log-proportional difference. Thus one could just exp and inverse this value and get
exp \left( log \left( \frac{ X_{50\%} }{ X_{2.5\%} } \right) \right)^{-1} = \frac{X_{2.5\%}}{X_{50\%}}
which gives you the proportional difference of the quantiles in dollars, instead of log-dollars. With this information the 2.5% quantile can be obtained by multiplying X_{2.5\%} with the mean of the N prices.
Or am I way off here?
Any help is greatly appreaciated.