#has-images #reading-9-probability-concepts
Variance and standard deviation measure the dispersion of a single random variable. Often times, we want to know the relationship between two variables. For example, what is the relationship between the performance of the S&P 500 and that of U.S. long-term corporate bonds? We can use covariance and correlation to measure the degree to which two random variables are related to each other.
Given two random variables, Ri and Rj, the covariance between the two variables is:
Facts about covariance:
Suppose that the future short-term outlook for the economy is favorable with a probability 0.6 and unfavorable with a probability of 0.4. For two stocks, F and G, returns are 0.25 and 0.2, respectively, in favorable conditions, and 0.01 and 0.02, in unfavorable conditions. Calculate cov (Rf, Rg).
We must firstly calculate the expected value of the return on each stock:
E[Rf] = 0.6 x 0.25 + 0.4 x 0.01 = 0.154
E[Rg] = 0.6 x 0.2 + 0.4 x 0.02 = 0.128
cov (Rf, Rg) = E[{Rf - E(Rf)} x {Rg - E(Rg)}] = 0.6 x [{0.25 - 0.154}x {0.2 - 0.128}] + 0.4 x [{0.01 - 0.154}x {0.02-0.128}] = 0.010368
The fact that the answer is positive indicates that the return on both stocks is above (or below) the expected value at the same time. We know that this is the case because both returns are higher in favorable conditions and lower in unfavorable conditions. Had we obtained a negative answer, logic would have told us that we had made an error somewhere.
The correlation between two random variables, Ri and Rj, is defined as:
Alternative notations are corr(Ri, Rj) and ρij.
Properties of correlation:
The relationship among covariance, standard deviation, and correlation:
Using the figures from the previous example, we first need to calculate the two standard deviation terms:
Var(Rf) =[{Rf - E(Rf)}2] x P(Rf) = 0.6 x [{0.25-0.154}2] + 0.4 x [{0.01-0.154}2] = 0.013824. Hence, σ(Rf) = 0.117576
Var(Rg) = [{Rg - E(Rg)}2] x P(Rg) = 0.6 x [{0.2-0.128}2] + 0.4 x [{0.02-0.128}2] = 0.007776. Hence, σ(Rg) = 0.088182
Also, we know that cov(Rf,Rg) = 0.010368.
So, correlation = ρ(Rf, Rg)= cov(Rf, Rg) / σ(Rf) x σ(Rg) = 0.010368 / (0.117576 x 0.088182) = 0.99999.
This indicates an almost perfect positive linear relationship between Rf and Rg.
Calculate covariance given a joint probability function:
We can calculate covariance using the joint probability function of the random variables if that can be estimated. The joint probability function of two random variables, X and Y, denoted P(X, Y), gives the probability of joint occurrences of values X and Y. For example, P(3, 2) is the probability that X equals 3 and Y equals 2.