Explore second-order interest rate risk measures, refining duration’s approximation of bond price changes through the concept of convexity and its role in capturing the curvature of the price–yield relationship.
Have you ever been surprised by the actual price move of a bond after a sizable change in market yields? Maybe you sized up your trades using duration, only to find that the bond’s actual price shift was slightly off from your expectation. It’s a bit like expecting a straight path on your road trip but encountering winding detours. That discrepancy is where convexity comes into play. Convexity refines duration’s linear estimate by accounting for the curve in the price–yield relationship. While duration is a “first-order” measure of interest rate risk, convexity is the crucial “second-order” term that helps us model more intricate (and realistic) bond price moves.
Sometimes I remember my early days in bond portfolio management when I’d rely heavily on duration to gauge sensitivity. Everything looked fine for small yield changes, but then, boom—an unexpectedly large swing in yields left me scratching my head. Incorporating convexity into the price estimates would have saved me a few sleepless nights. This section will clarify why convexity is essential, how to estimate it, and how to use it in real-world practices.
Duration, covered in detail in section 8.2, provides a linear approximation of how much a bond’s price changes in response to yield shifts. For small yield moves, this linear approximation works decently well. But if yields swing by a larger amount, the actual price change forms a curve rather than a neat line.
• Duration is to bond price sensitivity what the slope is to a simple linear function.
• Convexity is the curvature—a measure of how that slope changes as the yield changes.
If we only use duration (the slope) and ignore convexity (the curvature), we might underestimate or overestimate the bond’s price change. The bigger the yield move, the bigger the potential error. Convexity steps in to provide that extra piece of information we need for a more robust estimate.
Most plain-vanilla, fixed-coupon bonds and zero-coupon bonds exhibit positive convexity. This means that when yields fall, the price gain is larger than the drop we’d have predicted solely with duration. Conversely, when yields rise, the price drop is a bit less severe than the linear approximation would have suggested.
Positive convexity is typically desirable because it gives you a nice cushion during volatile periods. Essentially, positive convexity says: “You’ll lose less if yields jump up, and you’ll gain more if yields go down.”
Let’s illustrate with a quick scenario. Suppose you have a bond with an estimated duration of 5 and a convexity of 30 (measured in typical bond risk units, which we’ll explain in a moment). If the yield drops by 40 basis points (0.40%), the naive duration-only price change might be around 5 × 0.40% = 2.0%. But that’s just the linear approximation. The convexity term refines it:
Price Change ≈ (−Duration × ΔYield) + (½ × Convexity × (ΔYield)²).
Plugging in numbers (noting yield changes can be positive or negative, so we keep careful track of signs):
• −(5 × (−0.0040)) = +0.020 (2.0% increase) from duration
• ½ × 30 × (−0.0040)² = 15 × 0.000016 = 0.00024 (0.024%)
So, the convexity “add-on” is +0.024%. When we add that to our duration-based estimate, the total price change is approximately +2.024%. While 0.024% might sound small, for large positions or larger yield moves, it becomes more critical. When yields move significantly more—say 100 basis points—the difference can become material.
So far, the story’s been great for your typical high-grade corporate or Treasury bond: they have that lovely positive convexity. But it gets trickier with bonds that have embedded optionality, like callable bonds, mortgage-backed securities (MBS), or putable structures. Among them, those with call features or prepayment characteristics can show negative convexity in certain yield environments.
Negative convexity means your bond’s price gains aren’t as robust when yields fall. Why? Because if yields tumble steeply, the issuer is likely to refinance (call the bond away from you, or in the case of MBS, homeowners might prepay). Your upside is capped. This capping effect at lower yields leads to a phenomenon we call “negative convexity” because the price–yield relationship starts to bend in a less favorable way.
Picture a homeowner with a mortgage: when rates drop, they’ll probably prepay or refinance. When rates rise, they’ll keep paying that old lower rate, hurting your portfolio if you hold an MBS security. It’s not that it’s inherently “bad,” but your bond’s price sensitivity doesn’t follow the typical positive convexity shape. Managing these positions—often with robust interest rate risk modeling or advanced hedging strategies—becomes pivotal for portfolio managers.
At a fundamental level, the total approximate percentage price change of a bond, for a yield change Δy, can be written as:
Price Change ≈ (−Duration × Δy) + (½ × Convexity × (Δy)²).
• The term (−Duration × Δy) is the first-order (linear) approximation of the price change.
• The second term (½ × Convexity × (Δy)²) is the convexity adjustment that refines our estimate.
This formula comes from a second-order Taylor expansion of the bond’s price–yield function. If that terminology sounds a bit math-heavy, don’t sweat it. A simpler mental model is: the first term says “Here’s the immediate effect from yields,” and the second term says “Here’s the extra effect because the relationship is curved.”
In practice, duration and convexity can be estimated using partial derivatives of the bond pricing function, or by applying standard formulas for certain bond structures (e.g., for plain-vanilla bonds). For more complicated bonds with embedded options, specialized option-pricing or tree-based models are often employed.
If you’re more algorithmically inclined—or you just enjoy rolling up your sleeves in Python—here’s a small snippet showing how you might approximate a bond’s new price with an original price P₀, given small changes in yield:
1import math
2
3def bond_price_estimate(P0, duration, convexity, delta_y):
4 # duration, convexity in appropriate decimal form
5 # delta_y is the change in yield (e.g., 0.005 for 50 bps)
6 first_order = -duration * delta_y
7 second_order = 0.5 * convexity * (delta_y ** 2)
8 # approximate percentage change
9 pct_change = first_order + second_order
10 # approximate new price
11 new_price = P0 * (1 + pct_change)
12 return new_price
13
14P0 = 100.0
15duration = 5.0
16convexity = 25.0
17delta_y = 0.01 # 100 basis points
18estimated_price = bond_price_estimate(P0, duration, convexity, delta_y)
19print(f"Estimated bond price after yield change: {estimated_price:.2f}")
In a professional setting, you’d refine these estimates for specific day count conventions, compounding assumptions, or use advanced term-structure models. For instance, you might need to break out the key rate durations (see section 8.4) or do scenario analyses (see section 8.8).
Even though none of us are going to chart the price–yield function by hand every day, it helps to see how convexity modifies the linear approximation:
flowchart LR A["Yield Change"] --> B["Duration Estimate <br/> (Linear Approximation)"] B --> C["Convexity Adjustment <br/> (Curvature Correction)"] C --> D["Total Price Change"]
Here, the total price change is the sum of the duration-based linear move plus the additional “bend” captured by convexity. Positive convexity “arches” upward, adding value when yields change. Negative convexity partially flattens or inverts that arch.
In a portfolio that’s loaded up on mortgage-backed securities, you’ll likely experience negative convexity. During falling-rate environments, MBS holders face heavier prepayments, effectively truncating potential price gains. For risk management, many MBS specialists use sophisticated models or hedging strategies with interest rate swaps and swaptions, aiming to offset that negative convexity.
Corporations often issue callable bonds to lock in lower coupons if interest rates decline. These bonds exhibit negative convexity around the yield range where the call option becomes valuable. You’ll see the bond’s price stop rising as aggressively once yields approach or cross the call trigger point.
Convexity plays a critical role in multi-asset portfolio strategies, liability-driven investing (LDI), or immunization strategies (see section 8.15). Suppose you’re a pension fund manager matching assets to long-dated liabilities. You might seek high-convexity bonds (e.g., long-duration Treasuries) to help you ride out sudden yield shifts. The more convex the assets, the less rebalancing you need in tumultuous rate movements.
• Forgetting Convexity in Large Yield Moves: Relying purely on duration for sizable rate swings can result in mispricing. Even if you believe changes will be small, it’s good practice to have convexity estimates on hand.
• Misinterpretation of Negative Convexity: Sometimes people assume negative convexity always means the bond is a poor choice. Not necessarily. It can still be appropriate if the yield spread is compensating enough for that embedded risk.
• Overlooking the Cost of Hedging: Trying to perfectly hedge negative convexity exposures can be costly and hamper portfolio return. There’s a balance between controlling risk and paying for optionality.
• Ignoring “Key Rate” Durations: Large yield changes rarely move every point on the curve equally. Combining key rate durations (section 8.4) with a convexity perspective helps produce a more refined interest rate risk profile.
• Pay Attention to Bond Type: Different embedded features (calls, puts, or mortgage prepayments) will shape whether your bond has negative or positive convexity.
• Calculate Approximate Price Changes: Be sure to use the formula:
Price Change ≈ (−Duration × ΔYield) + (½ × Convexity × (ΔYield)²).
• Watch Out for Sign Conventions: A yield increase is typically positive ΔYield. Duration-based price changes are negative for a positive ΔYield (i.e., bond price falls if yields rise).
• Stress Test: If the question indicates a major rate shift, be especially vigilant about the convexity effect. The exam might test whether you recognize the second-order effect.
• Tied to Other Topics: Convexity might appear coupled with credit risk or derivative overlays. For instance, you might see a question about using an interest rate swap to hedge the negative convexity in your MBS portfolio.
• Tuckman, B., & Serrat, A. (2011). Fixed Income Securities: Tools for Today’s Markets. Wiley.
• Fabozzi, F. J. (2016). Bond Markets, Analysis, and Strategies. Pearson.
• CFA Program Curriculum (Level I), Readings on Convexity and Bond Price Sensitivity.
• Various IFRS/US GAAP guidelines regarding embedded derivatives accounting.
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.