• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Pg. 51 of Green Book (correlation among 3 variables)

sak

Joined
8/16/09
Messages
84
Points
18
The question is: 3 random variables x, y, z. Correlation between x and y is 0.8 and between x and z is 0.8. Find maximum and minimum correlation between y and z.

I don't think we have sufficient information for solving this. All correlation does is provides us information about linear relation between two variables and has no information regarding the amount of variation of one variable when the other changes i.e. slope.

So, the solution appears incorrect to me. What am I missing here?

Thanks
 
That question has already been asked in this forum. I don't remember the answer, however, it is clear that there must be some realation. For example, if the correlations were 1 instead of 0.8, the correlation between y and z should also be 1.
 
My problem is not how to solve it but the solution in the Green Book using cos(theta) = 0.8 seems incorrect to me as I do not agree that angle between two vectors can be decided by correlation between them as has been assumed in the solution.
 
Think of each variable as a vector. If you centre and standarize each vector (to each entry subtract the mean and divide by stadnard deviation) Then the product of those two vectors (which would be the formula for correlation) would be the cos of the angle.
 
Remember that the a correlation matrix is positive semi-definite, so its determinant must be larger than or equal to zero. From this, you can easily work out the appropriate range for the missing correlation.
 
Remember that the a correlation matrix is positive semi-definite, so its determinant must be larger than or equal to zero. From this, you can easily work out the appropriate range for the missing correlation.
I don't think this is a sufficient condition in general, all principal minors need to be be nonnegative. (In this case it may be sufficient).
 
Back
Top