Consider a simple economy with only two assets: a risk-free asset () and a risky asset (). You can invest in a portfolio () that is comprised of the risk-free asset, or the risky asset, or a combination of the two assets. The proportion you choose to invest in the risky asset is here represented by . is the investor risk aversion coefficient, and we assume that the expected utility function of the investor is given by:
The blue line in the plot below represents all possible investment opportunities, and is designated as the capital alocation line (CAL).
The orange dot in the plot represents the portfolio that results by combining the risk-free and the risky asset together, where the proportion invested in the risk-free asset is 0.50, and the proportion invested in the risky asset is 0.50.
Assume the following information about the assets:
0.02
0.1
0.22
Use the slider below to see how changing the proportion you invest in the risky asset change the risk and return of portfolio .
viewof y = Inputs.range([0,1.7], {step:.01,label:"y",value:0.5})viewof A = Inputs.range([1,4], {step:.1,label:"A",value:4.0})
y = 0.5
A = 4
e_r_p =0.1;sd_r_p =0.22;r_f =0.02;// Calculate portfolio values based on y and AfunctioncalculateValues(y, A) {// Expected return and variance of portfolio clet e_r_c = y * e_r_p + (1- y) * r_f;let var_r_c =Math.pow(y,2) *Math.pow(sd_r_p,2);// Utilitylet u = e_r_c - (A/2) * var_r_c;// Generate indifference curve dataconst ic =Array.from({length:40}, (_, i) => {let sd = i *0.01;return {sd: sd,y_ic: u + (A/2) *Math.pow(sd,2) }; });// Label for indifference curvelet label_ic = {sd: ic[ic.length-15].sd,y_ic: ic[ic.length-15].y_ic,label:`A: ${A}; E[U(r)] = ${u.toFixed(5)}` };// Generate CAL datalet cal =Array.from({length:200}, (_, i) => {let y_val = i *0.01;return {y: y_val,e_r_c: y_val * e_r_p + (1- y_val) * r_f,sd_r_c: y_val * sd_r_p }; });// Point p (risky asset)let p = {e_r: e_r_p,sd: sd_r_p,label:"p" };// Point c (portfolio)let c = {e_r: e_r_c,sd:Math.sqrt(var_r_c),label:"c" };return {ic: ic,label_ic: label_ic,cal: cal,p: p,c: c };}// Create reactive values that update when y or A changesresults =calculateValues(y, A)ic = results.ic;label_ic = [results.label_ic];cal = results.cal;p = [results.p];c = [results.c];
This investor maximizes its utility by investing = 0.41
We are here assuming that investors can borrow at the risk-free asset to invest in the risky asset. How do we know that? What changes when that is not the case?