Serving the Quantitative Finance Community

 
User avatar
khamsing
Topic Author
Posts: 0
Joined: May 12th, 2005, 7:13 am

Positive Semi definite matrix and Cholesky

July 18th, 2005, 8:05 pm

Hi everyone!I am probably going to ask a silly question but I used the Cholesky VBA code found in Wilmott on Quanitative finance and so far all the correlation matrix I have could be factorize. Does than mean that all my matrix are positive semi definite? Many thanks in advance!
 
User avatar
Antonio
Posts: 8
Joined: June 30th, 2004, 3:13 pm
Location: Imperial College London
Contact:

Positive Semi definite matrix and Cholesky

July 19th, 2005, 1:16 pm

You're dealing with correlation matrix, therefore...
 
User avatar
Tomski
Posts: 0
Joined: July 7th, 2004, 6:15 am

Positive Semi definite matrix and Cholesky

July 19th, 2005, 2:12 pm

Use the methods proposed by Peter Jackel (spectral sqaure root of symmetric matrix) rather than cholesky.
 
User avatar
AlphaNumericus
Posts: 0
Joined: December 25th, 2004, 9:17 pm

Positive Semi definite matrix and Cholesky

July 20th, 2005, 3:18 am

Suppose, for example, your matrix has the historical covariances of various spot fx rates (to USD). Suppose one of the currencies is tied to a basket of other currencies, i.e. its exchange rate is always the same linear combination of some other currencies' exchange rates to USD. Then it will give rise to a zero eigenvalue and Choleski will fail. Choleski needs positive definite matrices to work, while correlation matrices may be non-negative definite.