Page 1 of 1
Multivariate Monte Carlo with non-normal RVs
Posted: February 6th, 2008, 2:05 pm
by Shagbag
I've read that decomposition of a correlation matrix (Cholesky or Spectral) is only valid if all of the random variables have a normal distribution. Is this correct? If so, how do I correlate random numbers chosen from different probability distributions?
Multivariate Monte Carlo with non-normal RVs
Posted: February 7th, 2008, 10:44 am
by volabos
There is no relation between normality and matrix decomposition. The job of choleski decomposition is to find "square root" of a PD matrix. As the square root of a positive number not unique, "square root" of a matrix similarly not unique. You can use SVD etc to get the same, all are correct. But Choleski procedure is mostly adopted bcoz it requires least calculation. As upper diagonal (or lower diagonal) elements are all 0.Regards,
Multivariate Monte Carlo with non-normal RVs
Posted: February 7th, 2008, 4:24 pm
by Shagbag
Thanks.
Multivariate Monte Carlo with non-normal RVs
Posted: February 7th, 2008, 4:25 pm
by Shagbag
Thanks.
Multivariate Monte Carlo with non-normal RVs
Posted: February 9th, 2008, 7:14 pm
by GreekMartingale
in principle you can use choleski, however for non normal distributions correlation can be non sensical for comovement between rvs
Multivariate Monte Carlo with non-normal RVs
Posted: February 13th, 2008, 3:23 pm
by Shagbag
Thanks. Yes, I have just read Chapter 5 of Peter Jackel's book "Monte Carlo Methods in Finance" and it's clear to me now. I was confusing the two separate issues of Cholesky Decomposition and Linear Correlation. It's the matrix of linear correlation coefficients that can lead to nonsense results if the RVs are not all normal.