e62 Introduction to Optimization Fall 2016 Professor Benjamin Van Roy Homework 1 Solutions

Size: px
Start display at page:

Download "e62 Introduction to Optimization Fall 2016 Professor Benjamin Van Roy Homework 1 Solutions"

Transcription

1 e62 Introduction to Optimization Fall 26 Professor Benjamin Van Roy 267 Homework Solutions A. Python Practice Problem The script below will generate the required result. fb_list = #this list will contain the series fb_list.append() fb_list.append() for i in range(2,): new_val = fb_listi- + fb_listi-2 fb_list.append(new_val) message = "25th element of the series : " + str(fb_list25) print (message) message = "5th element of the series : " + str(fb_list5) print (message) message = "th element of the series : " + str(fb_list) print (message) This is the result of running the code above: 25th element of the series : th element of the series : th element of the series: Problem 2 The script below will generate the required result. import numpy as np import e62

2 c = np.matrix(,2) A = np.matrix(2,4,8,) b = np.matrix(8,4) opt_sol, opt_val = e62.linprog(a,b,c) print ("optimal solution:") print (opt_sol) print ("optimal objective value:") print (opt_val) This is the result of running the code above: optimal solution:. 2. optimal objective value: 4. B. Linear Algebra Review Part I Problem Expanding out the first four expressions, we have: a T x = x 2 = 2 x () a T x = x 2 = 2 x + 2 (2) b T x = x 2 = 2x (3) b T x = x 2 = 2x + (4) Each of these corresponds to a line in the plane. Expanding out expressions 5 and 6, we have: a b x =, T a b x =, 2 T x x 2 x x 2 = = 2 (5) (6)

3 Each of these is a system with a unique solution. Their respective solutions are x = 4 3 x =. 2 3 We thus obtain the following graph: and x 2 2: a T x= : a T x= 5 6 x 4: b T x= 3: b T x= where the shaded region represents all x R 2 such that a T x. Problem 2 Part Finding a b such that Ax = b has no solution is equivalent to finding a vector, b R 3, such that b is not in C(A). One easy choice is: b = (7) The only way to get the first two b values in some linear combination of the columns of A is to set x =, x 2 =. But, this leads to = in the third row equation. So, Ax = b cannot have a solution in this case. Part 2 Finding a non-zero b such that Ax = b has a solution is equivalent to finding a vector, b R 3, such that b is in C(A). One easy choice is: b = 2 (8)

4 which leads to a solution of x =. Problem 5 By definition, S is a subspace of R N if and only if the following are true : a) For any x S and y S, x + y S b) For any x S and scalar α, αx S c) S Now, given that U and V are both subspaces in R N for some N, let s look at U V. For any x U V and y U V, x and y must each be elements of both U and V by the definition of the intersection operator. Thus, (x + y) U and (x + y) V since U and V are both subspaces and thus satisfy property above. Thus (x + y) U V for any such x and y. Also, for any x U V and any scalar α, αx must be in both U and V since these are subspaces and thus satisfy property 2 above. Thus, αx U V. Finally, we have U V since is an element of both U and V. Thus, by the definition above, U V is a subspace of R N. On the other hand, ( U ) V is not necessarily ( a subspace ) in R N. We can show this by counterexample. Let U = span and V = span. Now take x = and y =. Note that x U V and y U V by the definition of the union operator. But, we have x + y = which is not an element of U V. Thus, property above does not hold for U V and this cannot not a subspace. Problem 7 Yes, it is possible for {x, y, z} to be linearly dependent. For example, take x =, y =, and z =. We have that x T y = and y is not a multiple of z. However, z = x + y so the three vectors are linearly dependent. This definition can be found in an introductory Linear Algebra text, such as Linear Algebra with Applications by Otto Bretchler.

5 Part II Problem a An example is: A = Problem b An example is: A = Problem c An example is: A = For this matrix A, for all values of y, the vector specified below is a solution: y + x = y C. Contingent Claims Problem a Let M =. For the stock, the payoff vector a R M is given by: a m = m. (9) For the zero-coupon bond, the payoff vector a 2 R M is given by: a 2 m =. () For the European call option, the payoff vector a 3 R M is given by: a 3 m = max(m 5, ) ()

6 For the European put option, the payoff vector a 4 R M is given by: a 4 m = max(5 m, ) (2) For the straddle, the payoff vector a 5 R M is given by: a 5 m = + max(m 5, 5 m) (3) Problem b Let p j denote the price of the contingent claim with payoffs a j. Note that, a 5a 2 a 3 + a 4 =, and therefore, the initial investment must be zero for this portfolio to satisfy a no arbitrage condition. Since the initial investment is given by p 5p 2 p 3 + p 4 =, with p = $5, p 2 = $.9, p 3 = $, we conclude that p 4 = $5 Problem c Note that a 2 a 3 a 4 + a 5 =. Consequently, the payoff of the straddle can be replicate according to a 5 = a 2 + a 3 + a 4. In other words, the straddle is replicated by short-selling one zero-coupon bond, purchasing one European put option, and purchasing one European call option.

Follow links Class Use and other Permissions. For more information, send to:

Follow links Class Use and other Permissions. For more information, send  to: COPYRIGHT NOTICE: : is published by Princeton University Press and copyrighted, 2009, by Princeton University Press. All rights reserved. No part of this book may be reproduced in any form by any electronic

More information

No-arbitrage Pricing Approach and Fundamental Theorem of Asset Pricing

No-arbitrage Pricing Approach and Fundamental Theorem of Asset Pricing No-arbitrage Pricing Approach and Fundamental Theorem of Asset Pricing presented by Yue Kuen KWOK Department of Mathematics Hong Kong University of Science and Technology 1 Parable of the bookmaker Taking

More information

ELEMENTS OF MATRIX MATHEMATICS

ELEMENTS OF MATRIX MATHEMATICS QRMC07 9/7/0 4:45 PM Page 5 CHAPTER SEVEN ELEMENTS OF MATRIX MATHEMATICS 7. AN INTRODUCTION TO MATRICES Investors frequently encounter situations involving numerous potential outcomes, many discrete periods

More information

( 0) ,...,S N ,S 2 ( 0)... S N S 2. N and a portfolio is created that way, the value of the portfolio at time 0 is: (0) N S N ( 1, ) +...

( 0) ,...,S N ,S 2 ( 0)... S N S 2. N and a portfolio is created that way, the value of the portfolio at time 0 is: (0) N S N ( 1, ) +... No-Arbitrage Pricing Theory Single-Period odel There are N securities denoted ( S,S,...,S N ), they can be stocks, bonds, or any securities, we assume they are all traded, and have prices available. Ω

More information

Solutions to Midterm Exam. ECON Financial Economics Boston College, Department of Economics Spring Tuesday, March 19, 10:30-11:45am

Solutions to Midterm Exam. ECON Financial Economics Boston College, Department of Economics Spring Tuesday, March 19, 10:30-11:45am Solutions to Midterm Exam ECON 33790 - Financial Economics Peter Ireland Boston College, Department of Economics Spring 209 Tuesday, March 9, 0:30 - :5am. Profit Maximization With the production function

More information

Financial Market Models. Lecture 1. One-period model of financial markets & hedging problems. Imperial College Business School

Financial Market Models. Lecture 1. One-period model of financial markets & hedging problems. Imperial College Business School Financial Market Models Lecture One-period model of financial markets & hedging problems One-period model of financial markets a 4 2a 3 3a 3 a 3 -a 4 2 Aims of section Introduce one-period model with finite

More information

4: SINGLE-PERIOD MARKET MODELS

4: SINGLE-PERIOD MARKET MODELS 4: SINGLE-PERIOD MARKET MODELS Marek Rutkowski School of Mathematics and Statistics University of Sydney Semester 2, 2016 M. Rutkowski (USydney) Slides 4: Single-Period Market Models 1 / 87 General Single-Period

More information

Super-replicating portfolios

Super-replicating portfolios Super-replicating portfolios 1. Introduction Assume that in one year from now the price for a stock X may take values in the set. Consider four derivative instruments and their payoffs which depends on

More information

Microeconomics of Banking: Lecture 3

Microeconomics of Banking: Lecture 3 Microeconomics of Banking: Lecture 3 Prof. Ronaldo CARPIO Oct. 9, 2015 Review of Last Week Consumer choice problem General equilibrium Contingent claims Risk aversion The optimal choice, x = (X, Y ), is

More information

Pricing Kernel. v,x = p,y = p,ax, so p is a stochastic discount factor. One refers to p as the pricing kernel.

Pricing Kernel. v,x = p,y = p,ax, so p is a stochastic discount factor. One refers to p as the pricing kernel. Payoff Space The set of possible payoffs is the range R(A). This payoff space is a subspace of the state space and is a Euclidean space in its own right. 1 Pricing Kernel By the law of one price, two portfolios

More information

Follow links for Class Use and other Permissions. For more information send to:

Follow links for Class Use and other Permissions. For more information send  to: COPYRIGHT NOTICE: Costis Skiadas: Asset Pricing Theory is published by Princeton University Press and copyrighted, 2009, by Princeton University Press. All rights reserved. No part of this book may be

More information

3. The Discount Factor

3. The Discount Factor 3. he Discount Factor Objectives Eplanation of - Eistence of Discount Factors: Necessary and Sufficient Conditions - Positive Discount Factors: Necessary and Sufficient Conditions Contents 3. he Discount

More information

(a) Describe the game in plain english and find its equivalent strategic form.

(a) Describe the game in plain english and find its equivalent strategic form. Risk and Decision Making (Part II - Game Theory) Mock Exam MIT/Portugal pages Professor João Soares 2007/08 1 Consider the game defined by the Kuhn tree of Figure 1 (a) Describe the game in plain english

More information

MATH 5510 Mathematical Models of Financial Derivatives. Topic 1 Risk neutral pricing principles under single-period securities models

MATH 5510 Mathematical Models of Financial Derivatives. Topic 1 Risk neutral pricing principles under single-period securities models MATH 5510 Mathematical Models of Financial Derivatives Topic 1 Risk neutral pricing principles under single-period securities models 1.1 Law of one price and Arrow securities 1.2 No-arbitrage theory and

More information

3.2 No-arbitrage theory and risk neutral probability measure

3.2 No-arbitrage theory and risk neutral probability measure Mathematical Models in Economics and Finance Topic 3 Fundamental theorem of asset pricing 3.1 Law of one price and Arrow securities 3.2 No-arbitrage theory and risk neutral probability measure 3.3 Valuation

More information

One-Period Valuation Theory

One-Period Valuation Theory One-Period Valuation Theory Part 1: Basic Framework Chris Telmer March, 2013 Develop a simple framework for understanding what the pricing kernel is and how it s related to the economics of risk, return

More information

Chapter 15: Jump Processes and Incomplete Markets. 1 Jumps as One Explanation of Incomplete Markets

Chapter 15: Jump Processes and Incomplete Markets. 1 Jumps as One Explanation of Incomplete Markets Chapter 5: Jump Processes and Incomplete Markets Jumps as One Explanation of Incomplete Markets It is easy to argue that Brownian motion paths cannot model actual stock price movements properly in reality,

More information

Hedging and Pricing in the Binomial Model

Hedging and Pricing in the Binomial Model Hedging and Pricing in the Binomial Model Peter Carr Bloomberg LP and Courant Institute, NYU Continuous Time Finance Lecture 2 Wednesday, January 26th, 2005 One Period Model Initial Setup: 0 risk-free

More information

Fundamental Theorems of Asset Pricing. 3.1 Arbitrage and risk neutral probability measures

Fundamental Theorems of Asset Pricing. 3.1 Arbitrage and risk neutral probability measures Lecture 3 Fundamental Theorems of Asset Pricing 3.1 Arbitrage and risk neutral probability measures Several important concepts were illustrated in the example in Lecture 2: arbitrage; risk neutral probability

More information

Portfolio Choice. := δi j, the basis is orthonormal. Expressed in terms of the natural basis, x = j. x j x j,

Portfolio Choice. := δi j, the basis is orthonormal. Expressed in terms of the natural basis, x = j. x j x j, Portfolio Choice Let us model portfolio choice formally in Euclidean space. There are n assets, and the portfolio space X = R n. A vector x X is a portfolio. Even though we like to see a vector as coordinate-free,

More information

I(g) = income from selling gearboxes C(g) = cost of purchasing gearboxes The BREAK-EVEN PT is where COST = INCOME or C(g) = I(g).

I(g) = income from selling gearboxes C(g) = cost of purchasing gearboxes The BREAK-EVEN PT is where COST = INCOME or C(g) = I(g). Page 367 I(g) = income from selling gearboxes C(g) = cost of purchasing gearboxes The BREAK-EVEN PT is where COST = INCOME or C(g) = I(g). PROFIT is when INCOME > COST or I(g) > C(g). I(g) = 8.5g g = the

More information

Finance: Lecture 4 - No Arbitrage Pricing Chapters of DD Chapter 1 of Ross (2005)

Finance: Lecture 4 - No Arbitrage Pricing Chapters of DD Chapter 1 of Ross (2005) Finance: Lecture 4 - No Arbitrage Pricing Chapters 10-12 of DD Chapter 1 of Ross (2005) Prof. Alex Stomper MIT Sloan, IHS & VGSF March 2010 Alex Stomper (MIT, IHS & VGSF) Finance March 2010 1 / 15 Fundamental

More information

CHAPTER 2 Concepts of Financial Economics and Asset Price Dynamics

CHAPTER 2 Concepts of Financial Economics and Asset Price Dynamics CHAPTER Concepts of Financial Economics and Asset Price Dynamics In the last chapter, we observe how the application of the no arbitrage argument enforces the forward price of a forward contract. The forward

More information

Lecture 8: Asset pricing

Lecture 8: Asset pricing BURNABY SIMON FRASER UNIVERSITY BRITISH COLUMBIA Paul Klein Office: WMC 3635 Phone: (778) 782-9391 Email: paul klein 2@sfu.ca URL: http://paulklein.ca/newsite/teaching/483.php Economics 483 Advanced Topics

More information

Lecture 8: Introduction to asset pricing

Lecture 8: Introduction to asset pricing THE UNIVERSITY OF SOUTHAMPTON Paul Klein Office: Murray Building, 3005 Email: p.klein@soton.ac.uk URL: http://paulklein.se Economics 3010 Topics in Macroeconomics 3 Autumn 2010 Lecture 8: Introduction

More information

Homework Assignment #1: Answer Sheet

Homework Assignment #1: Answer Sheet Econ 434 Professor Ickes Fall 006 Homework Assignment #1: Answer Sheet This assignment is due on Tuesday, Sept 19, at the beginning of class (or sooner). 1. Consider a small open economy that is endowed

More information

Introduction to Financial Mathematics and Engineering. A guide, based on lecture notes by Professor Chjan Lim. Julienne LaChance

Introduction to Financial Mathematics and Engineering. A guide, based on lecture notes by Professor Chjan Lim. Julienne LaChance Introduction to Financial Mathematics and Engineering A guide, based on lecture notes by Professor Chjan Lim Julienne LaChance Lecture 1. The Basics risk- involves an unknown outcome, but a known probability

More information

Systems of Ordinary Differential Equations. Lectures INF2320 p. 1/48

Systems of Ordinary Differential Equations. Lectures INF2320 p. 1/48 Systems of Ordinary Differential Equations Lectures INF2320 p. 1/48 Lectures INF2320 p. 2/48 ystems of ordinary differential equations Last two lectures we have studied models of the form y (t) = F(y),

More information

Non replication of options

Non replication of options Non replication of options Christos Kountzakis, Ioannis A Polyrakis and Foivos Xanthos June 30, 2008 Abstract In this paper we study the scarcity of replication of options in the two period model of financial

More information

Help Session 4. David Sovich. Washington University in St. Louis

Help Session 4. David Sovich. Washington University in St. Louis Help Session 4 David Sovich Washington University in St. Louis TODAY S AGENDA More on no-arbitrage bounds for calls and puts Some discussion of American options Replicating complex payoffs Pricing in the

More information

Optimizing Portfolios

Optimizing Portfolios Optimizing Portfolios An Undergraduate Introduction to Financial Mathematics J. Robert Buchanan 2010 Introduction Investors may wish to adjust the allocation of financial resources including a mixture

More information

Martingale Pricing Theory in Discrete-Time and Discrete-Space Models

Martingale Pricing Theory in Discrete-Time and Discrete-Space Models IEOR E4707: Foundations of Financial Engineering c 206 by Martin Haugh Martingale Pricing Theory in Discrete-Time and Discrete-Space Models These notes develop the theory of martingale pricing in a discrete-time,

More information

Finding Mixed-strategy Nash Equilibria in 2 2 Games ÙÛ

Finding Mixed-strategy Nash Equilibria in 2 2 Games ÙÛ Finding Mixed Strategy Nash Equilibria in 2 2 Games Page 1 Finding Mixed-strategy Nash Equilibria in 2 2 Games ÙÛ Introduction 1 The canonical game 1 Best-response correspondences 2 A s payoff as a function

More information

Microeconomics of Banking: Lecture 2

Microeconomics of Banking: Lecture 2 Microeconomics of Banking: Lecture 2 Prof. Ronaldo CARPIO September 25, 2015 A Brief Look at General Equilibrium Asset Pricing Last week, we saw a general equilibrium model in which banks were irrelevant.

More information

Uncertainty in Equilibrium

Uncertainty in Equilibrium Uncertainty in Equilibrium Larry Blume May 1, 2007 1 Introduction The state-preference approach to uncertainty of Kenneth J. Arrow (1953) and Gérard Debreu (1959) lends itself rather easily to Walrasian

More information

Finance: A Quantitative Introduction Chapter 7 - part 2 Option Pricing Foundations

Finance: A Quantitative Introduction Chapter 7 - part 2 Option Pricing Foundations Finance: A Quantitative Introduction Chapter 7 - part 2 Option Pricing Foundations Nico van der Wijst 1 Finance: A Quantitative Introduction c Cambridge University Press 1 The setting 2 3 4 2 Finance:

More information

Math 135: Answers to Practice Problems

Math 135: Answers to Practice Problems Math 35: Answers to Practice Problems Answers to problems from the textbook: Many of the problems from the textbook have answers in the back of the book. Here are the answers to the problems that don t

More information

Option Pricing. Chapter Discrete Time

Option Pricing. Chapter Discrete Time Chapter 7 Option Pricing 7.1 Discrete Time In the next section we will discuss the Black Scholes formula. To prepare for that, we will consider the much simpler problem of pricing options when there are

More information

Best counterstrategy for C

Best counterstrategy for C Best counterstrategy for C In the previous lecture we saw that if R plays a particular mixed strategy and shows no intention of changing it, the expected payoff for R (and hence C) varies as C varies her

More information

6.4 Solving Linear Inequalities by Using Addition and Subtraction

6.4 Solving Linear Inequalities by Using Addition and Subtraction 6.4 Solving Linear Inequalities by Using Addition and Subtraction Solving EQUATION vs. INEQUALITY EQUATION INEQUALITY To solve an inequality, we USE THE SAME STRATEGY AS FOR SOLVING AN EQUATION: ISOLATE

More information

Technical Appendix to Asset Prices in a Huggett Economy

Technical Appendix to Asset Prices in a Huggett Economy Technical Appendix to Asset Prices in a Huggett Economy Per Krusell, Toshihiko Mukoyama, Anthony A. Smith, Jr. October 2010 1 Assets in positive net supply: introduction We consider assets in positive

More information

Chapter 6 Analyzing Accumulated Change: Integrals in Action

Chapter 6 Analyzing Accumulated Change: Integrals in Action Chapter 6 Analyzing Accumulated Change: Integrals in Action 6. Streams in Business and Biology You will find Excel very helpful when dealing with streams that are accumulated over finite intervals. Finding

More information

Homework #2 Graphical LP s.

Homework #2 Graphical LP s. UNIVERSITY OF MASSACHUSETTS Isenberg School of Management Department of Finance and Operations Management FOMGT 353-Introduction to Management Science Homework #2 Graphical LP s. Show your work completely

More information

COMP331/557. Chapter 6: Optimisation in Finance: Cash-Flow. (Cornuejols & Tütüncü, Chapter 3)

COMP331/557. Chapter 6: Optimisation in Finance: Cash-Flow. (Cornuejols & Tütüncü, Chapter 3) COMP331/557 Chapter 6: Optimisation in Finance: Cash-Flow (Cornuejols & Tütüncü, Chapter 3) 159 Cash-Flow Management Problem A company has the following net cash flow requirements (in 1000 s of ): Month

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

Spreadsheet Directions

Spreadsheet Directions The Best Summer Job Offer Ever! Spreadsheet Directions Before beginning, answer questions 1 through 4. Now let s see if you made a wise choice of payment plan. Complete all the steps outlined below in

More information

Introduction to Industrial Organization Professor: Caixia Shen Fall 2014 Lecture Note 5 Games and Strategy (Ch. 4)

Introduction to Industrial Organization Professor: Caixia Shen Fall 2014 Lecture Note 5 Games and Strategy (Ch. 4) Introduction to Industrial Organization Professor: Caixia Shen Fall 2014 Lecture Note 5 Games and Strategy (Ch. 4) Outline: Modeling by means of games Normal form games Dominant strategies; dominated strategies,

More information

ECE 586BH: Problem Set 5: Problems and Solutions Multistage games, including repeated games, with observed moves

ECE 586BH: Problem Set 5: Problems and Solutions Multistage games, including repeated games, with observed moves University of Illinois Spring 01 ECE 586BH: Problem Set 5: Problems and Solutions Multistage games, including repeated games, with observed moves Due: Reading: Thursday, April 11 at beginning of class

More information

ECON FINANCIAL ECONOMICS

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

More information

Department of Economics The Ohio State University Final Exam Questions and Answers Econ 8712

Department of Economics The Ohio State University Final Exam Questions and Answers Econ 8712 Prof. Peck Fall 016 Department of Economics The Ohio State University Final Exam Questions and Answers Econ 871 1. (35 points) The following economy has one consumer, two firms, and four goods. Goods 1

More information

Math1090 Midterm 2 Review Sections , Solve the system of linear equations using Gauss-Jordan elimination.

Math1090 Midterm 2 Review Sections , Solve the system of linear equations using Gauss-Jordan elimination. Math1090 Midterm 2 Review Sections 2.1-2.5, 3.1-3.3 1. Solve the system of linear equations using Gauss-Jordan elimination. 5x+20y 15z = 155 (a) 2x 7y+13z=85 3x+14y +6z= 43 x+z= 2 (b) x= 6 y+z=11 x y+

More information

UNIVERSITY OF TORONTO Joseph L. Rotman School of Management SOLUTIONS

UNIVERSITY OF TORONTO Joseph L. Rotman School of Management SOLUTIONS UNIVERSITY OF TORONTO Joseph L. Rotman School of Management Oct., 08 Corhay/Kan RSM MID-TERM EXAMINATION Yang/Wang SOLUTIONS. a) The optimal consumption plan is C 0 = Y 0 = 0 and C = Y = 0. Therefore,

More information

Bayesian Linear Model: Gory Details

Bayesian Linear Model: Gory Details Bayesian Linear Model: Gory Details Pubh7440 Notes By Sudipto Banerjee Let y y i ] n i be an n vector of independent observations on a dependent variable (or response) from n experimental units. Associated

More information

4.5 Comparing Exponential Functions

4.5 Comparing Exponential Functions 4.5 Comparing Exponential Functions So far we have talked in detail about both linear and exponential functions. In this section we ll compare exponential functions to other exponential functions and also

More information

ORF 307: Lecture 12. Linear Programming: Chapter 11: Game Theory

ORF 307: Lecture 12. Linear Programming: Chapter 11: Game Theory ORF 307: Lecture 12 Linear Programming: Chapter 11: Game Theory Robert J. Vanderbei April 3, 2018 Slides last edited on April 3, 2018 http://www.princeton.edu/ rvdb Game Theory John Nash = A Beautiful

More information

Help Session 2. David Sovich. Washington University in St. Louis

Help Session 2. David Sovich. Washington University in St. Louis Help Session 2 David Sovich Washington University in St. Louis TODAY S AGENDA 1. Refresh the concept of no arbitrage and how to bound option prices using just the principle of no arbitrage 2. Work on applying

More information

WEEK 1 REVIEW Lines and Linear Models. A VERTICAL line has NO SLOPE. All other lines have change in y rise y2-

WEEK 1 REVIEW Lines and Linear Models. A VERTICAL line has NO SLOPE. All other lines have change in y rise y2- WEEK 1 REVIEW Lines and Linear Models SLOPE A VERTICAL line has NO SLOPE. All other lines have change in y rise y- y1 slope = m = = = change in x run x - x 1 Find the slope of the line passing through

More information

m

m Chapter 1: Linear Equations a. Solving this problem is equivalent to finding an equation of a line that passes through the points (0, 24.5) and (30, 34). We use these two points to find the slope: 34 24.5

More information

Strategy Lines and Optimal Mixed Strategy for R

Strategy Lines and Optimal Mixed Strategy for R Strategy Lines and Optimal Mixed Strategy for R Best counterstrategy for C for given mixed strategy by R In the previous lecture we saw that if R plays a particular mixed strategy, [p, p, and shows no

More information

Compulsory Assignment

Compulsory Assignment An Introduction to Mathematical Finance UiO-STK-MAT300 Autumn 2018 Professor: S. Ortiz-Latorre Compulsory Assignment Instructions: You may write your answers either by hand or on a computer for instance

More information

Solution to Tutorial /2013 Semester I MA4264 Game Theory

Solution to Tutorial /2013 Semester I MA4264 Game Theory Solution to Tutorial 1 01/013 Semester I MA464 Game Theory Tutor: Xiang Sun August 30, 01 1 Review Static means one-shot, or simultaneous-move; Complete information means that the payoff functions are

More information

Solution to Tutorial 1

Solution to Tutorial 1 Solution to Tutorial 1 011/01 Semester I MA464 Game Theory Tutor: Xiang Sun August 4, 011 1 Review Static means one-shot, or simultaneous-move; Complete information means that the payoff functions are

More information

ECON FINANCIAL ECONOMICS

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

More information

Measuring Interest Rates

Measuring Interest Rates Measuring Interest Rates Economics 301: Money and Banking 1 1.1 Goals Goals and Learning Outcomes Goals: Learn to compute present values, rates of return, rates of return. Learning Outcomes: LO3: Predict

More information

Classifying Solvency Capital Requirement Contribution of Collective Investments under Solvency II

Classifying Solvency Capital Requirement Contribution of Collective Investments under Solvency II Classifying Solvency Capital Requirement Contribution of Collective Investments under Solvency II Working Paper Series 2016-03 (01) SolvencyAnalytics.com March 2016 Classifying Solvency Capital Requirement

More information

Chapter 10: Mixed strategies Nash equilibria, reaction curves and the equality of payoffs theorem

Chapter 10: Mixed strategies Nash equilibria, reaction curves and the equality of payoffs theorem Chapter 10: Mixed strategies Nash equilibria reaction curves and the equality of payoffs theorem Nash equilibrium: The concept of Nash equilibrium can be extended in a natural manner to the mixed strategies

More information

Final Exam Suggested Solutions

Final Exam Suggested Solutions University of Washington Fall 003 Department of Economics Eric Zivot Economics 483 Final Exam Suggested Solutions This is a closed book and closed note exam. However, you are allowed one page of handwritten

More information

BF212 Mathematical Methods for Finance

BF212 Mathematical Methods for Finance BF212 Mathematical Methods for Finance Academic Year: 2009-10 Semester: 2 Course Coordinator: William Leon Other Instructor(s): Pre-requisites: No. of AUs: 4 Cambridge G.C.E O Level Mathematics AB103 Business

More information

Imperfect capital markets and human capital. accumulation

Imperfect capital markets and human capital. accumulation Imperfect capital markets and human capital accumulation Suren Basov, Lily Nguyen, and Suzillah Sidek 1 April 10, 2013 1 Department of Finance, LaTrobe University, Bundoora, Victoria 3086, Australia Abstract

More information

Section 9.1 Solving Linear Inequalities

Section 9.1 Solving Linear Inequalities Section 9.1 Solving Linear Inequalities We know that a linear equation in x can be expressed as ax + b = 0. A linear inequality in x can be written in one of the following forms: ax + b < 0, ax + b 0,

More information

Pricing theory of financial derivatives

Pricing theory of financial derivatives Pricing theory of financial derivatives One-period securities model S denotes the price process {S(t) : t = 0, 1}, where S(t) = (S 1 (t) S 2 (t) S M (t)). Here, M is the number of securities. At t = 1,

More information

1 Economical Applications

1 Economical Applications WEEK 4 Reading [SB], 3.6, pp. 58-69 1 Economical Applications 1.1 Production Function A production function y f(q) assigns to amount q of input the corresponding output y. Usually f is - increasing, that

More information

Chapter 8: CAPM. 1. Single Index Model. 2. Adding a Riskless Asset. 3. The Capital Market Line 4. CAPM. 5. The One-Fund Theorem

Chapter 8: CAPM. 1. Single Index Model. 2. Adding a Riskless Asset. 3. The Capital Market Line 4. CAPM. 5. The One-Fund Theorem Chapter 8: CAPM 1. Single Index Model 2. Adding a Riskless Asset 3. The Capital Market Line 4. CAPM 5. The One-Fund Theorem 6. The Characteristic Line 7. The Pricing Model Single Index Model 1 1. Covariance

More information

f x f x f x f x x 5 3 y-intercept: y-intercept: y-intercept: y-intercept: y-intercept of a linear function written in function notation

f x f x f x f x x 5 3 y-intercept: y-intercept: y-intercept: y-intercept: y-intercept of a linear function written in function notation Questions/ Main Ideas: Algebra Notes TOPIC: Function Translations and y-intercepts Name: Period: Date: What is the y-intercept of a graph? The four s given below are written in notation. For each one,

More information

MATH 425 EXERCISES G. BERKOLAIKO

MATH 425 EXERCISES G. BERKOLAIKO MATH 425 EXERCISES G. BERKOLAIKO 1. Definitions and basic properties of options and other derivatives 1.1. Summary. Definition of European call and put options, American call and put option, forward (futures)

More information

C T P T S T

C T P T S T Fi8 Valuation of Financial Assets pring emester 21 Dr. Isabel Tkatch Assistant Professor of Finance Today Review of the Definitions Arbitrage Restrictions on Options Prices The Put-Call Parity European

More information

General Equilibrium under Uncertainty

General Equilibrium under Uncertainty General Equilibrium under Uncertainty The Arrow-Debreu Model General Idea: this model is formally identical to the GE model commodities are interpreted as contingent commodities (commodities are contingent

More information

4 Total Question 4. Intro to Financial Maths: Functions & Annuities Page 8 of 17

4 Total Question 4. Intro to Financial Maths: Functions & Annuities Page 8 of 17 Intro to Financial Maths: Functions & Annuities Page 8 of 17 4 Total Question 4. /3 marks 4(a). Explain why the polynomial g(x) = x 3 + 2x 2 2 has a zero between x = 1 and x = 1. Apply the Bisection Method

More information

Lecture Notes for the Course Investerings- og Finansieringsteori. David Lando Rolf Poulsen

Lecture Notes for the Course Investerings- og Finansieringsteori. David Lando Rolf Poulsen Lecture Notes for the Course Investerings- og Finansieringsteori. David Lando Rolf Poulsen January 2005 2 Chapter 1 Preface These notes are intended for the introductory course Investerings- og Finansieringsteori

More information

Binomial Trees. Liuren Wu. Options Markets. Zicklin School of Business, Baruch College. Liuren Wu (Baruch ) Binomial Trees Options Markets 1 / 22

Binomial Trees. Liuren Wu. Options Markets. Zicklin School of Business, Baruch College. Liuren Wu (Baruch ) Binomial Trees Options Markets 1 / 22 Binomial Trees Liuren Wu Zicklin School of Business, Baruch College Options Markets Liuren Wu (Baruch ) Binomial Trees Options Markets 1 / 22 A simple binomial model Observation: The current stock price

More information

Help Session 7. David Sovich. Washington University in St. Louis

Help Session 7. David Sovich. Washington University in St. Louis Help Session 7 Davi Sovich Washington University in St. Louis TODAY S AGENDA Toay we will learn how to price using Arrow securities We will then erive Q using Arrow securities ARROW SECURITIES IN THE BINOMIAL

More information

MLC at Boise State Polynomials Activity 2 Week #3

MLC at Boise State Polynomials Activity 2 Week #3 Polynomials Activity 2 Week #3 This activity will discuss rate of change from a graphical prespective. We will be building a t-chart from a function first by hand and then by using Excel. Getting Started

More information

Math 546 Homework Problems. Due Wednesday, January 25. This homework has two types of problems.

Math 546 Homework Problems. Due Wednesday, January 25. This homework has two types of problems. Math 546 Homework 1 Due Wednesday, January 25. This homework has two types of problems. 546 Problems. All students (students enrolled in 546 and 701I) are required to turn these in. 701I Problems. Only

More information

Chapter 4 Factoring and Quadratic Equations

Chapter 4 Factoring and Quadratic Equations Chapter 4 Factoring and Quadratic Equations Lesson 1: Factoring by GCF, DOTS, and Case I Lesson : Factoring by Grouping & Case II Lesson 3: Factoring by Sum and Difference of Perfect Cubes Lesson 4: Solving

More information

Lecture 3: Factor models in modern portfolio choice

Lecture 3: Factor models in modern portfolio choice Lecture 3: Factor models in modern portfolio choice Prof. Massimo Guidolin Portfolio Management Spring 2016 Overview The inputs of portfolio problems Using the single index model Multi-index models Portfolio

More information

Lattice (Binomial Trees) Version 1.2

Lattice (Binomial Trees) Version 1.2 Lattice (Binomial Trees) Version 1. 1 Introduction This plug-in implements different binomial trees approximations for pricing contingent claims and allows Fairmat to use some of the most popular binomial

More information

Financial Giffen Goods: Examples and Counterexamples

Financial Giffen Goods: Examples and Counterexamples Financial Giffen Goods: Examples and Counterexamples RolfPoulsen and Kourosh Marjani Rasmussen Abstract In the basic Markowitz and Merton models, a stock s weight in efficient portfolios goes up if its

More information

Lecture 16. Options and option pricing. Lecture 16 1 / 22

Lecture 16. Options and option pricing. Lecture 16 1 / 22 Lecture 16 Options and option pricing Lecture 16 1 / 22 Introduction One of the most, perhaps the most, important family of derivatives are the options. Lecture 16 2 / 22 Introduction One of the most,

More information

(i.e. the rate of change of y with respect to x)

(i.e. the rate of change of y with respect to x) Section 1.3 - Linear Functions and Math Models Example 1: Questions we d like to answer: 1. What is the slope of the line? 2. What is the equation of the line? 3. What is the y-intercept? 4. What is the

More information

Definition 4.1. In a stochastic process T is called a stopping time if you can tell when it happens.

Definition 4.1. In a stochastic process T is called a stopping time if you can tell when it happens. 102 OPTIMAL STOPPING TIME 4. Optimal Stopping Time 4.1. Definitions. On the first day I explained the basic problem using one example in the book. On the second day I explained how the solution to the

More information

Arbitrage Pricing. What is an Equivalent Martingale Measure, and why should a bookie care? Department of Mathematics University of Texas at Austin

Arbitrage Pricing. What is an Equivalent Martingale Measure, and why should a bookie care? Department of Mathematics University of Texas at Austin Arbitrage Pricing What is an Equivalent Martingale Measure, and why should a bookie care? Department of Mathematics University of Texas at Austin March 27, 2010 Introduction What is Mathematical Finance?

More information

Econ 8602, Fall 2017 Homework 2

Econ 8602, Fall 2017 Homework 2 Econ 8602, Fall 2017 Homework 2 Due Tues Oct 3. Question 1 Consider the following model of entry. There are two firms. There are two entry scenarios in each period. With probability only one firm is able

More information

SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question.

SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. Algebra - Final Exam Review Part Name SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. Use intercepts and a checkpoint to graph the linear function. )

More information

Finite Element Method

Finite Element Method In Finite Difference Methods: the solution domain is divided into a grid of discrete points or nodes the PDE is then written for each node and its derivatives replaced by finite-divided differences In

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

Documents de Travail du Centre d Economie de la Sorbonne

Documents de Travail du Centre d Economie de la Sorbonne Documents de Travail du Centre d Economie de la Sorbonne Stability of marketable payoffs with long-term assets Jean-Marc BONNISSEAU, Achis CHERY 2013.78 Maison des Sciences Économiques, 106-112 boulevard

More information

Game Theory Problem Set 4 Solutions

Game Theory Problem Set 4 Solutions Game Theory Problem Set 4 Solutions 1. Assuming that in the case of a tie, the object goes to person 1, the best response correspondences for a two person first price auction are: { }, < v1 undefined,

More information

Steepest descent and conjugate gradient methods with variable preconditioning

Steepest descent and conjugate gradient methods with variable preconditioning Ilya Lashuk and Andrew Knyazev 1 Steepest descent and conjugate gradient methods with variable preconditioning Ilya Lashuk (the speaker) and Andrew Knyazev Department of Mathematics and Center for Computational

More information

MATH4210 Financial Mathematics ( ) Tutorial 6

MATH4210 Financial Mathematics ( ) Tutorial 6 MATH4210 Financial Mathematics (2015-2016) Tutorial 6 Enter the market with different strategies Strategies Involving a Single Option and a Stock Covered call Protective put Π(t) S(t) c(t) S(t) + p(t)

More information

Slope-Intercept Form Practice True False Questions Indicate True or False for the following Statements.

Slope-Intercept Form Practice True False Questions Indicate True or False for the following Statements. www.ck2.org Slope-Intercept Form Practice True False Questions Indicate True or False for the following Statements.. The slope-intercept form of the linear equation makes it easier to graph because the

More information