Portfolio Theory
Difficulty Level: 2 — Recall: definitions, standard textbook problems, short derivations Time Limit: 30 minutes Total Marks: 50
Instructions: Answer all questions. Show working where calculations are required. Use notation for any mathematical expressions.
Question 1. [4 marks] Define diversification and briefly explain why combining assets with low or negative correlation reduces overall portfolio risk.
Question 2. [4 marks] Two stocks A and B have standard deviations and . Their correlation coefficient is . Calculate the covariance .
Question 3. [6 marks] A portfolio consists of 60% in stock A and 40% in stock B. Given , , and , calculate the portfolio standard deviation.
Question 4. [5 marks] State the CAPM formula, defining every symbol. Then calculate the expected return of a stock with when the risk-free rate is and the expected market return is .
Question 5. [4 marks] Distinguish between systematic risk and unsystematic risk. Give one example of each and state which one can be diversified away.
Question 6. [6 marks] A portfolio has an expected return of , a risk-free rate of , and a standard deviation of . Calculate the Sharpe ratio. Then, if the portfolio's beta is , calculate the Treynor ratio.
Question 7. [5 marks] Define the efficient frontier. Explain what distinguishes a portfolio that lies on the efficient frontier from one that lies below it.
Question 8. [6 marks] A fund returned over a period. Its beta is , the risk-free rate is , and the market returned . Calculate the fund's alpha using CAPM. State whether the fund outperformed its benchmark.
Question 9. [4 marks] Explain the difference between the Sharpe ratio and the Sortino ratio. What advantage does the Sortino ratio offer to investors concerned about downside risk?
Question 10. [6 marks] Describe the Security Market Line (SML). State what is plotted on each axis, its intercept and slope, and explain how an asset plotting above the SML is interpreted.
End of paper.
Answer keyMark scheme & solutions
Question 1. [4 marks]
- Definition: Diversification is the practice of spreading investment across multiple assets to reduce risk without necessarily sacrificing expected return. (2)
- Explanation: When assets have low/negative correlation, their price movements partially offset one another; losses in one are cushioned by gains (or smaller losses) in another, so portfolio variance is less than the weighted average of individual variances. (2)
Question 2. [4 marks] Formula: (1) (3) (Equivalently or .)
Question 3. [6 marks] Formula: (1) Substitute: (2)
Sum (2) (1)
Question 4. [5 marks] CAPM: (2) where = risk-free rate, = beta (sensitivity to market), = expected market return, = market risk premium. (1) Calculation: (2)
Question 5. [4 marks]
- Systematic risk: market-wide risk affecting all assets, cannot be diversified away (e.g. interest-rate changes, recession, inflation). (2)
- Unsystematic risk: firm/industry-specific risk, can be eliminated through diversification (e.g. a company lawsuit, product failure). (2) Award marks for correct examples and stating unsystematic risk is diversifiable.
Question 6. [6 marks] Sharpe ratio: (1) (2) Treynor ratio: (1) (2)
Question 7. [5 marks]
- Definition: The efficient frontier is the set of optimal portfolios offering the highest expected return for each level of risk (or lowest risk for each return level). (2)
- A portfolio on the frontier is efficient — no other portfolio gives higher return for the same risk. (2)
- A portfolio below the frontier is sub-optimal (dominated); another portfolio exists with higher return at the same risk (or same return at less risk). (1)
Question 8. [6 marks] Expected (CAPM) return: (2) Alpha: (2) Interpretation: , so the fund outperformed its benchmark on a risk-adjusted basis. (2)
Question 9. [4 marks]
- Sharpe ratio uses total standard deviation (both upside and downside volatility) as the risk measure. (1)
- Sortino ratio replaces total with downside deviation (only returns below a target/MAR). (2)
- Advantage: it does not penalize upside volatility, giving a truer picture of harmful (downside) risk that concerns loss-averse investors. (1)
Question 10. [6 marks]
- SML is a graphical representation of CAPM. (1)
- X-axis: beta (, systematic risk); Y-axis: expected return . (2)
- Intercept: risk-free rate (at ); Slope: market risk premium . (2)
- An asset plotting above the SML is undervalued — it offers more return than CAPM requires for its beta, hence a positive alpha (a buy). (1)
[
{"claim": "Q2 covariance = 0.024", "code": "result = (0.4*0.20*0.30 == 0.024)"},
{"claim": "Q3 portfolio std dev approx 0.2008", "code": "sd = sqrt(Rational(36,100)*Rational(4,100)+Rational(16,100)*Rational(9,100)+2*Rational(6,10)*Rational(4,10)*0.4*0.20*0.30); result = abs(float(sd)-0.2008) < 0.001"},
{"claim": "Q4 CAPM expected return = 12.2%", "code": "result = (0.05 + 1.2*(0.11-0.05) == 0.122)"},
{"claim": "Q6 Sharpe 0.5 and Treynor 0.08", "code": "result = ((0.14-0.04)/0.20 == 0.5) and (abs((0.14-0.04)/1.25 - 0.08) < 1e-9)"},
{"claim": "Q8 alpha = 0.4%", "code": "capm = 0.03 + 1.4*(0.12-0.03); result = abs((0.16 - capm) - 0.004) < 1e-9"}
]