Explore semi-variance and partial moments in portfolio management, focusing on downside risk measures that refine traditional variance approaches.
Sometimes, when I think about my own portfolio—like the small retirement account I started in my twenties—I find myself worrying more about how much it could drop rather than how high it could rise. You might have felt that too. All the popular measures, like standard deviation, look at the good times and the bad times in the same way, which can be reassuring overall but doesn’t always soothe those gut-level fears of big losses. That’s precisely where semi-variance and partial moments come into play. They focus on bad outcomes or downside risk. And investors who truly can’t stomach big drops might find them more relevant.
In this section, we’ll walk through the concept of semi-variance, lay out how partial moments expand on the usual measures of risk, and show why these ideas matter for real-world portfolio decisions. You’ll even see references to “Post-Modern Portfolio Theory” (PMPT), which is basically an evolution of Markowitz’s original ideas—focusing heavily on downside risk. Let’s dig in.
Semi-variance zeroes in on negative deviations from a particular threshold—most commonly the mean return, although some investors prefer a specific target return. If returns are above that threshold, semi-variance doesn’t care in the slightest; it’s only about unfavorable outcomes.
Mathematically, when the reference threshold is the mean (denoted as μ), we define semi-variance for a sample of n returns (R₁, R₂, …, Rₙ) as:
Here, N₍below₎ is the number (or count) of observations below the mean. Notice that returns above the mean are not included in this sum at all—semi-variance literally discards the positive side.
Standard variance lumps in both positive and negative return deviations, effectively punishing a portfolio for doing better than expected. Semi-variance is a more nuanced measure for investors who worry primarily about downside movements. In a sense, we’re ignoring the times our asset or portfolio outperforms expectations.
Let’s say we have the following monthly returns for a simple portfolio (in percentages):
• Month 1: +2%
• Month 2: –1%
• Month 3: +4%
• Month 4: +1%
• Month 5: –3%
The arithmetic mean (μ) is:
Next, we identify which months fall below 0.6%. Those are Month 2 (–1%) and Month 5 (–3%). Now calculate each negative deviation from the mean (Rᵢ – μ) and square it:
• Month 2: (–1% – 0.6%)² = (–1.6%)² = 2.56%²
• Month 5: (–3% – 0.6%)² = (–3.6%)² = 12.96%²
Hence,
So 7.76%² is our approximate measure of the downside risk. Notice that the positive months didn’t enter the calculation.
Semi-variance underscores that some investors only dread negative surprises. If you’re in a situation where you might lose sleep over any loss more than 3% in a month, semi-variance speaks your language. By focusing on negative deviations, it hones in on precisely the portion of volatility you find unnerving.
Here’s a small Mermaid diagram illustrating the concept of calculating semi-variance. Think of it as a simplified flow:
graph TD; A["Collect Return Data"] --> B["Identify Returns <br/>Below Threshold"]; B --> C["Calculate Negative <br/> Deviations (R - μ)"]; C --> D["Square Deviations"]; D --> E["Average Those Squares <br/> = Semi-Variance"];
Semi-variance is just one example of something bigger called partial moments. A partial moment measures behaviors or statistical attributes of only one side (“partial”) of the return distribution. You can do all sorts of interesting things here: measure not just the squared deviations below the mean (second partial moment) but also the higher or lower partial moments that reflect higher degrees of shape, like skewness (third moment) or kurtosis (fourth moment).
The second partial moment is essentially what we just covered as semi-variance—but you can also choose a threshold other than the mean, such as 0% (i.e., focusing on returns below zero). For instance, if your priority is to avoid negative returns at all costs, you’d define partial variance around zero. That changes the calculation but not the concept.
If we incorporate the idea of cube (instead of square) for returns below a certain threshold, we get a sense of how the distribution might skew. A negative skew means the distribution’s tail is heavier on the downside, which can lead to more frequent (or larger) negative surprises. The third partial moment can be useful for folks deeply concerned not just about average shortfalls but also about extremely severe tail events.
• They help capture real-world investor preferences. People don’t always view upside and downside symmetrically.
• They can handle “target returns” better. Instead of the mean, you might have a fixed target or even a risk-free rate as your yardstick.
• They can highlight extremely bad outcomes (like in a meltdown scenario) much more than conventional variance or standard deviation does.
• High risk aversion to losses: Some investors (imagine retirees living off their portfolios) may prioritize capital preservation.
• Liability-driven investing: Pension funds or insurance portfolios that have liabilities to pay might focus on shortfalls below required returns.
• Tail-risk scenarios: If a portfolio is subject to “black swan” events, partial moments help highlight the magnitude of disastrous outcomes.
One time, a friend of mine—who was about to retire—confessed they weren’t too worried about capturing every bit of upside in the equity market. They just didn’t want to face a catastrophic year right before retirement. For them, partial moments offered clarity in measuring the probability and impact of returns below their comfort zone. Standard deviation didn’t paint that picture quite as convincingly.
Let’s be real: partial moments (particularly higher-order ones) are not as straightforward to calculate as standard deviation. For one, you need a robust dataset of returns with sufficient history to accurately capture the tail behavior. Then, you’ve got to focus on subsets of that data (e.g., only the negative returns) and compute powers (square, cube, etc.). If you’re dealing with daily returns over many years, this can add up to substantial computational load.
In practice, it’s wise to use tools like Python or MATLAB to batch-process these statistics. A short code snippet in Python might look something like:
1import numpy as np
2
3def semivariance(returns, threshold):
4 # returns: array of historical returns
5 # threshold: e.g., mean(returns) or 0.0 for zero-based threshold
6 below_threshold = returns[returns < threshold]
7 if len(below_threshold) == 0:
8 return 0.0
9 differences = below_threshold - threshold
10 return np.mean(differences**2)
11
12portfolio_returns = np.array([0.02, -0.01, 0.04, 0.01, -0.03]) # 2%, -1%, 4%, etc.
13threshold = np.mean(portfolio_returns)
14sv = semivariance(portfolio_returns, threshold)
15print(f"Semi-variance = {sv:.4f}")
In large institutional settings, such calculations can get integrated into risk management software, which might produce partial moment metrics alongside standard deviations and Value at Risk (VaR) measures.
• Related to Downside Deviation (Section 2.8): Semi-variance is a step along the path to measuring downside deviation and expected shortfall.
• Portfolio Construction (Chapter 4): These risk metrics can influence how we allocate assets to reduce the probability or magnitude of downside events.
• Behavioral Biases (Chapter 5): Many biases—like loss aversion—are consistent with caring more about downside than upside. This leads to a natural interest in partial moments.
• Stress Testing and Scenario Analysis (Section 2.12): Partial moments can be combined with scenario analysis to see how a portfolio’s downside might behave under extreme conditions.
• Data Quality: If your return data is unreliable, partial moments can produce misleading results.
• Downside Threshold Selection: Semi-variance is sensitive to your threshold. Choose it based on real objectives, not arbitrary numbers.
• Overfitting to the Tails: Focusing too heavily on tail events can lead to extremely conservative portfolios, missing out on potential gains.
• Balanced Approach: Consider partial moments in conjunction with standard measures (like standard deviation and Sharpe ratios), so that you don’t lose the overall perspective on performance.
• Know your definitions: Expect questions requiring you to define semi-variance, partial variance, or partial moments in formulas.
• Compute carefully: Practice short calculations by hand for small data sets. On the exam, you might be given a handful of returns and asked to compute the semi-variance.
• Link to risk management: Understand how partial moments tie into real-world risk frameworks, especially for controlling downside.
• Don’t forget references: Markowitz’s original work eventually led to refinements we often call Post-Modern Portfolio Theory. These explorations are exam favorites for conceptual linking.
• Watch for trick thresholds: An exam question might specify zero, or a risk-free rate, or something other than the mean, so be alert.
• Markowitz, H. (1959). Portfolio Selection: Efficient Diversification of Investments. Yale University Press.
• Sortino, F., & van der Meer, R. (1991). Downside Risk: Capturing What’s at Stake in Investment Situations. The Journal of Portfolio Management.
• Sortino, F., & Price, L. (1994). Performance Measurement in a Downside Risk Framework. The Journal of Investing.
• Rom, B. M., & Ferguson, K. W. (1993). Post-Modern Portfolio Theory Comes of Age. The Journal of Investing.
Important Notice: FinancialAnalystGuide.com provides supplemental CFA study materials, including mock exams, sample exam questions, and other practice resources to aid your exam preparation. These resources are not affiliated with or endorsed by the CFA Institute. CFA® and Chartered Financial Analyst® are registered trademarks owned exclusively by CFA Institute. Our content is independent, and we do not guarantee exam success. CFA Institute does not endorse, promote, or warrant the accuracy or quality of our products.