Serving the Quantitative Finance Community

 
User avatar
Shagbag
Topic Author
Posts: 0
Joined: February 5th, 2008, 2:30 pm

Multivariate Monte Carlo with non-normal RVs

February 6th, 2008, 2:05 pm

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?
 
User avatar
volabos
Posts: 0
Joined: September 11th, 2007, 10:49 am

Multivariate Monte Carlo with non-normal RVs

February 7th, 2008, 10:44 am

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,
 
User avatar
Shagbag
Topic Author
Posts: 0
Joined: February 5th, 2008, 2:30 pm

Multivariate Monte Carlo with non-normal RVs

February 7th, 2008, 4:24 pm

Thanks.
 
User avatar
Shagbag
Topic Author
Posts: 0
Joined: February 5th, 2008, 2:30 pm

Multivariate Monte Carlo with non-normal RVs

February 7th, 2008, 4:25 pm

Thanks.
 
User avatar
GreekMartingale
Posts: 0
Joined: March 22nd, 2007, 10:08 pm

Multivariate Monte Carlo with non-normal RVs

February 9th, 2008, 7:14 pm

in principle you can use choleski, however for non normal distributions correlation can be non sensical for comovement between rvs
 
User avatar
Shagbag
Topic Author
Posts: 0
Joined: February 5th, 2008, 2:30 pm

Multivariate Monte Carlo with non-normal RVs

February 13th, 2008, 3:23 pm

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.