27.1 Assume a two-asset portfolio. Asset A has volatility of 20% and Asset B has volatility of 30%. The returns of the two assets have a correlation of 0.4. If each asset is weighted 50% (equally-weighted portfolio), what is the portfolio volatility?
a) 19.4%
b) 20.1%
c) 21.1%
d) 25.9%
27.1. C (21.1%) P(volatility) = SQRT[ weight_A^2*variance(A) + weight_B*variance(B) + 2*weight_A*weight_B*Covariance(A,B)] = SQRT [50%^2*20%^2 + 50%^2*30%^2 + 2*50%*50%*20*30%*0.4] = SQRT [0.0445] = 21.1%
Should 0.4 be covariance instead of correlation?
STDp = SQRT(w^2 * STD1^2 + (1 - w)^2 * STD2^2 + 2(w)*(1 - w)*Cov(R1,R2))
Where Cov(R1,R2) = Corr(R1,R2)STD1STD2
a) 19.4%
b) 20.1%
c) 21.1%
d) 25.9%
27.1. C (21.1%) P(volatility) = SQRT[ weight_A^2*variance(A) + weight_B*variance(B) + 2*weight_A*weight_B*Covariance(A,B)] = SQRT [50%^2*20%^2 + 50%^2*30%^2 + 2*50%*50%*20*30%*0.4] = SQRT [0.0445] = 21.1%
Should 0.4 be covariance instead of correlation?
STDp = SQRT(w^2 * STD1^2 + (1 - w)^2 * STD2^2 + 2(w)*(1 - w)*Cov(R1,R2))
Where Cov(R1,R2) = Corr(R1,R2)STD1STD2