First of all we have to read all the data with an xlsread function and give names to the subsets of data that we are interested in:

Size: px
Start display at page:

Download "First of all we have to read all the data with an xlsread function and give names to the subsets of data that we are interested in:"

Transcription

1 First of all we have to read all the data with an xlsread function and give names to the subsets of data that we are interested in: data=xlsread('c:\users\prado\desktop\master\investment\material alumnos\data.xlsx') rm=data(:,1); rf=data(:,2) size_portf=data(:,13:22); portfolio=data(:,3:end); Obtain the expression for the minimum volatility frontier in the case of the set of the 3 portfolios. Generate the points in the minimum volatility frontier for the correspondent expected return in a range of values between -.6 and. We have to take the mean E and the covariance matrix of the portfolio in order to obtain the expression for the minimum volatility frontier which is: Where: We obtain the covariance matrix and the mean of the 3 portfolios V_3=cov(portfolio); E_3=mean(portfolio)'; We compute the letters that we need for the formula: A_3=E_3'*inv(V_3)*E_3; B_3=E_3'*inv(V_3)*one_3; C_3=one_3'*inv(V_3)*one_3; D_3=A_3*C_3-B_3^2 At this point, where we have all this numbers we have to compute the volatility for every different value of mean. So that, we create a vector of consecutives values representing different points in the mean-variance space, as for example: Ep=linspace(-.6,,1); And we insert it in the formula: sigma_3=sqrt((1/(a_3*c_3-b_3^2))*(c_3*ep'.^2-2*b_3*ep'+a_3));

2 Finally we will get two different vectors, one for the values of the mean and the other one the respective variance for each of the mean values. We can plot both vectors, plotting the standard deviation in the x-label and the mean values in the y-label. Plot(sigma_3,Ep) Obtain the weights, the mean return and the standard deviation of the minimum variance portfolio in the investment opportunity set with 3 portfolios. Plot this portfolio in the minimum variance frontier. Portfolio with the lowest variance in the minimum variance frontier First we have to obtain the composition (weights) of the minimum variance portfolio with an optimization problem. Finally the weights are obtained through the formula placed below: Wmv=(inv(V_3)*one_3)/(one_3'*inv(V_3)*one_3) Emv=Wmv'*E_3; varmv=wmv'*v_3*wmv

3 Finally we plot it with the parabola obtained before: Plot(sigma_3,Ep) Hold on plot(sqrt(varmv),emv,'*') Using the mean of the T-Bill rate as a proxy for the risk free rate, obtain the composition, the mean return, and the standard deviation of the tangent portfolio in the case of 3 risky assets: 1 size-sorted portfolios, 1 BM-sorted portfolios, and 1 momentum-sorted portfolios. %%Composition, mean return, std of Tangent portfolio for 3 portfolio. RF_mean=mean(rf); X=inv(V_3)*(E_3-RF_mean*one_3) WT=(X/(one_3'*X)) %COMPOSITION TANGENT PORTFOLIO ET=WT'*E_3 %MEAN TANGENT PORTFOLIO To obtain the variance of the tangent portfolio we follow the same formula as before but in this case we use the obtained weights for the Tangent portfolio NOT the MV portfolio std_tangent=sqrt(wt'*v_3*wt) %STD TANGENT PORTFOLIO

4 Plot the minimum variance frontier with risky assets and the efficient frontier with riskless asset Now we want to plot the same parabola as before and the Efficient Frontier that represent the combination of weights between the risky portfolio and the Risk Free Rate. We use the same formula for the mean-variance frontier with a new range in this case: Ep=linspace(-.6,.2,1); %CREAMOS UN NUEVO RANGO sigma_3=sqrt((1/(a_3*c_3-b_3^2))*(c_3*ep'.^2-2*b_3*ep'+a_3)); %EFFICIENT FRONTIER %NEW RANGE SHARPE RATIO. sig=linspace(,.6,1) Eff_front=RF_mean+((ET-RF_mean)/std_tangent)*sig If a rational investor is willing to support a volatility investment of.7, what portfolio will he chose? %VOLATILITY=.7 Eff_front_1=RF_mean+((ET-RF_mean)/std_tangent)*.7 hold on plot(.7,eff_front_1,'*')

5 A second rational investor has very low risk aversion and he wants to borrow at the risk free rate for investing 12% in the risky assets. What portfolio will he chose? E_risky=-.2*RF_mean+1.2*ET VA=((1.2^2)*std_tangent^2) std_port=sqrt(va); hold on plot(std_port,e_risky,'*')

FINC 430 TA Session 7 Risk and Return Solutions. Marco Sammon

FINC 430 TA Session 7 Risk and Return Solutions. Marco Sammon FINC 430 TA Session 7 Risk and Return Solutions Marco Sammon Formulas for return and risk The expected return of a portfolio of two risky assets, i and j, is Expected return of asset - the percentage of

More information

Lecture 2: Fundamentals of meanvariance

Lecture 2: Fundamentals of meanvariance Lecture 2: Fundamentals of meanvariance analysis Prof. Massimo Guidolin Portfolio Management Second Term 2018 Outline and objectives Mean-variance and efficient frontiers: logical meaning o Guidolin-Pedio,

More information

Mean-Variance Portfolio Choice in Excel

Mean-Variance Portfolio Choice in Excel Mean-Variance Portfolio Choice in Excel Prof. Manuela Pedio 20550 Quantitative Methods for Finance August 2018 Let s suppose you can only invest in two assets: a (US) stock index (here represented by the

More information

Return and Risk: The Capital-Asset Pricing Model (CAPM)

Return and Risk: The Capital-Asset Pricing Model (CAPM) Return and Risk: The Capital-Asset Pricing Model (CAPM) Expected Returns (Single assets & Portfolios), Variance, Diversification, Efficient Set, Market Portfolio, and CAPM Expected Returns and Variances

More information

Financial Mathematics III Theory summary

Financial Mathematics III Theory summary Financial Mathematics III Theory summary Table of Contents Lecture 1... 7 1. State the objective of modern portfolio theory... 7 2. Define the return of an asset... 7 3. How is expected return defined?...

More information

CHAPTER 6: PORTFOLIO SELECTION

CHAPTER 6: PORTFOLIO SELECTION CHAPTER 6: PORTFOLIO SELECTION 6-1 21. The parameters of the opportunity set are: E(r S ) = 20%, E(r B ) = 12%, σ S = 30%, σ B = 15%, ρ =.10 From the standard deviations and the correlation coefficient

More information

Advanced Financial Economics Homework 2 Due on April 14th before class

Advanced Financial Economics Homework 2 Due on April 14th before class Advanced Financial Economics Homework 2 Due on April 14th before class March 30, 2015 1. (20 points) An agent has Y 0 = 1 to invest. On the market two financial assets exist. The first one is riskless.

More information

COMM 324 INVESTMENTS AND PORTFOLIO MANAGEMENT ASSIGNMENT 1 Due: October 3

COMM 324 INVESTMENTS AND PORTFOLIO MANAGEMENT ASSIGNMENT 1 Due: October 3 COMM 324 INVESTMENTS AND PORTFOLIO MANAGEMENT ASSIGNMENT 1 Due: October 3 1. The following information is provided for GAP, Incorporated, which is traded on NYSE: Fiscal Yr Ending January 31 Close Price

More information

Efficient Portfolio and Introduction to Capital Market Line Benninga Chapter 9

Efficient Portfolio and Introduction to Capital Market Line Benninga Chapter 9 Efficient Portfolio and Introduction to Capital Market Line Benninga Chapter 9 Optimal Investment with Risky Assets There are N risky assets, named 1, 2,, N, but no risk-free asset. With fixed total dollar

More information

Solutions to questions in Chapter 8 except those in PS4. The minimum-variance portfolio is found by applying the formula:

Solutions to questions in Chapter 8 except those in PS4. The minimum-variance portfolio is found by applying the formula: Solutions to questions in Chapter 8 except those in PS4 1. The parameters of the opportunity set are: E(r S ) = 20%, E(r B ) = 12%, σ S = 30%, σ B = 15%, ρ =.10 From the standard deviations and the correlation

More information

FIN 6160 Investment Theory. Lecture 7-10

FIN 6160 Investment Theory. Lecture 7-10 FIN 6160 Investment Theory Lecture 7-10 Optimal Asset Allocation Minimum Variance Portfolio is the portfolio with lowest possible variance. To find the optimal asset allocation for the efficient frontier

More information

Fall 2005: FiSOOO - Ouiz #2 Part I - Open Questions

Fall 2005: FiSOOO - Ouiz #2 Part I - Open Questions Fall 2005: FiSOOO - Ouiz #2 Part I - Open Questions 1. Rita's utility of final wealth is defined by u(w)=~w. She is broke but one lucky day she found a lottery ticket with two possible outcomes: $196 with

More information

Chapter 8. Portfolio Selection. Learning Objectives. INVESTMENTS: Analysis and Management Second Canadian Edition

Chapter 8. Portfolio Selection. Learning Objectives. INVESTMENTS: Analysis and Management Second Canadian Edition INVESTMENTS: Analysis and Management Second Canadian Edition W. Sean Cleary Charles P. Jones Chapter 8 Portfolio Selection Learning Objectives State three steps involved in building a portfolio. Apply

More information

Key investment insights

Key investment insights Basic Portfolio Theory B. Espen Eckbo 2011 Key investment insights Diversification: Always think in terms of stock portfolios rather than individual stocks But which portfolio? One that is highly diversified

More information

CSCI 1951-G Optimization Methods in Finance Part 07: Portfolio Optimization

CSCI 1951-G Optimization Methods in Finance Part 07: Portfolio Optimization CSCI 1951-G Optimization Methods in Finance Part 07: Portfolio Optimization March 9 16, 2018 1 / 19 The portfolio optimization problem How to best allocate our money to n risky assets S 1,..., S n with

More information

Mean-Variance Analysis

Mean-Variance Analysis Mean-Variance Analysis Mean-variance analysis 1/ 51 Introduction How does one optimally choose among multiple risky assets? Due to diversi cation, which depends on assets return covariances, the attractiveness

More information

Financial Market Analysis (FMAx) Module 6

Financial Market Analysis (FMAx) Module 6 Financial Market Analysis (FMAx) Module 6 Asset Allocation and iversification This training material is the property of the International Monetary Fund (IMF) and is intended for use in IMF Institute for

More information

Financial Analysis The Price of Risk. Skema Business School. Portfolio Management 1.

Financial Analysis The Price of Risk. Skema Business School. Portfolio Management 1. Financial Analysis The Price of Risk bertrand.groslambert@skema.edu Skema Business School Portfolio Management Course Outline Introduction (lecture ) Presentation of portfolio management Chap.2,3,5 Introduction

More information

QR43, Introduction to Investments Class Notes, Fall 2003 IV. Portfolio Choice

QR43, Introduction to Investments Class Notes, Fall 2003 IV. Portfolio Choice QR43, Introduction to Investments Class Notes, Fall 2003 IV. Portfolio Choice A. Mean-Variance Analysis 1. Thevarianceofaportfolio. Consider the choice between two risky assets with returns R 1 and R 2.

More information

Chapter 6 Efficient Diversification. b. Calculation of mean return and variance for the stock fund: (A) (B) (C) (D) (E) (F) (G)

Chapter 6 Efficient Diversification. b. Calculation of mean return and variance for the stock fund: (A) (B) (C) (D) (E) (F) (G) Chapter 6 Efficient Diversification 1. E(r P ) = 12.1% 3. a. The mean return should be equal to the value computed in the spreadsheet. The fund's return is 3% lower in a recession, but 3% higher in a boom.

More information

CHAPTER 6: CAPITAL ALLOCATION TO RISKY ASSETS

CHAPTER 6: CAPITAL ALLOCATION TO RISKY ASSETS CHATER 6: CAITAL ALLOCATION TO RISKY ASSETS Solutions to Suggested roblems 4. a. The expected cash flow is: (0.5 $70,000) + (0.5 00,000) = $135,000. With a risk premium of 8% over the risk-free rate of

More information

Adjusting discount rate for Uncertainty

Adjusting discount rate for Uncertainty Page 1 Adjusting discount rate for Uncertainty The Issue A simple approach: WACC Weighted average Cost of Capital A better approach: CAPM Capital Asset Pricing Model Massachusetts Institute of Technology

More information

FIN Second (Practice) Midterm Exam 04/11/06

FIN Second (Practice) Midterm Exam 04/11/06 FIN 3710 Investment Analysis Zicklin School of Business Baruch College Spring 2006 FIN 3710 Second (Practice) Midterm Exam 04/11/06 NAME: (Please print your name here) PLEDGE: (Sign your name here) SESSION:

More information

OPTIMAL RISKY PORTFOLIOS- ASSET ALLOCATIONS. BKM Ch 7

OPTIMAL RISKY PORTFOLIOS- ASSET ALLOCATIONS. BKM Ch 7 OPTIMAL RISKY PORTFOLIOS- ASSET ALLOCATIONS BKM Ch 7 ASSET ALLOCATION Idea from bank account to diversified portfolio Discussion principles are the same for any number of stocks A. bonds and stocks B.

More information

NPTEL INDUSTRIAL AND MANAGEMENT ENGINEERING DEPARTMENT, IIT KANPUR QUANTITATIVE FINANCE MID-TERM EXAMINATION (2015 JULY-AUG ONLINE COURSE)

NPTEL INDUSTRIAL AND MANAGEMENT ENGINEERING DEPARTMENT, IIT KANPUR QUANTITATIVE FINANCE MID-TERM EXAMINATION (2015 JULY-AUG ONLINE COURSE) NPTEL INDUSTRIAL AND MANAGEMENT ENGINEERING DEPARTMENT, IIT KANPUR QUANTITATIVE FINANCE MID-TERM EXAMINATION (2015 JULY-AUG ONLINE COURSE) READ THE INSTRUCTIONS VERY CAREFULLY 1) There are Four questions

More information

Optimal Portfolio Selection

Optimal Portfolio Selection Optimal Portfolio Selection We have geometrically described characteristics of the optimal portfolio. Now we turn our attention to a methodology for exactly identifying the optimal portfolio given a set

More information

Washington University Fall Economics 487

Washington University Fall Economics 487 Washington University Fall 2009 Department of Economics James Morley Economics 487 Project Proposal due Tuesday 11/10 Final Project due Wednesday 12/9 (by 5:00pm) (20% penalty per day if the project is

More information

FNCE 4030 Fall 2012 Roberto Caccia, Ph.D. Midterm_2a (2-Nov-2012) Your name:

FNCE 4030 Fall 2012 Roberto Caccia, Ph.D. Midterm_2a (2-Nov-2012) Your name: Answer the questions in the space below. Written answers require no more than few compact sentences to show you understood and master the concept. Show your work to receive partial credit. Points are as

More information

Chapter 8. Markowitz Portfolio Theory. 8.1 Expected Returns and Covariance

Chapter 8. Markowitz Portfolio Theory. 8.1 Expected Returns and Covariance Chapter 8 Markowitz Portfolio Theory 8.1 Expected Returns and Covariance The main question in portfolio theory is the following: Given an initial capital V (0), and opportunities (buy or sell) in N securities

More information

Risk and Return and Portfolio Theory

Risk and Return and Portfolio Theory Risk and Return and Portfolio Theory Intro: Last week we learned how to calculate cash flows, now we want to learn how to discount these cash flows. This will take the next several weeks. We know discount

More information

Economics 424/Applied Mathematics 540. Final Exam Solutions

Economics 424/Applied Mathematics 540. Final Exam Solutions University of Washington Summer 01 Department of Economics Eric Zivot Economics 44/Applied Mathematics 540 Final Exam Solutions I. Matrix Algebra and Portfolio Math (30 points, 5 points each) Let R i denote

More information

RETURN AND RISK: The Capital Asset Pricing Model

RETURN AND RISK: The Capital Asset Pricing Model RETURN AND RISK: The Capital Asset Pricing Model (BASED ON RWJJ CHAPTER 11) Return and Risk: The Capital Asset Pricing Model (CAPM) Know how to calculate expected returns Understand covariance, correlation,

More information

Problem 1: Markowitz Portfolio (Risky Assets) cov([r 1, r 2, r 3 ] T ) = V =

Problem 1: Markowitz Portfolio (Risky Assets) cov([r 1, r 2, r 3 ] T ) = V = Homework II Financial Mathematics and Economics Professor: Paul J. Atzberger Due: Monday, October 3rd Please turn all homeworks into my mailbox in Amos Eaton Hall by 5:00pm. Problem 1: Markowitz Portfolio

More information

Risk and Return. Nicole Höhling, Introduction. Definitions. Types of risk and beta

Risk and Return. Nicole Höhling, Introduction. Definitions. Types of risk and beta Risk and Return Nicole Höhling, 2009-09-07 Introduction Every decision regarding investments is based on the relationship between risk and return. Generally the return on an investment should be as high

More information

20135 Theory of Finance Part I Professor Massimo Guidolin

20135 Theory of Finance Part I Professor Massimo Guidolin MSc. Finance/CLEFIN 2014/2015 Edition 20135 Theory of Finance Part I Professor Massimo Guidolin A FEW SAMPLE QUESTIONS, WITH SOLUTIONS SET 2 WARNING: These are just sample questions. Please do not count

More information

Freeman School of Business Fall 2003

Freeman School of Business Fall 2003 FINC 748: Investments Ramana Sonti Freeman School of Business Fall 2003 Lecture Note 3B: Optimal risky portfolios To be read with BKM Chapter 8 Statistical Review Portfolio mathematics Mean standard deviation

More information

Finance 100: Corporate Finance. Professor Michael R. Roberts Quiz 3 November 8, 2006

Finance 100: Corporate Finance. Professor Michael R. Roberts Quiz 3 November 8, 2006 Finance 100: Corporate Finance Professor Michael R. Roberts Quiz 3 November 8, 006 Name: Solutions Section ( Points...no joke!): Question Maximum Student Score 1 30 5 3 5 4 0 Total 100 Instructions: Please

More information

ECO 317 Economics of Uncertainty Fall Term 2009 Tuesday October 6 Portfolio Allocation Mean-Variance Approach

ECO 317 Economics of Uncertainty Fall Term 2009 Tuesday October 6 Portfolio Allocation Mean-Variance Approach ECO 317 Economics of Uncertainty Fall Term 2009 Tuesday October 6 ortfolio Allocation Mean-Variance Approach Validity of the Mean-Variance Approach Constant absolute risk aversion (CARA): u(w ) = exp(

More information

Lecture 5. Return and Risk: The Capital Asset Pricing Model

Lecture 5. Return and Risk: The Capital Asset Pricing Model Lecture 5 Return and Risk: The Capital Asset Pricing Model Outline 1 Individual Securities 2 Expected Return, Variance, and Covariance 3 The Return and Risk for Portfolios 4 The Efficient Set for Two Assets

More information

u (x) < 0. and if you believe in diminishing return of the wealth, then you would require

u (x) < 0. and if you believe in diminishing return of the wealth, then you would require Chapter 8 Markowitz Portfolio Theory 8.7 Investor Utility Functions People are always asked the question: would more money make you happier? The answer is usually yes. The next question is how much more

More information

Fairweather Pension Plan: Optimizing the Investment Portfolio Using MPT

Fairweather Pension Plan: Optimizing the Investment Portfolio Using MPT Fairweather Pension Plan: Optimizing the Investment Portfolio Using MPT Scene I First consider the possibilities presented by five major investment ent asset classes of all publicly-traded securities,

More information

CHAPTER 6: RISK AVERSION AND CAPITAL ALLOCATION TO RISKY ASSETS

CHAPTER 6: RISK AVERSION AND CAPITAL ALLOCATION TO RISKY ASSETS CHAPTER 6: RISK AVERSION AND CAPITAL ALLOCATION TO RISKY ASSETS PROBLEM SETS 1. (e) 2. (b) A higher borrowing is a consequence of the risk of the borrowers default. In perfect markets with no additional

More information

In terms of covariance the Markowitz portfolio optimisation problem is:

In terms of covariance the Markowitz portfolio optimisation problem is: Markowitz portfolio optimisation Solver To use Solver to solve the quadratic program associated with tracing out the efficient frontier (unconstrained efficient frontier UEF) in Markowitz portfolio optimisation

More information

Archana Khetan 05/09/ MAFA (CA Final) - Portfolio Management

Archana Khetan 05/09/ MAFA (CA Final) - Portfolio Management Archana Khetan 05/09/2010 +91-9930812722 Archana090@hotmail.com MAFA (CA Final) - Portfolio Management 1 Portfolio Management Portfolio is a collection of assets. By investing in a portfolio or combination

More information

8. International Financial Allocation

8. International Financial Allocation 8. International Financial Allocation An Example and Definitions... 1 Expected Return, Variance, and Standard Deviation.... 2 S&P 500 Example... 2 The S&P 500 and Treasury bill Portfolio... 8 U.S. 10-Year

More information

Modern Portfolio Theory -Markowitz Model

Modern Portfolio Theory -Markowitz Model Modern Portfolio Theory -Markowitz Model Rahul Kumar Project Trainee, IDRBT 3 rd year student Integrated M.Sc. Mathematics & Computing IIT Kharagpur Email: rahulkumar641@gmail.com Project guide: Dr Mahil

More information

Advanced Financial Modeling. Unit 2

Advanced Financial Modeling. Unit 2 Advanced Financial Modeling Unit 2 Financial Modeling for Risk Management A Portfolio with 2 assets A portfolio with 3 assets Risk Modeling in a multi asset portfolio Monte Carlo Simulation Two Asset Portfolio

More information

Expected utility theory; Expected Utility Theory; risk aversion and utility functions

Expected utility theory; Expected Utility Theory; risk aversion and utility functions ; Expected Utility Theory; risk aversion and utility functions Prof. Massimo Guidolin Portfolio Management Spring 2016 Outline and objectives Utility functions The expected utility theorem and the axioms

More information

The Markowitz framework

The Markowitz framework IGIDR, Bombay 4 May, 2011 Goals What is a portfolio? Asset classes that define an Indian portfolio, and their markets. Inputs to portfolio optimisation: measuring returns and risk of a portfolio Optimisation

More information

Dakota Wixom Quantitative Analyst QuantCourse.com

Dakota Wixom Quantitative Analyst QuantCourse.com INTRO TO PORTFOLIO RISK MANAGEMENT IN PYTHON Portfolio Composition Dakota Wixom Quantitative Analyst QuantCourse.com Calculating Portfolio Returns PORTFOLIO RETURN FORMULA: R : Portfolio return R w p a

More information

Modeling Portfolios that Contain Risky Assets Optimization II: Model-Based Portfolio Management

Modeling Portfolios that Contain Risky Assets Optimization II: Model-Based Portfolio Management Modeling Portfolios that Contain Risky Assets Optimization II: Model-Based Portfolio Management C. David Levermore University of Maryland, College Park Math 420: Mathematical Modeling January 26, 2012

More information

Risk-Based Investing & Asset Management Final Examination

Risk-Based Investing & Asset Management Final Examination Risk-Based Investing & Asset Management Final Examination Thierry Roncalli February 6 th 2015 Contents 1 Risk-based portfolios 2 2 Regularizing portfolio optimization 3 3 Smart beta 5 4 Factor investing

More information

ECON FINANCIAL ECONOMICS

ECON FINANCIAL ECONOMICS ECON 337901 FINANCIAL ECONOMICS Peter Ireland Boston College April 26, 2018 These lecture notes by Peter Ireland are licensed under a Creative Commons Attribution-NonCommerical-ShareAlike 4.0 International

More information

Lecture 10-12: CAPM.

Lecture 10-12: CAPM. Lecture 10-12: CAPM. I. Reading II. Market Portfolio. III. CAPM World: Assumptions. IV. Portfolio Choice in a CAPM World. V. Minimum Variance Mathematics. VI. Individual Assets in a CAPM World. VII. Intuition

More information

The mean-variance portfolio choice framework and its generalizations

The mean-variance portfolio choice framework and its generalizations The mean-variance portfolio choice framework and its generalizations Prof. Massimo Guidolin 20135 Theory of Finance, Part I (Sept. October) Fall 2014 Outline and objectives The backward, three-step solution

More information

Analysis INTRODUCTION OBJECTIVES

Analysis INTRODUCTION OBJECTIVES Chapter5 Risk Analysis OBJECTIVES At the end of this chapter, you should be able to: 1. determine the meaning of risk and return; 2. explain the term and usage of statistics in determining risk and return;

More information

Minimizing Timing Luck with Portfolio Tranching The Difference Between Hired and Fired

Minimizing Timing Luck with Portfolio Tranching The Difference Between Hired and Fired Minimizing Timing Luck with Portfolio Tranching The Difference Between Hired and Fired February 2015 Newfound Research LLC 425 Boylston Street 3 rd Floor Boston, MA 02116 www.thinknewfound.com info@thinknewfound.com

More information

Models of Asset Pricing

Models of Asset Pricing appendix1 to chapter 5 Models of Asset Pricing In Chapter 4, we saw that the return on an asset (such as a bond) measures how much we gain from holding that asset. When we make a decision to buy an asset,

More information

Econ 219B Psychology and Economics: Applications (Lecture 10) Stefano DellaVigna

Econ 219B Psychology and Economics: Applications (Lecture 10) Stefano DellaVigna Econ 219B Psychology and Economics: Applications (Lecture 10) Stefano DellaVigna March 31, 2004 Outline 1. CAPM for Dummies (Taught by a Dummy) 2. Event Studies 3. EventStudy:IraqWar 4. Attention: Introduction

More information

PORTFOLIO THEORY. Master in Finance INVESTMENTS. Szabolcs Sebestyén

PORTFOLIO THEORY. Master in Finance INVESTMENTS. Szabolcs Sebestyén PORTFOLIO THEORY Szabolcs Sebestyén szabolcs.sebestyen@iscte.pt Master in Finance INVESTMENTS Sebestyén (ISCTE-IUL) Portfolio Theory Investments 1 / 60 Outline 1 Modern Portfolio Theory Introduction Mean-Variance

More information

Aversion to Risk and Optimal Portfolio Selection in the Mean- Variance Framework

Aversion to Risk and Optimal Portfolio Selection in the Mean- Variance Framework Aversion to Risk and Optimal Portfolio Selection in the Mean- Variance Framework Prof. Massimo Guidolin 20135 Theory of Finance, Part I (Sept. October) Fall 2017 Outline and objectives Four alternative

More information

Midterm 1, Financial Economics February 15, 2010

Midterm 1, Financial Economics February 15, 2010 Midterm 1, Financial Economics February 15, 2010 Name: Email: @illinois.edu All questions must be answered on this test form. Question 1: Let S={s1,,s11} be the set of states. Suppose that at t=0 the state

More information

Answers to Concepts in Review

Answers to Concepts in Review Answers to Concepts in Review 1. A portfolio is simply a collection of investment vehicles assembled to meet a common investment goal. An efficient portfolio is a portfolio offering the highest expected

More information

P s =(0,W 0 R) safe; P r =(W 0 σ,w 0 µ) risky; Beyond P r possible if leveraged borrowing OK Objective function Mean a (Std.Dev.

P s =(0,W 0 R) safe; P r =(W 0 σ,w 0 µ) risky; Beyond P r possible if leveraged borrowing OK Objective function Mean a (Std.Dev. ECO 305 FALL 2003 December 2 ORTFOLIO CHOICE One Riskless, One Risky Asset Safe asset: gross return rate R (1 plus interest rate) Risky asset: random gross return rate r Mean µ = E[r] >R,Varianceσ 2 =

More information

Portfolio Management

Portfolio Management MCF 17 Advanced Courses Portfolio Management Final Exam Time Allowed: 60 minutes Family Name (Surname) First Name Student Number (Matr.) Please answer all questions by choosing the most appropriate alternative

More information

Applied Macro Finance

Applied Macro Finance Master in Money and Finance Goethe University Frankfurt Week 2: Factor models and the cross-section of stock returns Fall 2012/2013 Please note the disclaimer on the last page Announcements Next week (30

More information

Mathematics of Finance Final Preparation December 19. To be thoroughly prepared for the final exam, you should

Mathematics of Finance Final Preparation December 19. To be thoroughly prepared for the final exam, you should Mathematics of Finance Final Preparation December 19 To be thoroughly prepared for the final exam, you should 1. know how to do the homework problems. 2. be able to provide (correct and complete!) definitions

More information

23.1. Assumptions of Capital Market Theory

23.1. Assumptions of Capital Market Theory NPTEL Course Course Title: Security Analysis and Portfolio anagement Course Coordinator: Dr. Jitendra ahakud odule-12 Session-23 Capital arket Theory-I Capital market theory extends portfolio theory and

More information

Efficient Frontier and Asset Allocation

Efficient Frontier and Asset Allocation Topic 4 Efficient Frontier and Asset Allocation LEARNING OUTCOMES By the end of this topic, you should be able to: 1. Explain the concept of efficient frontier and Markowitz portfolio theory; 2. Discuss

More information

MITOCW watch?v=ywl3pq6yc54

MITOCW watch?v=ywl3pq6yc54 MITOCW watch?v=ywl3pq6yc54 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

Techniques for Calculating the Efficient Frontier

Techniques for Calculating the Efficient Frontier Techniques for Calculating the Efficient Frontier Weerachart Kilenthong RIPED, UTCC c Kilenthong 2017 Tee (Riped) Introduction 1 / 43 Two Fund Theorem The Two-Fund Theorem states that we can reach any

More information

Financial Mathematics Project

Financial Mathematics Project Financial Mathematics Project A Directed Research Project Submitted to the Faculty of the WORCESTER POLYTECHNIC INSTITUTE in partial fulfillment of the requirements for the Professional Degree of Master

More information

Get Tangency Portfolio by SAS/IML

Get Tangency Portfolio by SAS/IML Get Tangency Portfolio by SAS/IML Xia Ke Shan, 3GOLDEN Beijing Technologies Co. Ltd., Beijing, China Peter Eberhardt, Fernwood Consulting Group Inc., Toronto, Canada Matthew Kastin, I-Behavior, Inc., Louisville,

More information

Aversion to Risk and Optimal Portfolio Selection in the Mean- Variance Framework

Aversion to Risk and Optimal Portfolio Selection in the Mean- Variance Framework Aversion to Risk and Optimal Portfolio Selection in the Mean- Variance Framework Prof. Massimo Guidolin 20135 Theory of Finance, Part I (Sept. October) Fall 2018 Outline and objectives Four alternative

More information

8. International Financial Allocation

8. International Financial Allocation 8. International Financial Allocation An Example and Definitions... 1 Expected eturn, Variance, and Standard Deviation.... S&P 500 Example... The S&P 500 and Treasury bill Portfolio... 8.S. 10-Year Note

More information

MARKOWITS EFFICIENT PORTFOLIO (HUANG LITZENBERGER APPROACH)

MARKOWITS EFFICIENT PORTFOLIO (HUANG LITZENBERGER APPROACH) MARKOWITS EFFICIENT PORTFOLIO (HUANG LITZENBERGER APPROACH) Huang-Litzenberger approach allows us to find mathematically efficient set of portfolios Assumptions There are no limitations on the positions'

More information

WORKING PAPER SERIES

WORKING PAPER SERIES Università Commerciale Luigi Bocconi Econpubblica Centre for Research on the Public Sector WORKING PAPER SERIES Measuring Effective Tax Rates on Risky Assets Luigi Pascali Working Paper n 94 January 2004

More information

Modeling Portfolios that Contain Risky Assets Risk and Reward III: Basic Markowitz Portfolio Theory

Modeling Portfolios that Contain Risky Assets Risk and Reward III: Basic Markowitz Portfolio Theory Modeling Portfolios that Contain Risky Assets Risk and Reward III: Basic Markowitz Portfolio Theory C. David Levermore University of Maryland, College Park Math 420: Mathematical Modeling January 30, 2013

More information

Calculating EAR and continuous compounding: Find the EAR in each of the cases below.

Calculating EAR and continuous compounding: Find the EAR in each of the cases below. Problem Set 1: Time Value of Money and Equity Markets. I-III can be started after Lecture 1. IV-VI can be started after Lecture 2. VII can be started after Lecture 3. VIII and IX can be started after Lecture

More information

Portfolios that Contain Risky Assets 10: Limited Portfolios with Risk-Free Assets

Portfolios that Contain Risky Assets 10: Limited Portfolios with Risk-Free Assets Portfolios that Contain Risky Assets 10: Limited Portfolios with Risk-Free Assets C. David Levermore University of Maryland, College Park, MD Math 420: Mathematical Modeling March 21, 2018 version c 2018

More information

Portfolios that Contain Risky Assets Portfolio Models 9. Long Portfolios with a Safe Investment

Portfolios that Contain Risky Assets Portfolio Models 9. Long Portfolios with a Safe Investment Portfolios that Contain Risky Assets Portfolio Models 9. Long Portfolios with a Safe Investment C. David Levermore University of Maryland, College Park Math 420: Mathematical Modeling March 21, 2016 version

More information

In March 2010, GameStop, Cintas, and United Natural Foods, Inc., joined a host of other companies

In March 2010, GameStop, Cintas, and United Natural Foods, Inc., joined a host of other companies CHAPTER Return and Risk: The Capital 11 Asset Pricing Model (CAPM) OPENING CASE In March 2010, GameStop, Cintas, and United Natural Foods, Inc., joined a host of other companies in announcing operating

More information

Lecture Notes 9. Jussi Klemelä. December 2, 2014

Lecture Notes 9. Jussi Klemelä. December 2, 2014 Lecture Notes 9 Jussi Klemelä December 2, 204 Markowitz Bullets A Markowitz bullet is a scatter plot of points, where each point corresponds to a portfolio, the x-coordinate of a point is the standard

More information

Sample Midterm Questions Foundations of Financial Markets Prof. Lasse H. Pedersen

Sample Midterm Questions Foundations of Financial Markets Prof. Lasse H. Pedersen Sample Midterm Questions Foundations of Financial Markets Prof. Lasse H. Pedersen 1. Security A has a higher equilibrium price volatility than security B. Assuming all else is equal, the equilibrium bid-ask

More information

General Notation. Return and Risk: The Capital Asset Pricing Model

General Notation. Return and Risk: The Capital Asset Pricing Model Return and Risk: The Capital Asset Pricing Model (Text reference: Chapter 10) Topics general notation single security statistics covariance and correlation return and risk for a portfolio diversification

More information

Note on Using Excel to Compute Optimal Risky Portfolios. Candie Chang, Hong Kong University of Science and Technology

Note on Using Excel to Compute Optimal Risky Portfolios. Candie Chang, Hong Kong University of Science and Technology Candie Chang, Hong Kong University of Science and Technology Andrew Kaplin, Kellogg Graduate School of Management, NU Introduction This document shows how to, (1) Compute the expected return and standard

More information

Washington University Fall Economics 487. Project Proposal due Monday 10/22 Final Project due Monday 12/3

Washington University Fall Economics 487. Project Proposal due Monday 10/22 Final Project due Monday 12/3 Washington University Fall 2001 Department of Economics James Morley Economics 487 Project Proposal due Monday 10/22 Final Project due Monday 12/3 For this project, you will analyze the behaviour of 10

More information

THE CHINESE UNIVERSITY OF HONG KONG Department of Mathematics MMAT5250 Financial Mathematics Homework 2 Due Date: March 24, 2018

THE CHINESE UNIVERSITY OF HONG KONG Department of Mathematics MMAT5250 Financial Mathematics Homework 2 Due Date: March 24, 2018 THE CHINESE UNIVERSITY OF HONG KONG Department of Mathematics MMAT5250 Financial Mathematics Homework 2 Due Date: March 24, 2018 Name: Student ID.: I declare that the assignment here submitted is original

More information

Modeling Portfolios that Contain Risky Assets Risk and Reward III: Basic Markowitz Portfolio Theory

Modeling Portfolios that Contain Risky Assets Risk and Reward III: Basic Markowitz Portfolio Theory Modeling Portfolios that Contain Risky Assets Risk and Reward III: Basic Markowitz Portfolio Theory C. David Levermore University of Maryland, College Park Math 420: Mathematical Modeling March 26, 2014

More information

Lecture IV Portfolio management: Efficient portfolios. Introduction to Finance Mathematics Fall Financial mathematics

Lecture IV Portfolio management: Efficient portfolios. Introduction to Finance Mathematics Fall Financial mathematics Lecture IV Portfolio management: Efficient portfolios. Introduction to Finance Mathematics Fall 2014 Reduce the risk, one asset Let us warm up by doing an exercise. We consider an investment with σ 1 =

More information

How to create portfolios for different risk groups and what to consider

How to create portfolios for different risk groups and what to consider BscB, 6 semester Bachelor Thesis Department of business studies GROUP: S11-13,72 Authors: Anders G. Nielsen Gestur Z. Valdimarsson Supervisor: Michael Christensen How to create portfolios for different

More information

Portfolio models - Podgorica

Portfolio models - Podgorica Outline Holding period return Suppose you invest in a stock-index fund over the next period (e.g. 1 year). The current price is 100$ per share. At the end of the period you receive a dividend of 5$; the

More information

Financial Economics: Risk Aversion and Investment Decisions, Modern Portfolio Theory

Financial Economics: Risk Aversion and Investment Decisions, Modern Portfolio Theory Financial Economics: Risk Aversion and Investment Decisions, Modern Portfolio Theory Shuoxun Hellen Zhang WISE & SOE XIAMEN UNIVERSITY April, 2015 1 / 95 Outline Modern portfolio theory The backward induction,

More information

Lecture #2. YTM / YTC / YTW IRR concept VOLATILITY Vs RETURN Relationship. Risk Premium over the Standard Deviation of portfolio excess return

Lecture #2. YTM / YTC / YTW IRR concept VOLATILITY Vs RETURN Relationship. Risk Premium over the Standard Deviation of portfolio excess return REVIEW Lecture #2 YTM / YTC / YTW IRR concept VOLATILITY Vs RETURN Relationship Sharpe Ratio: Risk Premium over the Standard Deviation of portfolio excess return (E(r p) r f ) / σ 8% / 20% = 0.4x. A higher

More information

Sample Reports for The Expert Allocator by Investment Technologies

Sample Reports for The Expert Allocator by Investment Technologies Sample Reports for The Expert Allocator by Investment Technologies Telephone 212/724-7535 Fax 212/208-4384 Support Telephone 203/364-9915 Fax 203/547-6164 e-mail support@investmenttechnologies.com Website

More information

Quantitative Portfolio Theory & Performance Analysis

Quantitative Portfolio Theory & Performance Analysis 550.447 Quantitative ortfolio Theory & erformance Analysis Week February 18, 2013 Basic Elements of Modern ortfolio Theory Assignment For Week of February 18 th (This Week) Read: A&L, Chapter 3 (Basic

More information

Mean Variance Portfolio Theory

Mean Variance Portfolio Theory Chapter 1 Mean Variance Portfolio Theory This book is about portfolio construction and risk analysis in the real-world context where optimization is done with constraints and penalties specified by the

More information

The proper(ty) allocation. The role of property in portfolio management

The proper(ty) allocation. The role of property in portfolio management The proper(ty) allocation The role of property in portfolio management September 2014 2 The proper(ty) allocation The role of property in portfolio management The proper(ty) allocation The role of property

More information

This assignment is due on Tuesday, September 15, at the beginning of class (or sooner).

This assignment is due on Tuesday, September 15, at the beginning of class (or sooner). Econ 434 Professor Ickes Homework Assignment #1: Answer Sheet Fall 2009 This assignment is due on Tuesday, September 15, at the beginning of class (or sooner). 1. Consider the following returns data for

More information

LECTURE NOTES 3 ARIEL M. VIALE

LECTURE NOTES 3 ARIEL M. VIALE LECTURE NOTES 3 ARIEL M VIALE I Markowitz-Tobin Mean-Variance Portfolio Analysis Assumption Mean-Variance preferences Markowitz 95 Quadratic utility function E [ w b w ] { = E [ w] b V ar w + E [ w] }

More information