Portfolio Optimization via Efficient Frontier with the IMSL Numerical Libraries

Size: px
Start display at page:

Download "Portfolio Optimization via Efficient Frontier with the IMSL Numerical Libraries"

Transcription

1 Portfolio Optimization via Efficient Frontier ith the IMSL Numerical Libraries A White Paper by Rogue Wave Softare. March 28 Rogue Wave Softare 55 Flatiron Parkay, Suite 2 Boulder, CO 83, USA.rougeave.com

2 Portfolio Optimization via Efficient Frontier ith the IMSL Numerical Libraries by Rogue Wave Softare 22 by Rogue Wave Softare. All Rights Reserved Printed in the United States of America Publishing History: May - 22 March 28 Trademark Information The Rogue Wave Softare name and logo, SourcePro, Stingray, HostAccess, IMSL and PV-WAVE are registered trademarks of Rogue Wave Softare, Inc. or its subsidiaries in the US and other countries. JMSL, JWAVE, TS-WAVE, PyIMSL and Knoledge in Motion are trademarks of Rogue Wave Softare, Inc. or its subsidiaries. All other company, product or brand names are the property of their respective oners. IMPORTANT NOTICE: The information contained in this document is subject to change ithout notice. Rogue Wave Softare, Inc. makes no arranty of any kind ith regards to this material, including, but not limited to, the implied arranties of merchantability and fitness for a particular purpose. Rogue Wave Softare, Inc. shall not be liable for errors contained herein or for incidental, consequential, or other indirect damages in connection ith the furnishing, performance, or use of this material.

3 TABLE OF CONTENTS Introduction... 4 Inputs to the Problem... 4 Constraints on the Solution... 5 Computing the Efficient Frontier... 7 Analysis of the Efficient Frontier Curve... 8 Finding the Optimal Portfolio... 9 For More Information... 2

4 Introduction The ultimate goal of portfolio optimization is to build a portfolio ith the proper proportion of its components that ill balance minimum risk and maximum return. One textbook method to that end involves the computation of the efficient frontier curve, hich enumerates a set of portfolios that ill generate some given rate of return hile minimizing risk to the investor. Once that curve is computed, an optimal portfolio can be selected from the set through a graphical method that involves the risk-free rate of return. This document ill travel through the discovery of that ideal portfolio by revieing the necessary inputs, constraints on the solution, the computation and analysis of the efficient frontier, and ho to select the optimal solution from the set of possible solutions. Several IMSL functions are referred to in the text. The function is named generically in the text, and the actual function names are provided parenthetically for the IMSL Fortran, CNL, and JMSL libraries respectively. Some details of the use of some of the functions may be included in the text; for complete usage information, please consult the appropriate IMSL documentation. The term security ill be used in reference to the items that make up the portfolio throughout this document; hoever, the contents of the portfolio may ell be a combination of stocks, bonds, indices or any investment. Further, the example in this paper is built on just five securities. The analysis technique and algorithms scale to problems of much larger scale ith hundreds or thousands of securities. Inputs to the Problem The required data for input to the main optimization routine is the variance-covariance matrix for the securities involved, the individual expected fractional returns, and the risk-free interest rate. The first to items may not be explicitly knon. Hoever, they can be computed from a time history of each security. The variance-covariance matrix contains the variance for each security as ell as the covariance beteen each pair of securities. This information is important because the variance,, is a measure of the risk associated ith a given security. Further, it is important to kno ho ell the securities are correlated ith each other. This matrix is symmetric ( 2 = 2 ) so only the upper triangular part needs to be stored and looks like: Occasionally, one ill have this information already, but the IMSL Covariance function (CORVC, covariances, com.imsl.stat.covariances) can compute the matrix from the input time series. 4.rogueave.com

5 Next, the expected returns must be provided. These values are often based on knoledge of the security or its market, but if such knoledge is lacking then they can be computed using any of several methods such as a linear regression or a geometric mean of the historical returns. The final required input is the risk-free interest rate. This is the rate of return an investor could realize assuming zero risk, like the Fed Funds rate or the Treasury Bill rate. The computed efficient frontier is a set of optimized portfolios, each of hich minimizes risk (volatility) for a given rate of return. The risk-free rate of return is used to select a single optimal portfolio from this set of optimized portfolios that has the greatest return for a lo amount of risk. Constraints on the Solution The above inputs are the ra data necessary to compute a solution. To solve the optimization problem, a set of constraints is also required. The default constraints on the contents of the portfolio ould be that each security can make up from to % of the portfolio and that the sum of all the security contributions must be %. An investor may have other ideas that constrain the eights of some or all of the securities in the portfolio. For example, in the interest of diversification, one may require that no security make up more than 25% of the portfolio. Alternatively, there may be a favorite security among the group that deserves a minimum eight of 2%. There may also be a security that is not in favor that should be limited to a maximum eight of 8%. And there remains the transparent constraint on the solution that the total of the eights must be % to build a complete portfolio. For an example case of five securities ith the above constraints, the bounds on the eights may look like the folloing matrix: The left side holds the loer bounds; the right, the upper. The second security is the favorite, and the fourth is the one to limit. The final ro is for the constraint that the total of all the eights must be %. The coefficient matrix for the constraints goes along ith the bounds discussed above. For the general example ith five securities, this coefficient matrix looks like: 5.rogueave.com

6 6.rogueave.com As before, each of the first five ros is for each security in the portfolio and the final ro is for the additional constraint that all the eights must sum to %. One can make this more complex if there are constraints like the sum of the first three securities must be less than 5% here there ould be an additional ro in the coefficient matrix (,,,,) and an additional ro in the constraints on the eights of (,.5). It may be easier to understand these constraints if they are ritten out algebraically. For the above example for five securities, the eights are through 5 in the folloing set of equations:

7 Computing the Efficient Frontier With the above required inputs and the bounds on the solution set, the efficient frontier can no be computed. This step is made up of several smaller steps. First, minimum and maximum possible returns must be computed. Then for all the returns beteen the extremes, the portfolio that minimizes the risk is computed. The efficient frontier is this set of portfolios for given values of risk and return. The minimum and maximum possible returns are computed using the IMSL Linear Programming function (DLPRS, lin_prog, com.imsl.math.linearprogramming). The inputs into this function are the constraints discussed above and the expected returns for each investment. Note that the constraints here are both upper and loer bounds. As such, they must be input into the function as separate one-dimensional arrays, ith the loer bound as a parameter and the upper as an optional argument. The optimal value returned from the linear programming function is the minimum possible return that can be realized given this set of securities and the bounds on their eights in the portfolio. To find the maximum possible return, the same function and input matrices are used except that the negative of the expected returns is used. Literally, the negative return ill be minimized no, yielding the maximum possible return. With the minimum and maximum possible returns knon, the extents of possible values on the risk-return plot have been limited vertically. The next step is to find the portfolio that minimizes risk for each one of a hundred or so return values evenly distributed beteen the minimum and maximum possible returns. Each portfolio is computed using the IMSL Quadratic Programming function (QPROG, quadratic_prg, com.imsl.math.quadraticprogramming). The solution to this function is a vector of eights for the securities that build the portfolio ith the minimum amount of risk for the given expected return. Also of interest is the overall value of risk for the portfolio, hich is related to the optimal object function found. Note that this is an output keyord for the CNL function, but not for the IMSL Fortran or JMSL routines. It can be computed easily, hoever, since it is just: x T Qx. Here x is the solution (the vector of eights), Q is the variance-covariance matrix. At this point, for each possible return, the combination of securities that minimizes risk is knon. Graphically, one plots the risk and return values ith risk on the x axis and return on the y axis. For graphical purists, this ill appear to be the reverse of hat ould normally be plotted since the resulting curve appears a double-valued function. That is, for some value of risk (on the x axis), to values of return (on the y axis) may be observed. Figure shos a typical efficient frontier graph. 7.rogueave.com

8 Figure. An efficient frontier. Analysis of the Efficient Frontier Curve This curve forms the basis of portfolio optimization and should be ell understood. Minimum and maximum possible returns ere the first to points solved for. Determined by the linear programming function calls, these points indicate the extents of realizable return for the portfolio contents and eight constraints. It is impossible to achieve a higher or loer return rate than this; that is, there is no portfolio that can give returns outside these bounds. See Figure 2. On the other axis, the quadratic programming function has found the minimum risk for values of return beteen the extremes. There are many portfolios that can result in a larger amount of risk for a given return, and these portfolios ould be points to the right of the efficient frontier curve. Hoever, it is impossible to find a portfolio that exposes less risk for any given value of return than those portfolios that lie on this line. Thus the achievable risk-return space is the area of the graph beteen the vertical extents of the curve and to the right. It is not possible, again given the content selection and constraints on the proportions, to build a portfolio that returns risk and return values outside of this region. 8.rogueave.com

9 Finding the Optimal Portfolio Figure 2. The achievable risk-return space. Examination of the portfolios that make up the efficient frontier curve ill help in understanding the concept of an optimal portfolio out of this set of portfolios that minimize risk. This examination starts ith the bottommost point on the curve, here the portfolio represents the minimum return achievable, and it has some value of risk associated ith it. As one moves along the curve, the rate of return increases and the rate of risk decreases, indicating better portfolio combinations ith regards to higher return for less risk. Eventually, the point of minimum risk is reached for some given return. If one ere interested in only minimizing risk, then this is the ideal portfolio combination. Hoever, notice that there are points on the curve indicating portfolios that yield a higher return. Moving along the curve further upard, the level of risk increases along ith the rate of return. At some point, the portfolios, hile achieving higher rates of return, are entering into a region of unacceptably high amounts of risk for those returns. The question becomes here along this portion of the curve is the ideal spot? The capital market line is a line defined such that the intercept is the risk-free rate of return and the slope is the Sharpe ratio. In terms of the Capital Asset Pricing Model, the slope is the beta of the portfolio, β. The optimal portfolio balancing the 9.rogueave.com

10 maximum return for the loest amount of risk can be found by maximizing the slope of the line. To find this optimal portfolio, the risk-free rate of return is plotted on the same graph as the efficient frontier. Since this point is risk-free by definition, it ill appear here risk equals zero, or somehere on the y axis. The maximum slope occurs here the line is tangent to the efficient frontier. Continuing the march along the curve moving from the point of minimum risk, the amount of risk sloly increases as the rate of return increases. After the optimal portfolio is reached, notice that the curvature of the efficient frontier is such that assuming additional risk does not achieve a proportional return. Figure 3 shos the efficient frontier (solid line) along ith the risk-free rate of return (square) and the capital market line (dashed line). The intersection of the efficient frontier curve ith the tangent line is the location in risk-return space of the optimal portfolio. One ould then return to the solution provided by the quadratic programming function to find hat the associated eights are for this value of return. This eight vector is the anser to the overall optimization problem: the ratio of each security in the portfolio. The last extreme point on the curve is the portfolio that gives the maximum return. If the interest as just in maximizing the possible return, this is the portfolio of choice. Hoever, an investor ould assume a larger amount of risk to achieve this return. The combination of maximizing return and minimizing risk yields the optimal portfolio at the tangent point found above..rogueave.com

11 Figure 3. The optimal portfolio..rogueave.com

12 For More Information The ultimate goal of portfolio optimization is to build a portfolio ith the proper proportion of its components that ill balance minimum risk and maximum return. The efficient frontier curve, hich enumerates a set of portfolios, ill generate some given rate of return hile minimizing risk to the investor. This hite paper outlined the necessary inputs, constraints on the solution, the computation and analysis of the efficient frontier, and ho to select the optimal solution from the set of possible solutions. Several IMSL Library functions ere referred to in the text. The IMSL Numerical Libraries have been the cornerstone of predictive analytics and high-performance computing applications in science, technical and business environments for more than three decades. Regarded as the most sophisticated and reliable technology available, the IMSL Libraries provide users ith the softare and technical expertise needed to develop and execute scalable numerical analysis applications. To vie a brief demonstration of the JMSL Numerical Library being used to solve a portfolio optimization problem similar to the one described in this hite paper, donload an evaluation version of JMSL and vie the Demo Gallery provided. For general information on the IMSL Numerical Libraries for Fortran, C/C++,.NET or Java, visit About Rogue Wave Softare Rogue Wave Softare, Inc. is the largest independent provider of cross-platform softare development tools and embedded components for the next generation of HPC applications. Rogue Wave marries High Performance Computing ith High Productivity Computing to enable developers to harness the poer of parallel applications and multicore computing. Rogue Wave products reduce the complexity of prototyping, developing, debugging, and optimizing multiprocessor and data-intensive applications. Rogue Wave customers are industry leaders in the Global 2, ISVs, OEMs, government laboratories and research institutions that leverage computationally-complex and data-intensive applications to enable innovation and outperform competitors. For more information, visit 2.rogueave.com

Numerical Analysis in the Financial Industry

Numerical Analysis in the Financial Industry Numerical Analysis in the Financial Industry An overview of numerical analysis requirements and challenges unique to the financial services industry A White Paper by Rogue Wave Software. April 2011 Rogue

More information

Analytic Modeling in Python

Analytic Modeling in Python Analytic Modeling in Python Why Choose Python for Analytic Modeling A White Paper by Visual Numerics August 2009 www.vni.com Analytic Modeling in Python Why Choose Python for Analytic Modeling by Visual

More information

WEB APPENDIX. Calculating Beta Coefficients. b Beta Rise Run Y 7.1 1 8.92 X 10.0 0.0 16.0 10.0 1.6

WEB APPENDIX. Calculating Beta Coefficients. b Beta Rise Run Y 7.1 1 8.92 X 10.0 0.0 16.0 10.0 1.6 WEB APPENDIX 8A Calculating Beta Coefficients The CAPM is an ex ante model, which means that all of the variables represent before-thefact, expected values. In particular, the beta coefficient used in

More information

CHAPTER 7: OPTIMAL RISKY PORTFOLIOS

CHAPTER 7: OPTIMAL RISKY PORTFOLIOS CHAPTER 7: OPTIMAL RIKY PORTFOLIO PROLEM ET 1. (a) and (e).. (a) and (c). After real estate is added to the portfolio, there are four asset classes in the portfolio: stocks, bonds, cash and real estate.

More information

CRITERIUM FOR FUNCTION DEFININING OF FINAL TIME SHARING OF THE BASIC CLARK S FLOW PRECEDENCE DIAGRAMMING (PDM) STRUCTURE

CRITERIUM FOR FUNCTION DEFININING OF FINAL TIME SHARING OF THE BASIC CLARK S FLOW PRECEDENCE DIAGRAMMING (PDM) STRUCTURE st Logistics International Conference Belgrade, Serbia 8-30 November 03 CRITERIUM FOR FUNCTION DEFININING OF FINAL TIME SHARING OF THE BASIC CLARK S FLOW PRECEDENCE DIAGRAMMING (PDM STRUCTURE Branko Davidović

More information

CFA Examination PORTFOLIO MANAGEMENT Page 1 of 6

CFA Examination PORTFOLIO MANAGEMENT Page 1 of 6 PORTFOLIO MANAGEMENT A. INTRODUCTION RETURN AS A RANDOM VARIABLE E(R) = the return around which the probability distribution is centered: the expected value or mean of the probability distribution of possible

More information

SAMPLE MID-TERM QUESTIONS

SAMPLE MID-TERM QUESTIONS SAMPLE MID-TERM QUESTIONS William L. Silber HOW TO PREPARE FOR THE MID- TERM: 1. Study in a group 2. Review the concept questions in the Before and After book 3. When you review the questions listed below,

More information

Algebra 1 Course Title

Algebra 1 Course Title Algebra 1 Course Title Course- wide 1. What patterns and methods are being used? Course- wide 1. Students will be adept at solving and graphing linear and quadratic equations 2. Students will be adept

More information

Chapter 5 Risk and Return ANSWERS TO SELECTED END-OF-CHAPTER QUESTIONS

Chapter 5 Risk and Return ANSWERS TO SELECTED END-OF-CHAPTER QUESTIONS Chapter 5 Risk and Return ANSWERS TO SELECTED END-OF-CHAPTER QUESTIONS 5-1 a. Stand-alone risk is only a part of total risk and pertains to the risk an investor takes by holding only one asset. Risk is

More information

CHAPTER 10 RISK AND RETURN: THE CAPITAL ASSET PRICING MODEL (CAPM)

CHAPTER 10 RISK AND RETURN: THE CAPITAL ASSET PRICING MODEL (CAPM) CHAPTER 10 RISK AND RETURN: THE CAPITAL ASSET PRICING MODEL (CAPM) Answers to Concepts Review and Critical Thinking Questions 1. Some of the risk in holding any asset is unique to the asset in question.

More information

Chapter 2 Portfolio Management and the Capital Asset Pricing Model

Chapter 2 Portfolio Management and the Capital Asset Pricing Model Chapter 2 Portfolio Management and the Capital Asset Pricing Model In this chapter, we explore the issue of risk management in a portfolio of assets. The main issue is how to balance a portfolio, that

More information

Solution: The optimal position for an investor with a coefficient of risk aversion A = 5 in the risky asset is y*:

Solution: The optimal position for an investor with a coefficient of risk aversion A = 5 in the risky asset is y*: Problem 1. Consider a risky asset. Suppose the expected rate of return on the risky asset is 15%, the standard deviation of the asset return is 22%, and the risk-free rate is 6%. What is your optimal position

More information

1 Capital Allocation Between a Risky Portfolio and a Risk-Free Asset

1 Capital Allocation Between a Risky Portfolio and a Risk-Free Asset Department of Economics Financial Economics University of California, Berkeley Economics 136 November 9, 2003 Fall 2006 Economics 136: Financial Economics Section Notes for Week 11 1 Capital Allocation

More information

Labor Demand. 1. The Derivation of the Labor Demand Curve in the Short Run:

Labor Demand. 1. The Derivation of the Labor Demand Curve in the Short Run: CON 361: Labor conomics 1. The Derivation o the Curve in the Short Run: We ill no complete our discussion o the components o a labor market by considering a irm s choice o labor demand, beore e consider

More information

Choosing the Optimal Object-Oriented Implementation using Analytic Hierarchy Process

Choosing the Optimal Object-Oriented Implementation using Analytic Hierarchy Process hoosing the Optimal Object-Oriented Implementation using Analytic Hierarchy Process Naunong Sunanta honlameth Arpnikanondt King Mongkut s University of Technology Thonburi, naunong@sit.kmutt.ac.th King

More information

Portfolio Performance Measures

Portfolio Performance Measures Portfolio Performance Measures Objective: Evaluation of active portfolio management. A performance measure is useful, for example, in ranking the performance of mutual funds. Active portfolio managers

More information

Solving Systems of Linear Equations With Row Reductions to Echelon Form On Augmented Matrices. Paul A. Trogdon Cary High School Cary, North Carolina

Solving Systems of Linear Equations With Row Reductions to Echelon Form On Augmented Matrices. Paul A. Trogdon Cary High School Cary, North Carolina Solving Sstems of Linear Equations With Ro Reductions to Echelon Form On Augmented Matrices Paul A. Trogdon Car High School Car, North Carolina There is no more efficient a to solve a sstem of linear equations

More information

15.401 Finance Theory

15.401 Finance Theory Finance Theory MIT Sloan MBA Program Andrew W. Lo Harris & Harris Group Professor, MIT Sloan School Lecture 13 14 14: : Risk Analytics and Critical Concepts Motivation Measuring Risk and Reward Mean-Variance

More information

Review for Exam 2. Instructions: Please read carefully

Review for Exam 2. Instructions: Please read carefully Review for Exam 2 Instructions: Please read carefully The exam will have 25 multiple choice questions and 5 work problems You are not responsible for any topics that are not covered in the lecture note

More information

REDUCING RISK OF HAND-ARM VIBRATION INJURY FROM HAND-HELD POWER TOOLS INTRODUCTION

REDUCING RISK OF HAND-ARM VIBRATION INJURY FROM HAND-HELD POWER TOOLS INTRODUCTION Health and Safety Executive Information Document HSE 246/31 REDUCING RISK OF HAND-ARM VIBRATION INJURY FROM HAND-HELD POWER TOOLS INTRODUCTION 1 This document contains internal guidance hich has been made

More information

CAPM, Arbitrage, and Linear Factor Models

CAPM, Arbitrage, and Linear Factor Models CAPM, Arbitrage, and Linear Factor Models CAPM, Arbitrage, Linear Factor Models 1/ 41 Introduction We now assume all investors actually choose mean-variance e cient portfolios. By equating these investors

More information

Portfolio Optimization Part 1 Unconstrained Portfolios

Portfolio Optimization Part 1 Unconstrained Portfolios Portfolio Optimization Part 1 Unconstrained Portfolios John Norstad j-norstad@northwestern.edu http://www.norstad.org September 11, 2002 Updated: November 3, 2011 Abstract We recapitulate the single-period

More information

11. OVERVIEW OF THE INVESTMENT PORTFOLIO SOFTWARE

11. OVERVIEW OF THE INVESTMENT PORTFOLIO SOFTWARE 11. OVERVIEW OF THE INVESTMENT PORTFOLIO SOFTWARE The Investment Portfolio software was developed by Edwin J. Elton, Martin J. Gruber and Christopher R. Blake, in conjunction with IntelliPro, Inc., to

More information

Capital Allocation Between The Risky And The Risk- Free Asset. Chapter 7

Capital Allocation Between The Risky And The Risk- Free Asset. Chapter 7 Capital Allocation Between The Risky And The Risk- Free Asset Chapter 7 Investment Decisions capital allocation decision = choice of proportion to be invested in risk-free versus risky assets asset allocation

More information

Algebra Unpacked Content For the new Common Core standards that will be effective in all North Carolina schools in the 2012-13 school year.

Algebra Unpacked Content For the new Common Core standards that will be effective in all North Carolina schools in the 2012-13 school year. This document is designed to help North Carolina educators teach the Common Core (Standard Course of Study). NCDPI staff are continually updating and improving these tools to better serve teachers. Algebra

More information

OPTIMIZING WEB SERVER'S DATA TRANSFER WITH HOTLINKS

OPTIMIZING WEB SERVER'S DATA TRANSFER WITH HOTLINKS OPTIMIZING WEB SERVER'S DATA TRANSFER WIT OTLINKS Evangelos Kranakis School of Computer Science, Carleton University Ottaa,ON. K1S 5B6 Canada kranakis@scs.carleton.ca Danny Krizanc Department of Mathematics,

More information

Module 3: Correlation and Covariance

Module 3: Correlation and Covariance Using Statistical Data to Make Decisions Module 3: Correlation and Covariance Tom Ilvento Dr. Mugdim Pašiƒ University of Delaware Sarajevo Graduate School of Business O ften our interest in data analysis

More information

Topic 4: Introduction to Labour Market, Aggregate Supply and AD-AS model

Topic 4: Introduction to Labour Market, Aggregate Supply and AD-AS model Topic 4: Introduction to Labour Market, Aggregate Supply and AD-AS model 1. In order to model the labour market at a microeconomic level, e simplify greatly by assuming that all jobs are the same in terms

More information

Models of Risk and Return

Models of Risk and Return Models of Risk and Return Aswath Damodaran Aswath Damodaran 1 First Principles Invest in projects that yield a return greater than the minimum acceptable hurdle rate. The hurdle rate should be higher for

More information

Lecture 2. Marginal Functions, Average Functions, Elasticity, the Marginal Principle, and Constrained Optimization

Lecture 2. Marginal Functions, Average Functions, Elasticity, the Marginal Principle, and Constrained Optimization Lecture 2. Marginal Functions, Average Functions, Elasticity, the Marginal Principle, and Constrained Optimization 2.1. Introduction Suppose that an economic relationship can be described by a real-valued

More information

NIKE Case Study Solutions

NIKE Case Study Solutions NIKE Case Study Solutions Professor Corwin This case study includes several problems related to the valuation of Nike. We will work through these problems throughout the course to demonstrate some of the

More information

Vectors Math 122 Calculus III D Joyce, Fall 2012

Vectors Math 122 Calculus III D Joyce, Fall 2012 Vectors Math 122 Calculus III D Joyce, Fall 2012 Vectors in the plane R 2. A vector v can be interpreted as an arro in the plane R 2 ith a certain length and a certain direction. The same vector can be

More information

the points are called control points approximating curve

the points are called control points approximating curve Chapter 4 Spline Curves A spline curve is a mathematical representation for which it is easy to build an interface that will allow a user to design and control the shape of complex curves and surfaces.

More information

1) Write the following as an algebraic expression using x as the variable: Triple a number subtracted from the number

1) Write the following as an algebraic expression using x as the variable: Triple a number subtracted from the number 1) Write the following as an algebraic expression using x as the variable: Triple a number subtracted from the number A. 3(x - x) B. x 3 x C. 3x - x D. x - 3x 2) Write the following as an algebraic expression

More information

AFM 472. Midterm Examination. Monday Oct. 24, 2011. A. Huang

AFM 472. Midterm Examination. Monday Oct. 24, 2011. A. Huang AFM 472 Midterm Examination Monday Oct. 24, 2011 A. Huang Name: Answer Key Student Number: Section (circle one): 10:00am 1:00pm 2:30pm Instructions: 1. Answer all questions in the space provided. If space

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 investments assembled to meet a common investment goal. An efficient portfolio is a portfolio offering the highest expected return

More information

The Graphical Method: An Example

The Graphical Method: An Example The Graphical Method: An Example Consider the following linear program: Maximize 4x 1 +3x 2 Subject to: 2x 1 +3x 2 6 (1) 3x 1 +2x 2 3 (2) 2x 2 5 (3) 2x 1 +x 2 4 (4) x 1, x 2 0, where, for ease of reference,

More information

Chapter 13 Composition of the Market Portfolio 1. Capital markets in Flatland exhibit trade in four securities, the stocks X, Y and Z,

Chapter 13 Composition of the Market Portfolio 1. Capital markets in Flatland exhibit trade in four securities, the stocks X, Y and Z, Chapter 13 Composition of the arket Portfolio 1. Capital markets in Flatland exhibit trade in four securities, the stocks X, Y and Z, and a riskless government security. Evaluated at current prices in

More information

Simple Regression Theory II 2010 Samuel L. Baker

Simple Regression Theory II 2010 Samuel L. Baker SIMPLE REGRESSION THEORY II 1 Simple Regression Theory II 2010 Samuel L. Baker Assessing how good the regression equation is likely to be Assignment 1A gets into drawing inferences about how close the

More information

Target Strategy: a practical application to ETFs and ETCs

Target Strategy: a practical application to ETFs and ETCs Target Strategy: a practical application to ETFs and ETCs Abstract During the last 20 years, many asset/fund managers proposed different absolute return strategies to gain a positive return in any financial

More information

A Quantitative Approach to the Performance of Internet Telephony to E-business Sites

A Quantitative Approach to the Performance of Internet Telephony to E-business Sites A Quantitative Approach to the Performance of Internet Telephony to E-business Sites Prathiusha Chinnusamy TransSolutions Fort Worth, TX 76155, USA Natarajan Gautam Harold and Inge Marcus Department of

More information

User Manual IC-485AI 2002-09-27

User Manual IC-485AI 2002-09-27 User Manual IC-485AI Note: This equipment has been tested and found to comply ith the limits for a Class A digital device pursuant to Part 15 of the FCC Rules. These limits are designed to provide reasonable

More information

The Tangent or Efficient Portfolio

The Tangent or Efficient Portfolio The Tangent or Efficient Portfolio 1 2 Identifying the Tangent Portfolio Sharpe Ratio: Measures the ratio of reward-to-volatility provided by a portfolio Sharpe Ratio Portfolio Excess Return E[ RP ] r

More information

Review of Fundamental Mathematics

Review of Fundamental Mathematics Review of Fundamental Mathematics As explained in the Preface and in Chapter 1 of your textbook, managerial economics applies microeconomic theory to business decision making. The decision-making tools

More information

Understanding the Impact of Weights Constraints in Portfolio Theory

Understanding the Impact of Weights Constraints in Portfolio Theory Understanding the Impact of Weights Constraints in Portfolio Theory Thierry Roncalli Research & Development Lyxor Asset Management, Paris thierry.roncalli@lyxor.com January 2010 Abstract In this article,

More information

Productivity and HPC. Erik Hagersten, CTO, Rogue Wave Software AB Developing parallel, data-intensive applications is hard. We make it easier.

Productivity and HPC. Erik Hagersten, CTO, Rogue Wave Software AB Developing parallel, data-intensive applications is hard. We make it easier. Productivity and HPC Erik Hagersten, CTO, Rogue Wave Software AB Developing parallel, data-intensive applications is hard. We make it easier. Chief architect high-end servers Sun Microsystems 1994 1999

More information

Leveraging Multipath Routing and Traffic Grooming for an Efficient Load Balancing in Optical Networks

Leveraging Multipath Routing and Traffic Grooming for an Efficient Load Balancing in Optical Networks Leveraging ultipath Routing and Traffic Grooming for an Efficient Load Balancing in Optical Netorks Juliana de Santi, André C. Drummond* and Nelson L. S. da Fonseca University of Campinas, Brazil Email:

More information

Slope-Intercept Equation. Example

Slope-Intercept Equation. Example 1.4 Equations of Lines and Modeling Find the slope and the y intercept of a line given the equation y = mx + b, or f(x) = mx + b. Graph a linear equation using the slope and the y-intercept. Determine

More information

Chapter 6 The Tradeoff Between Risk and Return

Chapter 6 The Tradeoff Between Risk and Return Chapter 6 The Tradeoff Between Risk and Return MULTIPLE CHOICE 1. Which of the following is an example of systematic risk? a. IBM posts lower than expected earnings. b. Intel announces record earnings.

More information

Chapter 7 Risk, Return, and the Capital Asset Pricing Model

Chapter 7 Risk, Return, and the Capital Asset Pricing Model Chapter 7 Risk, Return, and the Capital Asset Pricing Model MULTIPLE CHOICE 1. Suppose Sarah can borrow and lend at the risk free-rate of 3%. Which of the following four risky portfolios should she hold

More information

Common Core Unit Summary Grades 6 to 8

Common Core Unit Summary Grades 6 to 8 Common Core Unit Summary Grades 6 to 8 Grade 8: Unit 1: Congruence and Similarity- 8G1-8G5 rotations reflections and translations,( RRT=congruence) understand congruence of 2 d figures after RRT Dilations

More information

How to Win the Stock Market Game

How to Win the Stock Market Game How to Win the Stock Market Game 1 Developing Short-Term Stock Trading Strategies by Vladimir Daragan PART 1 Table of Contents 1. Introduction 2. Comparison of trading strategies 3. Return per trade 4.

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) Firms that survive in the long run are usually those that A) remain small. B) strive for the largest

More information

Session 7 Bivariate Data and Analysis

Session 7 Bivariate Data and Analysis Session 7 Bivariate Data and Analysis Key Terms for This Session Previously Introduced mean standard deviation New in This Session association bivariate analysis contingency table co-variation least squares

More information

Use the table for the questions 18 and 19 below.

Use the table for the questions 18 and 19 below. Use the table for the questions 18 and 19 below. The following table summarizes prices of various default-free zero-coupon bonds (expressed as a percentage of face value): Maturity (years) 1 3 4 5 Price

More information

Oracle Scheduling: Controlling Granularity in Implicitly Parallel Languages

Oracle Scheduling: Controlling Granularity in Implicitly Parallel Languages Oracle Scheduling: Controlling Granularity in Implicitly Parallel Languages Umut A. Acar Arthur Charguéraud Mike Rainey Max Planck Institute for Softare Systems {umut,charguer,mrainey}@mpi-ss.org Abstract

More information

12. Inner Product Spaces

12. Inner Product Spaces 1. Inner roduct Spaces 1.1. Vector spaces A real vector space is a set of objects that you can do to things ith: you can add to of them together to get another such object, and you can multiply one of

More information

Algebra 2 Chapter 1 Vocabulary. identity - A statement that equates two equivalent expressions.

Algebra 2 Chapter 1 Vocabulary. identity - A statement that equates two equivalent expressions. Chapter 1 Vocabulary identity - A statement that equates two equivalent expressions. verbal model- A word equation that represents a real-life problem. algebraic expression - An expression with variables.

More information

Mathematics Online Instructional Materials Correlation to the 2009 Algebra I Standards of Learning and Curriculum Framework

Mathematics Online Instructional Materials Correlation to the 2009 Algebra I Standards of Learning and Curriculum Framework Provider York County School Division Course Syllabus URL http://yorkcountyschools.org/virtuallearning/coursecatalog.aspx Course Title Algebra I AB Last Updated 2010 - A.1 The student will represent verbal

More information

RISKS IN MUTUAL FUND INVESTMENTS

RISKS IN MUTUAL FUND INVESTMENTS RISKS IN MUTUAL FUND INVESTMENTS Classification of Investors Investors can be classified based on their Risk Tolerance Levels : Low Risk Tolerance Moderate Risk Tolerance High Risk Tolerance Fund Classification

More information

A Mean-Variance Framework for Tests of Asset Pricing Models

A Mean-Variance Framework for Tests of Asset Pricing Models A Mean-Variance Framework for Tests of Asset Pricing Models Shmuel Kandel University of Chicago Tel-Aviv, University Robert F. Stambaugh University of Pennsylvania This article presents a mean-variance

More information

Numerical Algorithms Group. Embedded Analytics. A cure for the common code. www.nag.com. Results Matter. Trust NAG.

Numerical Algorithms Group. Embedded Analytics. A cure for the common code. www.nag.com. Results Matter. Trust NAG. Embedded Analytics A cure for the common code www.nag.com Results Matter. Trust NAG. Executive Summary How much information is there in your data? How much is hidden from you, because you don t have access

More information

FTS Real Time System Project: Portfolio Diversification Note: this project requires use of Excel s Solver

FTS Real Time System Project: Portfolio Diversification Note: this project requires use of Excel s Solver FTS Real Time System Project: Portfolio Diversification Note: this project requires use of Excel s Solver Question: How do you create a diversified stock portfolio? Advice given by most financial advisors

More information

Algebra I Vocabulary Cards

Algebra I Vocabulary Cards Algebra I Vocabulary Cards Table of Contents Expressions and Operations Natural Numbers Whole Numbers Integers Rational Numbers Irrational Numbers Real Numbers Absolute Value Order of Operations Expression

More information

SECOND DERIVATIVE TEST FOR CONSTRAINED EXTREMA

SECOND DERIVATIVE TEST FOR CONSTRAINED EXTREMA SECOND DERIVATIVE TEST FOR CONSTRAINED EXTREMA This handout presents the second derivative test for a local extrema of a Lagrange multiplier problem. The Section 1 presents a geometric motivation for the

More information

Citi Volatility Balanced Beta (VIBE) Equity Eurozone Net Total Return Index Index Methodology. Citi Investment Strategies

Citi Volatility Balanced Beta (VIBE) Equity Eurozone Net Total Return Index Index Methodology. Citi Investment Strategies Citi Volatility Balanced Beta (VIBE) Equity Eurozone Net Total Return Index Citi Investment Strategies 21 November 2011 Table of Contents Citi Investment Strategies Part A: Introduction 1 Part B: Key Information

More information

The Point-Slope Form

The Point-Slope Form 7. The Point-Slope Form 7. OBJECTIVES 1. Given a point and a slope, find the graph of a line. Given a point and the slope, find the equation of a line. Given two points, find the equation of a line y Slope

More information

Linear Programming. Solving LP Models Using MS Excel, 18

Linear Programming. Solving LP Models Using MS Excel, 18 SUPPLEMENT TO CHAPTER SIX Linear Programming SUPPLEMENT OUTLINE Introduction, 2 Linear Programming Models, 2 Model Formulation, 4 Graphical Linear Programming, 5 Outline of Graphical Procedure, 5 Plotting

More information

3.3. Solving Polynomial Equations. Introduction. Prerequisites. Learning Outcomes

3.3. Solving Polynomial Equations. Introduction. Prerequisites. Learning Outcomes Solving Polynomial Equations 3.3 Introduction Linear and quadratic equations, dealt within Sections 3.1 and 3.2, are members of a class of equations, called polynomial equations. These have the general

More information

M.I.T. Spring 1999 Sloan School of Management 15.415. First Half Summary

M.I.T. Spring 1999 Sloan School of Management 15.415. First Half Summary M.I.T. Spring 1999 Sloan School of Management 15.415 First Half Summary Present Values Basic Idea: We should discount future cash flows. The appropriate discount rate is the opportunity cost of capital.

More information

Part 2: Analysis of Relationship Between Two Variables

Part 2: Analysis of Relationship Between Two Variables Part 2: Analysis of Relationship Between Two Variables Linear Regression Linear correlation Significance Tests Multiple regression Linear Regression Y = a X + b Dependent Variable Independent Variable

More information

Enhancing the Teaching of Statistics: Portfolio Theory, an Application of Statistics in Finance

Enhancing the Teaching of Statistics: Portfolio Theory, an Application of Statistics in Finance Page 1 of 11 Enhancing the Teaching of Statistics: Portfolio Theory, an Application of Statistics in Finance Nicolas Christou University of California, Los Angeles Journal of Statistics Education Volume

More information

Chapter 1. Introduction to Portfolio Theory. 1.1 Portfolios of Two Risky Assets

Chapter 1. Introduction to Portfolio Theory. 1.1 Portfolios of Two Risky Assets Chapter 1 Introduction to Portfolio Theory Updated: August 9, 2013. This chapter introduces modern portfolio theory in a simplified setting where there are only two risky assets and a single risk-free

More information

with functions, expressions and equations which follow in units 3 and 4.

with functions, expressions and equations which follow in units 3 and 4. Grade 8 Overview View unit yearlong overview here The unit design was created in line with the areas of focus for grade 8 Mathematics as identified by the Common Core State Standards and the PARCC Model

More information

CORRELATED TO THE SOUTH CAROLINA COLLEGE AND CAREER-READY FOUNDATIONS IN ALGEBRA

CORRELATED TO THE SOUTH CAROLINA COLLEGE AND CAREER-READY FOUNDATIONS IN ALGEBRA We Can Early Learning Curriculum PreK Grades 8 12 INSIDE ALGEBRA, GRADES 8 12 CORRELATED TO THE SOUTH CAROLINA COLLEGE AND CAREER-READY FOUNDATIONS IN ALGEBRA April 2016 www.voyagersopris.com Mathematical

More information

The number of mutual funds has grown dramatically in recent

The number of mutual funds has grown dramatically in recent Risk-Adjusted Performance of Mutual Funds Katerina Simons Economist, Federal Reserve Bank of Boston. The author is grateful to Richard Kopcke and Peter Fortune for helpful comments and to Jay Seideman

More information

KEANSBURG SCHOOL DISTRICT KEANSBURG HIGH SCHOOL Mathematics Department. HSPA 10 Curriculum. September 2007

KEANSBURG SCHOOL DISTRICT KEANSBURG HIGH SCHOOL Mathematics Department. HSPA 10 Curriculum. September 2007 KEANSBURG HIGH SCHOOL Mathematics Department HSPA 10 Curriculum September 2007 Written by: Karen Egan Mathematics Supervisor: Ann Gagliardi 7 days Sample and Display Data (Chapter 1 pp. 4-47) Surveys and

More information

A synonym is a word that has the same or almost the same definition of

A synonym is a word that has the same or almost the same definition of Slope-Intercept Form Determining the Rate of Change and y-intercept Learning Goals In this lesson, you will: Graph lines using the slope and y-intercept. Calculate the y-intercept of a line when given

More information

Solving Quadratic Equations

Solving Quadratic Equations 9.3 Solving Quadratic Equations by Using the Quadratic Formula 9.3 OBJECTIVES 1. Solve a quadratic equation by using the quadratic formula 2. Determine the nature of the solutions of a quadratic equation

More information

Early Warning Indicators of Strategic Risk in Togolese Commercial Banks: An AHP Model Approach

Early Warning Indicators of Strategic Risk in Togolese Commercial Banks: An AHP Model Approach IOSR Journal of Business and Management (IOSR-JBM) e-issn: 2278-487X, p-issn: 2319-7668. Volume 16, Issue 3. Ver. IV (Feb. 2014), PP 45-61 Early Warning Indicators of Strategic Risk in Togolese Commercial

More information

1 Portfolio mean and variance

1 Portfolio mean and variance Copyright c 2005 by Karl Sigman Portfolio mean and variance Here we study the performance of a one-period investment X 0 > 0 (dollars) shared among several different assets. Our criterion for measuring

More information

A Review of Cross Sectional Regression for Financial Data You should already know this material from previous study

A Review of Cross Sectional Regression for Financial Data You should already know this material from previous study A Review of Cross Sectional Regression for Financial Data You should already know this material from previous study But I will offer a review, with a focus on issues which arise in finance 1 TYPES OF FINANCIAL

More information

ON THE LIMITS OF TEXT FILE COMPRESSION. V. y. SHEN and M. H. HALSTEAD. Computer Sciences Department Purdue University w. Lafayette, IN 47907

ON THE LIMITS OF TEXT FILE COMPRESSION. V. y. SHEN and M. H. HALSTEAD. Computer Sciences Department Purdue University w. Lafayette, IN 47907 ON THE LIMITS OF TEXT FILE COMPRESSION V. y. SHEN and M. H. HALSTEAD Computer Sciences Department Purdue University. Lafayette, IN 47907 CSD-TR 257 KEY WORDS AND PHRASES: file compression, compression

More information

ECO 317 Economics of Uncertainty Fall Term 2009 Week 5 Precepts October 21 Insurance, Portfolio Choice - Questions

ECO 317 Economics of Uncertainty Fall Term 2009 Week 5 Precepts October 21 Insurance, Portfolio Choice - Questions ECO 37 Economics of Uncertainty Fall Term 2009 Week 5 Precepts October 2 Insurance, Portfolio Choice - Questions Important Note: To get the best value out of this precept, come with your calculator or

More information

Lecture 1: Asset Allocation

Lecture 1: Asset Allocation Lecture 1: Asset Allocation Investments FIN460-Papanikolaou Asset Allocation I 1/ 62 Overview 1. Introduction 2. Investor s Risk Tolerance 3. Allocating Capital Between a Risky and riskless asset 4. Allocating

More information

1. Portfolio Returns and Portfolio Risk

1. Portfolio Returns and Portfolio Risk Chapter 8 Risk and Return: Capital Market Theory Chapter 8 Contents Learning Objectives 1. Portfolio Returns and Portfolio Risk 1. Calculate the expected rate of return and volatility for a portfolio of

More information

GRADES 7, 8, AND 9 BIG IDEAS

GRADES 7, 8, AND 9 BIG IDEAS Table 1: Strand A: BIG IDEAS: MATH: NUMBER Introduce perfect squares, square roots, and all applications Introduce rational numbers (positive and negative) Introduce the meaning of negative exponents for

More information

Math 0980 Chapter Objectives. Chapter 1: Introduction to Algebra: The Integers.

Math 0980 Chapter Objectives. Chapter 1: Introduction to Algebra: The Integers. Math 0980 Chapter Objectives Chapter 1: Introduction to Algebra: The Integers. 1. Identify the place value of a digit. 2. Write a number in words or digits. 3. Write positive and negative numbers used

More information

Biggar High School Mathematics Department. National 5 Learning Intentions & Success Criteria: Assessing My Progress

Biggar High School Mathematics Department. National 5 Learning Intentions & Success Criteria: Assessing My Progress Biggar High School Mathematics Department National 5 Learning Intentions & Success Criteria: Assessing My Progress Expressions & Formulae Topic Learning Intention Success Criteria I understand this Approximation

More information

Chapter 9. The Valuation of Common Stock. 1.The Expected Return (Copied from Unit02, slide 39)

Chapter 9. The Valuation of Common Stock. 1.The Expected Return (Copied from Unit02, slide 39) Readings Chapters 9 and 10 Chapter 9. The Valuation of Common Stock 1. The investor s expected return 2. Valuation as the Present Value (PV) of dividends and the growth of dividends 3. The investor s required

More information

Florida Math 0028. Correlation of the ALEKS course Florida Math 0028 to the Florida Mathematics Competencies - Upper

Florida Math 0028. Correlation of the ALEKS course Florida Math 0028 to the Florida Mathematics Competencies - Upper Florida Math 0028 Correlation of the ALEKS course Florida Math 0028 to the Florida Mathematics Competencies - Upper Exponents & Polynomials MDECU1: Applies the order of operations to evaluate algebraic

More information

An increase in the number of students attending college. shifts to the left. An increase in the wage rate of refinery workers.

An increase in the number of students attending college. shifts to the left. An increase in the wage rate of refinery workers. 1. Which of the following would shift the demand curve for new textbooks to the right? a. A fall in the price of paper used in publishing texts. b. A fall in the price of equivalent used text books. c.

More information

Section 14 Simple Linear Regression: Introduction to Least Squares Regression

Section 14 Simple Linear Regression: Introduction to Least Squares Regression Slide 1 Section 14 Simple Linear Regression: Introduction to Least Squares Regression There are several different measures of statistical association used for understanding the quantitative relationship

More information

THE PROMOTION OF THE INTERNET AS A SOURCE OF INFORMATION ON WATER AND SANITATION

THE PROMOTION OF THE INTERNET AS A SOURCE OF INFORMATION ON WATER AND SANITATION THE PROMOTION OF THE INTERNET AS A SOURCE OF INFORMATION ON WATER AND SANITATION Executive Summary by N. Kibata, C. A. Buckley and F. A. O. Otieno Centre for Water Pollution Research Department of Civil

More information

DIVERSIFICATION, REBALANCING, AND THE GEOMETRIC MEAN FRONTIER. William J. Bernstein. David Wilkinson

DIVERSIFICATION, REBALANCING, AND THE GEOMETRIC MEAN FRONTIER. William J. Bernstein. David Wilkinson DIVERSIFICATION, REBALANCING, AND THE GEOMETRIC MEAN FRONTIER William J. Bernstein wbern@mail.coos.or.us and David Wilkinson DaveWilk@worldnet.att.net November 24, 1997 Abstract The effective (geometric

More information

C(t) (1 + y) 4. t=1. For the 4 year bond considered above, assume that the price today is 900$. The yield to maturity will then be the y that solves

C(t) (1 + y) 4. t=1. For the 4 year bond considered above, assume that the price today is 900$. The yield to maturity will then be the y that solves Economics 7344, Spring 2013 Bent E. Sørensen INTEREST RATE THEORY We will cover fixed income securities. The major categories of long-term fixed income securities are federal government bonds, corporate

More information

ALGEBRA I (Created 2014) Amherst County Public Schools

ALGEBRA I (Created 2014) Amherst County Public Schools ALGEBRA I (Created 2014) Amherst County Public Schools The 2009 Mathematics Standards of Learning Curriculum Framework is a companion document to the 2009 Mathematics Standards of Learning and amplifies

More information

The University of Toledo Soil Mechanics Laboratory

The University of Toledo Soil Mechanics Laboratory The University of Toledo Soil Mechanics Laboratory 1 Soil Moisture-Density Relationship Standard and Modified Proctor Tests Introduction For earthork construction it is important to compact soils to a

More information

Data Mining mit der JMSL Numerical Library for Java Applications

Data Mining mit der JMSL Numerical Library for Java Applications Data Mining mit der JMSL Numerical Library for Java Applications Stefan Sineux 8. Java Forum Stuttgart 07.07.2005 Agenda Visual Numerics JMSL TM Numerical Library Neuronale Netze (Hintergrund) Demos Neuronale

More information

Univariate Regression

Univariate Regression Univariate Regression Correlation and Regression The regression line summarizes the linear relationship between 2 variables Correlation coefficient, r, measures strength of relationship: the closer r is

More information