Lesson 8 of 15
CAPM Beta & Expected Return
CAPM: Capital Asset Pricing Model
The Capital Asset Pricing Model (CAPM) provides a framework for pricing individual assets based on their systematic risk.
Beta
Beta (β) measures an asset's sensitivity to market movements:
- β = 1: asset moves in lockstep with the market
- β > 1: asset amplifies market movements (aggressive)
- β < 1: asset dampens market movements (defensive)
CAPM Expected Return
The CAPM predicts an asset's expected return based on its beta:
where (E[R_m] − r_f) is the market risk premium.
Your Task
Implement:
capm_return(rf, beta, mu_m)— returns the CAPM expected return for an assetcapm_beta(cov_im, var_m)— returns beta given the covariance of the asset with the market and the market variance
Python runtime loading...
Loading...
Click "Run" to execute your code.