Skip to content

Portfolio Variance (2-Asset)

Variance of a two-asset portfolio. Combines individual variances with the covariance term that captures diversification benefits when correlation is below 1.

When to use: Use to size a two-asset allocation (e.g. stock/bond, US/international) and quantify how much diversification reduces total portfolio risk. The square root gives portfolio volatility — the input to Sharpe and Treynor.

Calculator

Formula

σp2=w12σ12+w22σ22+2w1w2ρ12σ1σ2\sigma_p^2 = w_1^2 \sigma_1^2 + w_2^2 \sigma_2^2 + 2 w_1 w_2 \rho_{12} \sigma_1 \sigma_2

Variables

SymbolNameDescriptionUnit
PortVarPortfolio VarianceVariance of a 2-asset portfolio return as a decimal²%
w1Weight 1Portfolio weight in asset 1 as a decimal%
w2Weight 2Portfolio weight in asset 2 as a decimal (typically 1 − w1)%
Sigma1Volatility 1Standard deviation of asset 1 returns as a decimal%
Sigma2Volatility 2Standard deviation of asset 2 returns as a decimal%
RhoCorrelationCorrelation between the two assets, between −1 and 1integer

Real-Life Examples

Example 1: 60/40 Stock-Bond

60% stocks (σ=18%), 40% bonds (σ=6%), correlation 0.20.

Given

w1 = 0.6w2 = 0.4Sigma1 = 0.18Sigma2 = 0.06Rho = 0.2

Step-by-Step

1.σp² = 0.6² × 0.18² + 0.4² × 0.06² + 2 × 0.6 × 0.4 × 0.20 × 0.18 × 0.06
2.= 0.011664 + 0.000576 + 0.0010368
3.= 0.0132768
4.Portfolio volatility σp ≈ 11.52%
Result:0.01

Portfolio variance 0.01328 → volatility ~11.5%. Far below a weighted average of the components (60%×18% + 40%×6% = 13.2%) thanks to diversification. The lower the correlation, the bigger the benefit.

Example 2: Two Equities (High Correlation)

50/50 split between two large-cap equity funds, both σ=20%, correlation 0.85.

Given

w1 = 0.5w2 = 0.5Sigma1 = 0.2Sigma2 = 0.2Rho = 0.85

Step-by-Step

1.σp² = 0.25 × 0.04 + 0.25 × 0.04 + 2 × 0.25 × 0.85 × 0.04
2.= 0.01 + 0.01 + 0.017 = 0.037
3.σp ≈ 19.24%
Result:0.04

High correlation means almost no diversification benefit — portfolio volatility (19.2%) is barely below either standalone (20%). Real diversification requires low or negative correlation.

Frequently Asked Questions

No diversification benefit at all — portfolio variance reduces to (w₁σ₁ + w₂σ₂)². The two assets behave identically, so combining them doesn't reduce risk.

Theoretically a perfect hedge exists — there's a weight combination that produces zero portfolio variance. In practice, perfectly negatively correlated assets are rare and unstable; correlations drift, especially in market stress.

σp² = ΣΣ wᵢwⱼσᵢⱼ where σᵢⱼ is the covariance matrix entry. The 2-asset formula is the simplest case; the N-asset version requires matrix multiplication. Many portfolio tools and spreadsheets implement this directly.