Mathematical Modeling, Lecture 1

Size: px
Start display at page:

Download "Mathematical Modeling, Lecture 1"

Transcription

1 Mathematical Modeling, Lecture 1 Gudrun Gudmundsdottir January

2 Some practical issues A lecture each wednesday , with some exceptions Text book: Meerschaert We go through the text and also do exercises Two projects during the course Written exam on May 26, based on the exercises The slides give an overview of the course, they will be on the home page Two main themes: Optimization and Dynamical Systems

3 The modeling process Mathematical modeling is to take a problem from the real world, state it in mathematical terms, then solve it and relate the solution to the original problem. It is useful to have a system for how to proceed, for example: 1. Identify the problem. Collect information, formulate a question, state the objective. 2. Formulate the problem mathematically, select the modeling approach. 3. Solve the problem analytically as far as possible. 4. Solve the problem numerically, or do a simulation. 5. Interprete the answer, present it, relate to the original question. Each step may require going back and reconsider earlier steps.

4 Optimization Optimus= best Find the maximum of a function f (x) for x in a specified set S. The set S may be specified by a number of functions, g j (x) b j, j = 1... m. Different branches Linear optimization, with linear functions Non-linear optimization Discrete optimization Dynamical optimization Combinatorial optimization

5 A simple example, one variable optimization A farmer has a field with potatoes weighing 1000 kg. The potatoes will grow on if they are left in the ground, but the prices of potatoes are declining. When should the farmer harvest and sell? Assume: 1. Weight on day t = w(t) = t kg 2. Price per kg on day t = p(t) = t kr 3. Cost for keeping the field (water, fertilizer..) 100 kr per day We want to maximize the profit.

6 Mathematical formulation and solution The profit is f (t) = ( t)(35 0.5t) 100t = 12.5t t for 0 t t max. The derivative is zero when t = 11. So if t max 11, the farmer should harvest after 11 days.

7 Sensitivity analysis In our example, we assumed that The rate by which the price is falling is r = 0.5 The rate of growth is g = 25. The cost per day is c = 100 The value of these parameters is uncertain. Let us find out how the result t = 11 depends on them.

8 Dependence on r We have f (t) = ( t)(35 rt) 100t = 25rt 2 +t( r) and f (t) = 0 when t = t r = 15.5/r 20. To see how sensitive t r is for changes in r we can differentiate, or look at the graph. We have t r < 0 if r > 15.5/20 = In that case, the farmer should sell immediately, for the profit is decreasing for t greater than the maximum point t r.

9 Dependence on g We have f (t) = (1000+gt)(35 0.5t) 100t = 0.5gt 2 +t(35g 600) and f (t) = 0 when t = t g = /g. To see how sensitive t g is for changes in g we can differentiate, or look at the graph. We have t g < 0 if g < In that case, the farmer should sell immediately, for the profit is decreasing for t greater than the maximum point t g.

10 MATM20 Lecture 1 Sensitivity as relative change If a quantity x changes by x then the relative change is x/x or 100 x/x%. A change by r in the rate r of price decline results in a change t in the optimal time t to sell. Consider the ratio between the relative changes and let r 0. Then t/t r/r dt r dr t = S(t, r). This quantity is called the sensitivity of t to r.

11 Sensitivity of t to r and to g For the potato problem we have and dt dr = 15.5r 2, S(t, r) = 15.5, S(11, 0.5) = 2.8. rt dt dg = 600g 2, S(t, g) = 600, S(11, 25) = 2.2. gt This means that if r increases by 10% then the optimal time until harvest is shortened by 28%. If g increases by 10% then the optimal time until harvest will be about 22% longer.

12 Robustness A mathematical model will never be perfect. The conclusions a mathematical model leads to should preferably be correct even though the model is not completely accurate. Such a model is called robust. Robustness is not a precisely defined property. In the potato problem we assumed that the price p and weight w were linear functions of the time. Even without this assumption we have f (t) = p(t)w(t) 100t The derivative is zero when p w + pw = 100.

13 Conclusions The term p w + pw is the increase in value of the potatoes. The model tells us not to harvest as long as the increase in value is greater than the cost of keeping the field. But there is no way of getting a precise formula for p(t) and w(t). We can still follow the increase in value of the whole crop and harvest when it is less than 100 per day. If we want to predict how many days there will be until this happens, we can take the current values of p and w and assume that these will be constant for the next few days and do the calculation above.

14 MATM20 Lecture 1 Conclusions The sensitivity analysis tells us that if the growth rate (g = w ) is within 10% of 25 then the optimal number of days to wait will be within 22% of 11, or something between 9 and 13. The price derivative will probable be less negative in the future. So the advice is to wait about 9 days, or a week, and then check again.

15 Optimization in several variables A continuous function f on a compact set S attains its maximum at a point which is either 1. An inner point of S where all the derivatives f / x j = 0 2. A boundary point of S 3. or a point where one or more of the partial derivatives is undefined

16 A simple example in two variables A company is going to start manufacturing two kinds of a product, product A and product B. The startup cost is and one unit of A costs kr. 195 to make and one unit of B costs 225 to make. The company will make x units of A and y units of B per year. We assume that all the units made can be sold, but the average price for a unit will depend on how many are made per year in the following way: p A = x 0.003y p B = x 0.01y

17 Maximize the profit The profit will be f (x, y) = xp A + yp B 195x 225y = 0.01x y xy + 144x + 174y , This is a negative definite quadratic function, and therefore has a global maximum where the derivatives are zero.

18 The Solution We solve the system and get f / x = 0.02x 0.007y = 0 f / y = 0.02y 0.07x = 0 The profit will be x = , y =

19 MATM20 Lecture 1 Computational tools PYTHON from

Part I OPTIMIZATION MODELS

Part I OPTIMIZATION MODELS Part I OPTIMIZATION MODELS Chapter 1 ONE VARIABLE OPTIMIZATION Problems in optimization are the most common applications of mathematics. Whatever the activity in which we are engaged, we want to maximize

More information

Optimization Models one variable optimization and multivariable optimization

Optimization Models one variable optimization and multivariable optimization Georg-August-Universität Göttingen Optimization Models one variable optimization and multivariable optimization Wenzhong Li lwz@nju.edu.cn Feb 2011 Mathematical Optimization Problems in optimization are

More information

Week #15 - Word Problems & Differential Equations Section 8.6

Week #15 - Word Problems & Differential Equations Section 8.6 Week #15 - Word Problems & Differential Equations Section 8.6 From Calculus, Single Variable by Hughes-Hallett, Gleason, McCallum et. al. Copyright 5 by John Wiley & Sons, Inc. This material is used by

More information

Introductory Mathematics for Economics MSc s: Course Outline. Huw David Dixon. Cardiff Business School. September 2008.

Introductory Mathematics for Economics MSc s: Course Outline. Huw David Dixon. Cardiff Business School. September 2008. Introductory Maths: course outline Huw Dixon. Introductory Mathematics for Economics MSc s: Course Outline. Huw David Dixon Cardiff Business School. September 008. The course will consist of five hour

More information

and, we have z=1.5x. Substituting in the constraint leads to, x=7.38 and z=11.07.

and, we have z=1.5x. Substituting in the constraint leads to, x=7.38 and z=11.07. EconS 526 Problem Set 2. Constrained Optimization Problem 1. Solve the optimal values for the following problems. For (1a) check that you derived a minimum. For (1b) and (1c), check that you derived a

More information

Econ 101A Final exam May 14, 2013.

Econ 101A Final exam May 14, 2013. Econ 101A Final exam May 14, 2013. Do not turn the page until instructed to. Do not forget to write Problems 1 in the first Blue Book and Problems 2, 3 and 4 in the second Blue Book. 1 Econ 101A Final

More information

Lecture 10: The knapsack problem

Lecture 10: The knapsack problem Optimization Methods in Finance (EPFL, Fall 2010) Lecture 10: The knapsack problem 24.11.2010 Lecturer: Prof. Friedrich Eisenbrand Scribe: Anu Harjula The knapsack problem The Knapsack problem is a problem

More information

Survey of Math: Chapter 21: Consumer Finance Savings (Lecture 1) Page 1

Survey of Math: Chapter 21: Consumer Finance Savings (Lecture 1) Page 1 Survey of Math: Chapter 21: Consumer Finance Savings (Lecture 1) Page 1 The mathematical concepts we use to describe finance are also used to describe how populations of organisms vary over time, how disease

More information

Stochastic Programming Modeling

Stochastic Programming Modeling IE 495 Lecture 3 Stochastic Programming Modeling Prof. Jeff Linderoth January 20, 2003 January 20, 2003 Stochastic Programming Lecture 3 Slide 1 Outline Review convexity Review Farmer Ted Expected Value

More information

Section 3.1 Relative extrema and intervals of increase and decrease.

Section 3.1 Relative extrema and intervals of increase and decrease. Section 3.1 Relative extrema and intervals of increase and decrease. 4 3 Problem 1: Consider the function: f ( x) x 8x 400 Obtain the graph of this function on your graphing calculator using [-10, 10]

More information

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane.

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane. Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 217 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 217 13 Lecture 13 November 15, 217 Derivation of the Black-Scholes-Merton

More information

Optimize (Maximize or Minimize) Z=C1X1 +C2X2+..Cn Xn

Optimize (Maximize or Minimize) Z=C1X1 +C2X2+..Cn Xn Linear Programming Problems Formulation Linear Programming is a mathematical technique for optimum allocation of limited or scarce resources, such as labour, material, machine, money, energy and so on,

More information

Question 3: How do you find the relative extrema of a function?

Question 3: How do you find the relative extrema of a function? Question 3: How do you find the relative extrema of a function? The strategy for tracking the sign of the derivative is useful for more than determining where a function is increasing or decreasing. It

More information

Note: I gave a few examples of nearly each of these. eg. #17 and #18 are the same type of problem.

Note: I gave a few examples of nearly each of these. eg. #17 and #18 are the same type of problem. Study Guide for Exam 3 Sections covered: 3.6, Ch 5 and Ch 7 Exam highlights 1 implicit differentiation 3 plain derivatives 3 plain antiderivatives (1 with substitution) 1 Find and interpret Partial Derivatives

More information

Slides for DN2281, KTH 1

Slides for DN2281, KTH 1 Slides for DN2281, KTH 1 January 28, 2014 1 Based on the lecture notes Stochastic and Partial Differential Equations with Adapted Numerics, by J. Carlsson, K.-S. Moon, A. Szepessy, R. Tempone, G. Zouraris.

More information

Rate of Change Quiz. Name: Class: Date: Multiple Choice Identify the choice that best completes the statement or answers the question.

Rate of Change Quiz. Name: Class: Date: Multiple Choice Identify the choice that best completes the statement or answers the question. Name: Class: Date: ID: A Multiple Choice Identify the choice that best completes the statement or answers the question.. In a linear equation, the independent variable increases at a constant rate while

More information

Linear Programming: Simplex Method

Linear Programming: Simplex Method Mathematical Modeling (STAT 420/620) Spring 2015 Lecture 10 February 19, 2015 Linear Programming: Simplex Method Lecture Plan 1. Linear Programming and Simplex Method a. Family Farm Problem b. Simplex

More information

February 24, 2005

February 24, 2005 15.053 February 24, 2005 Sensitivity Analysis and shadow prices Suggestion: Please try to complete at least 2/3 of the homework set by next Thursday 1 Goals of today s lecture on Sensitivity Analysis Changes

More information

SOA Exam MFE Solutions: May 2007

SOA Exam MFE Solutions: May 2007 Exam MFE May 007 SOA Exam MFE Solutions: May 007 Solution 1 B Chapter 1, Put-Call Parity Let each dividend amount be D. The first dividend occurs at the end of months, and the second dividend occurs at

More information

Probability and Stochastics for finance-ii Prof. Joydeep Dutta Department of Humanities and Social Sciences Indian Institute of Technology, Kanpur

Probability and Stochastics for finance-ii Prof. Joydeep Dutta Department of Humanities and Social Sciences Indian Institute of Technology, Kanpur Probability and Stochastics for finance-ii Prof. Joydeep Dutta Department of Humanities and Social Sciences Indian Institute of Technology, Kanpur Lecture - 07 Mean-Variance Portfolio Optimization (Part-II)

More information

Part 1: q Theory and Irreversible Investment

Part 1: q Theory and Irreversible Investment Part 1: q Theory and Irreversible Investment Goal: Endogenize firm characteristics and risk. Value/growth Size Leverage New issues,... This lecture: q theory of investment Irreversible investment and real

More information

BARUCH COLLEGE MATH 2003 SPRING 2006 MANUAL FOR THE UNIFORM FINAL EXAMINATION

BARUCH COLLEGE MATH 2003 SPRING 2006 MANUAL FOR THE UNIFORM FINAL EXAMINATION BARUCH COLLEGE MATH 003 SPRING 006 MANUAL FOR THE UNIFORM FINAL EXAMINATION The final examination for Math 003 will consist of two parts. Part I: Part II: This part will consist of 5 questions similar

More information

MASM006 UNIVERSITY OF EXETER SCHOOL OF ENGINEERING, COMPUTER SCIENCE AND MATHEMATICS MATHEMATICAL SCIENCES FINANCIAL MATHEMATICS.

MASM006 UNIVERSITY OF EXETER SCHOOL OF ENGINEERING, COMPUTER SCIENCE AND MATHEMATICS MATHEMATICAL SCIENCES FINANCIAL MATHEMATICS. MASM006 UNIVERSITY OF EXETER SCHOOL OF ENGINEERING, COMPUTER SCIENCE AND MATHEMATICS MATHEMATICAL SCIENCES FINANCIAL MATHEMATICS May/June 2006 Time allowed: 2 HOURS. Examiner: Dr N.P. Byott This is a CLOSED

More information

25 Increasing and Decreasing Functions

25 Increasing and Decreasing Functions - 25 Increasing and Decreasing Functions It is useful in mathematics to define whether a function is increasing or decreasing. In this section we will use the differential of a function to determine this

More information

Writing Exponential Equations Day 2

Writing Exponential Equations Day 2 Writing Exponential Equations Day 2 MGSE9 12.A.CED.1 Create equations and inequalities in one variable and use them to solve problems. Include equations arising from linear, quadratic, simple rational,

More information

x x x1

x x x1 Mathematics for Management Science Notes 08 prepared by Professor Jenny Baglivo Graphical representations As an introduction to the calculus of two-variable functions (f(x ;x 2 )), consider two graphical

More information

Characterization of the Optimum

Characterization of the Optimum ECO 317 Economics of Uncertainty Fall Term 2009 Notes for lectures 5. Portfolio Allocation with One Riskless, One Risky Asset Characterization of the Optimum Consider a risk-averse, expected-utility-maximizing

More information

Intro to Economic analysis

Intro to Economic analysis Intro to Economic analysis Alberto Bisin - NYU 1 The Consumer Problem Consider an agent choosing her consumption of goods 1 and 2 for a given budget. This is the workhorse of microeconomic theory. (Notice

More information

Section 2 Solutions. Econ 50 - Stanford University - Winter Quarter 2015/16. January 22, Solve the following utility maximization problem:

Section 2 Solutions. Econ 50 - Stanford University - Winter Quarter 2015/16. January 22, Solve the following utility maximization problem: Section 2 Solutions Econ 50 - Stanford University - Winter Quarter 2015/16 January 22, 2016 Exercise 1: Quasilinear Utility Function Solve the following utility maximization problem: max x,y { x + y} s.t.

More information

Name: Math 10250, Final Exam - Version A May 8, 2007

Name: Math 10250, Final Exam - Version A May 8, 2007 Math 050, Final Exam - Version A May 8, 007 Be sure that you have all 6 pages of the test. Calculators are allowed for this examination. The exam lasts for two hours. The Honor Code is in effect for this

More information

Chapter 10 Inventory Theory

Chapter 10 Inventory Theory Chapter 10 Inventory Theory 10.1. (a) Find the smallest n such that g(n) 0. g(1) = 3 g(2) =2 n = 2 (b) Find the smallest n such that g(n) 0. g(1) = 1 25 1 64 g(2) = 1 4 1 25 g(3) =1 1 4 g(4) = 1 16 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

(Refer Slide Time: 00:55)

(Refer Slide Time: 00:55) Engineering Economic Analysis Professor Dr. Pradeep K Jha Department of Mechanical and Industrial Engineering Indian Institute of Technology Roorkee Lecture 11 Economic Equivalence: Meaning and Principles

More information

6.231 DYNAMIC PROGRAMMING LECTURE 8 LECTURE OUTLINE

6.231 DYNAMIC PROGRAMMING LECTURE 8 LECTURE OUTLINE 6.231 DYNAMIC PROGRAMMING LECTURE 8 LECTURE OUTLINE Suboptimal control Cost approximation methods: Classification Certainty equivalent control: An example Limited lookahead policies Performance bounds

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

Optimal Trading Strategy With Optimal Horizon

Optimal Trading Strategy With Optimal Horizon Optimal Trading Strategy With Optimal Horizon Financial Math Festival Florida State University March 1, 2008 Edward Qian PanAgora Asset Management Trading An Integral Part of Investment Process Return

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

FINANCIAL OPTIMIZATION. Lecture 5: Dynamic Programming and a Visit to the Soft Side

FINANCIAL OPTIMIZATION. Lecture 5: Dynamic Programming and a Visit to the Soft Side FINANCIAL OPTIMIZATION Lecture 5: Dynamic Programming and a Visit to the Soft Side Copyright c Philip H. Dybvig 2008 Dynamic Programming All situations in practice are more complex than the simple examples

More information

SCHOOL OF ACCOUNTING AND BUSINESS BSc. (APPLIED ACCOUNTING) GENERAL / SPECIAL DEGREE PROGRAMME

SCHOOL OF ACCOUNTING AND BUSINESS BSc. (APPLIED ACCOUNTING) GENERAL / SPECIAL DEGREE PROGRAMME All Rights Reserved No. of Pages - 06 No of Questions - 06 SCHOOL OF ACCOUNTING AND BUSINESS BSc. (APPLIED ACCOUNTING) GENERAL / SPECIAL DEGREE PROGRAMME YEAR I SEMESTER I (Group B) END SEMESTER EXAMINATION

More information

PORTFOLIO OPTIMIZATION AND EXPECTED SHORTFALL MINIMIZATION FROM HISTORICAL DATA

PORTFOLIO OPTIMIZATION AND EXPECTED SHORTFALL MINIMIZATION FROM HISTORICAL DATA PORTFOLIO OPTIMIZATION AND EXPECTED SHORTFALL MINIMIZATION FROM HISTORICAL DATA We begin by describing the problem at hand which motivates our results. Suppose that we have n financial instruments at hand,

More information

Singular Stochastic Control Models for Optimal Dynamic Withdrawal Policies in Variable Annuities

Singular Stochastic Control Models for Optimal Dynamic Withdrawal Policies in Variable Annuities 1/ 46 Singular Stochastic Control Models for Optimal Dynamic Withdrawal Policies in Variable Annuities Yue Kuen KWOK Department of Mathematics Hong Kong University of Science and Technology * Joint work

More information

Notes: This is a closed book and closed notes exam. The maximal score on this exam is 100 points. Time: 75 minutes

Notes: This is a closed book and closed notes exam. The maximal score on this exam is 100 points. Time: 75 minutes M339D/M389D Introduction to Financial Mathematics for Actuarial Applications University of Texas at Austin Sample In-Term Exam II - Solutions Instructor: Milica Čudina Notes: This is a closed book and

More information

Final exam solutions

Final exam solutions EE365 Stochastic Control / MS&E251 Stochastic Decision Models Profs. S. Lall, S. Boyd June 5 6 or June 6 7, 2013 Final exam solutions This is a 24 hour take-home final. Please turn it in to one of the

More information

Pricing Dynamic Solvency Insurance and Investment Fund Protection

Pricing Dynamic Solvency Insurance and Investment Fund Protection Pricing Dynamic Solvency Insurance and Investment Fund Protection Hans U. Gerber and Gérard Pafumi Switzerland Abstract In the first part of the paper the surplus of a company is modelled by a Wiener process.

More information

Econ 101A Final exam May 14, 2013.

Econ 101A Final exam May 14, 2013. Econ 101A Final exam May 14, 2013. Do not turn the page until instructed to. Do not forget to write Problems 1 in the first Blue Book and Problems 2, 3 and 4 in the second Blue Book. 1 Econ 101A Final

More information

First Order Delays. Nathaniel Osgood CMPT

First Order Delays. Nathaniel Osgood CMPT First Order Delays Nathaniel Osgood CMPT 858 2-11-2010 Simple First-Order Decay (Create this in Vensim!) Use Initial Value: 1000 Mean time until Death People with Virulent Infection Deaths from Infection

More information

PAPER 15 - BUSINESS STRATEGY & STRATEGIC COST MANAGEMENT

PAPER 15 - BUSINESS STRATEGY & STRATEGIC COST MANAGEMENT PAPER 15 - BUSINESS STRATEGY & STRATEGIC COST MANAGEMENT Page 1 LEVEL C The following table lists the learning objectives and the verbs that appear in the syllabus learning aims and examination questions:

More information

Advanced Modern Macroeconomics

Advanced Modern Macroeconomics Advanced Modern Macroeconomics Analysis and Application Max Gillman UMSL 27 August 2014 Gillman (UMSL) Modern Macro 27 August 2014 1 / 23 Overview of Advanced Macroeconomics Chapter 1: Overview of the

More information

Optimization Models in Financial Mathematics

Optimization Models in Financial Mathematics Optimization Models in Financial Mathematics John R. Birge Northwestern University www.iems.northwestern.edu/~jrbirge Illinois Section MAA, April 3, 2004 1 Introduction Trends in financial mathematics

More information

Econ 101A Final Exam We May 9, 2012.

Econ 101A Final Exam We May 9, 2012. Econ 101A Final Exam We May 9, 2012. You have 3 hours to answer the questions in the final exam. We will collect the exams at 2.30 sharp. Show your work, and good luck! Problem 1. Utility Maximization.

More information

AMERICAN OPTIONS REVIEW OF STOPPING TIMES. Important example: the first passage time for continuous process X:

AMERICAN OPTIONS REVIEW OF STOPPING TIMES. Important example: the first passage time for continuous process X: AMERICAN OPTIONS REVIEW OF STOPPING TIMES τ is stopping time if {τ t} F t for all t Important example: the first passage time for continuous process X: τ m = min{t 0 : X(t) = m} (τ m = if X(t) never takes

More information

Stochastic Programming: introduction and examples

Stochastic Programming: introduction and examples Stochastic Programming: introduction and examples Amina Lamghari COSMO Stochastic Mine Planning Laboratory Department of Mining and Materials Engineering Outline What is Stochastic Programming? Why should

More information

Lecture Quantitative Finance Spring Term 2015

Lecture Quantitative Finance Spring Term 2015 and Lecture Quantitative Finance Spring Term 2015 Prof. Dr. Erich Walter Farkas Lecture 06: March 26, 2015 1 / 47 Remember and Previous chapters: introduction to the theory of options put-call parity fundamentals

More information

Objective of Decision Analysis. Determine an optimal decision under uncertain future events

Objective of Decision Analysis. Determine an optimal decision under uncertain future events Decision Analysis Objective of Decision Analysis Determine an optimal decision under uncertain future events Formulation of Decision Problem Clear statement of the problem Identify: The decision alternatives

More information

Unit #7 : Optimization, Optimal Marginal Rates

Unit #7 : Optimization, Optimal Marginal Rates Unit #7 : Optimization, Optimal Marginal Rates Goals: Review the first derivative test and the second derivative test for identifying local maxima and minima. Distinguish global vs. local extrema. Practice

More information

x f(x) D.N.E

x f(x) D.N.E Limits Consider the function f(x) x2 x. This function is not defined for x, but if we examine the value of f for numbers close to, we can observe something interesting: x 0 0.5 0.9 0.999.00..5 2 f(x).5.9.999

More information

Maximization in a Two-Output Setting

Maximization in a Two-Output Setting 59 16 Maximization in a Two-Output Setting This chapter presents the marginal allocation conditions for a single input in the production of two outputs. First, a graphical and tabular presentation is used.

More information

University of Toronto Department of Economics ECO 204 Summer 2013 Ajaz Hussain TEST 1 SOLUTIONS GOOD LUCK!

University of Toronto Department of Economics ECO 204 Summer 2013 Ajaz Hussain TEST 1 SOLUTIONS GOOD LUCK! University of Toronto Department of Economics ECO 204 Summer 2013 Ajaz Hussain TEST 1 SOLUTIONS TIME: 1 HOUR AND 50 MINUTES DO NOT HAVE A CELL PHONE ON YOUR DESK OR ON YOUR PERSON. ONLY AID ALLOWED: A

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

Extensions to the Black Scholes Model

Extensions to the Black Scholes Model Lecture 16 Extensions to the Black Scholes Model 16.1 Dividends Dividend is a sum of money paid regularly (typically annually) by a company to its shareholders out of its profits (or reserves). In this

More information

Lecture outline W.B.Powell 1

Lecture outline W.B.Powell 1 Lecture outline What is a policy? Policy function approximations (PFAs) Cost function approximations (CFAs) alue function approximations (FAs) Lookahead policies Finding good policies Optimizing continuous

More information

1 Maximizing profits when marginal costs are increasing

1 Maximizing profits when marginal costs are increasing BEE12 Basic Mathematical Economics Week 1, Lecture Tuesday 9.12.3 Profit maximization / Elasticity Dieter Balkenborg Department of Economics University of Exeter 1 Maximizing profits when marginal costs

More information

The Duration Derby: A Comparison of Duration Based Strategies in Asset Liability Management

The Duration Derby: A Comparison of Duration Based Strategies in Asset Liability Management The Duration Derby: A Comparison of Duration Based Strategies in Asset Liability Management H. Zheng Department of Mathematics, Imperial College London SW7 2BZ, UK h.zheng@ic.ac.uk L. C. Thomas School

More information

Graphs Details Math Examples Using data Tax example. Decision. Intermediate Micro. Lecture 5. Chapter 5 of Varian

Graphs Details Math Examples Using data Tax example. Decision. Intermediate Micro. Lecture 5. Chapter 5 of Varian Decision Intermediate Micro Lecture 5 Chapter 5 of Varian Decision-making Now have tools to model decision-making Set of options At-least-as-good sets Mathematical tools to calculate exact answer Problem

More information

2 f. f t S 2. Delta measures the sensitivityof the portfolio value to changes in the price of the underlying

2 f. f t S 2. Delta measures the sensitivityof the portfolio value to changes in the price of the underlying Sensitivity analysis Simulating the Greeks Meet the Greeks he value of a derivative on a single underlying asset depends upon the current asset price S and its volatility Σ, the risk-free interest rate

More information

Course MFE/3F Practice Exam 2 Solutions

Course MFE/3F Practice Exam 2 Solutions Course MFE/3F Practice Exam Solutions The chapter references below refer to the chapters of the ActuarialBrew.com Study Manual. Solution 1 A Chapter 16, Black-Scholes Equation The expressions for the value

More information

Applications of Linear Programming

Applications of Linear Programming Applications of Linear Programming lecturer: András London University of Szeged Institute of Informatics Department of Computational Optimization Lecture 8 The portfolio selection problem The portfolio

More information

Overview Definitions Mathematical Properties Properties of Economic Functions Exam Tips. Midterm 1 Review. ECON 100A - Fall Vincent Leah-Martin

Overview Definitions Mathematical Properties Properties of Economic Functions Exam Tips. Midterm 1 Review. ECON 100A - Fall Vincent Leah-Martin ECON 100A - Fall 2013 1 UCSD October 20, 2013 1 vleahmar@uscd.edu Preferences We started with a bundle of commodities: (x 1, x 2, x 3,...) (apples, bannanas, beer,...) Preferences We started with a bundle

More information

Eco504 Spring 2010 C. Sims FINAL EXAM. β t 1 2 φτ2 t subject to (1)

Eco504 Spring 2010 C. Sims FINAL EXAM. β t 1 2 φτ2 t subject to (1) Eco54 Spring 21 C. Sims FINAL EXAM There are three questions that will be equally weighted in grading. Since you may find some questions take longer to answer than others, and partial credit will be given

More information

Lecture: Mergers. Some facts about mergers from Andrade, Mitchell, and Stafford (2001) Often occur in waves, concentrated by industry

Lecture: Mergers. Some facts about mergers from Andrade, Mitchell, and Stafford (2001) Often occur in waves, concentrated by industry Lecture: Mergers Some facts about mergers from Andrade, Mitchell, and Stafford (2001) Often occur in waves, concentrated by industry Have been connected in the data to industry shocks (technological, demand,

More information

Game Theory and Economics Prof. Dr. Debarshi Das Department of Humanities and Social Sciences Indian Institute of Technology, Guwahati

Game Theory and Economics Prof. Dr. Debarshi Das Department of Humanities and Social Sciences Indian Institute of Technology, Guwahati Game Theory and Economics Prof. Dr. Debarshi Das Department of Humanities and Social Sciences Indian Institute of Technology, Guwahati Module No. # 03 Illustrations of Nash Equilibrium Lecture No. # 02

More information

ROBUST OPTIMIZATION OF MULTI-PERIOD PRODUCTION PLANNING UNDER DEMAND UNCERTAINTY. A. Ben-Tal, B. Golany and M. Rozenblit

ROBUST OPTIMIZATION OF MULTI-PERIOD PRODUCTION PLANNING UNDER DEMAND UNCERTAINTY. A. Ben-Tal, B. Golany and M. Rozenblit ROBUST OPTIMIZATION OF MULTI-PERIOD PRODUCTION PLANNING UNDER DEMAND UNCERTAINTY A. Ben-Tal, B. Golany and M. Rozenblit Faculty of Industrial Engineering and Management, Technion, Haifa 32000, Israel ABSTRACT

More information

Expected Utility And Risk Aversion

Expected Utility And Risk Aversion Expected Utility And Risk Aversion Econ 2100 Fall 2017 Lecture 12, October 4 Outline 1 Risk Aversion 2 Certainty Equivalent 3 Risk Premium 4 Relative Risk Aversion 5 Stochastic Dominance Notation From

More information

American options and early exercise

American options and early exercise Chapter 3 American options and early exercise American options are contracts that may be exercised early, prior to expiry. These options are contrasted with European options for which exercise is only

More information

Answer ALL questions from Section A and ONE question from Section B. Section A weighs 60% of the total mark and Section B 40% of the total mark.

Answer ALL questions from Section A and ONE question from Section B. Section A weighs 60% of the total mark and Section B 40% of the total mark. UNIVERSITY OF EAST ANGLIA School of Economics Main Series PGT Examination 2017-18 ECONOMIC CONCEPTS ECO-7011A Time allowed: 2 hours Answer ALL questions from Section A and ONE question from Section B.

More information

Financial Applications Involving Exponential Functions

Financial Applications Involving Exponential Functions Section 6.5: Financial Applications Involving Exponential Functions When you invest money, your money earns interest, which means that after a period of time you will have more money than you started with.

More information

4.1 Exponential Functions. For Formula 1, the value of n is based on the frequency of compounding. Common frequencies include:

4.1 Exponential Functions. For Formula 1, the value of n is based on the frequency of compounding. Common frequencies include: 4.1 Exponential Functions Hartfield MATH 2040 Unit 4 Page 1 Recall from algebra the formulas for Compound Interest: Formula 1 For Discretely Compounded Interest A t P 1 r n nt Formula 2 Continuously Compounded

More information

Valuing Early Stage Investments with Market Related Timing Risk

Valuing Early Stage Investments with Market Related Timing Risk Valuing Early Stage Investments with Market Related Timing Risk Matt Davison and Yuri Lawryshyn February 12, 216 Abstract In this work, we build on a previous real options approach that utilizes managerial

More information

Foundational Preliminaries: Answers to Within-Chapter-Exercises

Foundational Preliminaries: Answers to Within-Chapter-Exercises C H A P T E R 0 Foundational Preliminaries: Answers to Within-Chapter-Exercises 0A Answers for Section A: Graphical Preliminaries Exercise 0A.1 Consider the set [0,1) which includes the point 0, all the

More information

Chapter 5. Inventory models with ramp-type demand for deteriorating items partial backlogging and timevarying

Chapter 5. Inventory models with ramp-type demand for deteriorating items partial backlogging and timevarying Chapter 5 Inventory models with ramp-type demand for deteriorating items partial backlogging and timevarying holding cost 5.1 Introduction Inventory is an important part of our manufacturing, distribution

More information

Lecture 3. Understanding the optimizer sensitivity report 4 Shadow (or dual) prices 4 Right hand side ranges 4 Objective coefficient ranges

Lecture 3. Understanding the optimizer sensitivity report 4 Shadow (or dual) prices 4 Right hand side ranges 4 Objective coefficient ranges Decision Models Lecture 3 1 Lecture 3 Understanding the optimizer sensitivity report 4 Shadow (or dual) prices 4 Right hand side ranges 4 Objective coefficient ranges Bidding Problems Summary and Preparation

More information

EconS Micro Theory I 1 Recitation #9 - Monopoly

EconS Micro Theory I 1 Recitation #9 - Monopoly EconS 50 - Micro Theory I Recitation #9 - Monopoly Exercise A monopolist faces a market demand curve given by: Q = 70 p. (a) If the monopolist can produce at constant average and marginal costs of AC =

More information

Exam 1 Review (Sections Covered: 1.3, 1.4, 2.1, 2.2, 2.3,2.4, 2.5, 3.2)

Exam 1 Review (Sections Covered: 1.3, 1.4, 2.1, 2.2, 2.3,2.4, 2.5, 3.2) Exam 1 Review (Sections Covered: 1.3, 1.4, 2.1, 2.2, 2.3,2.4, 2.5, 3.2) 1. Find the slope of the line that passes through the points ( 2, 6) and (10, 6). 2. Find the slope of the line that passes through

More information

d St+ t u. With numbers e q = The price of the option in three months is

d St+ t u. With numbers e q = The price of the option in three months is Exam in SF270 Financial Mathematics. Tuesday June 3 204 8.00-3.00. Answers and brief solutions.. (a) This exercise can be solved in two ways. i. Risk-neutral valuation. The martingale measure should satisfy

More information

Lecture 7: Optimal management of renewable resources

Lecture 7: Optimal management of renewable resources Lecture 7: Optimal management of renewable resources Florian K. Diekert (f.k.diekert@ibv.uio.no) Overview This lecture note gives a short introduction to the optimal management of renewable resource economics.

More information

San Francisco State University ECON 560 Summer Problem set 1

San Francisco State University ECON 560 Summer Problem set 1 San Francisco State University Michael Bar ECON 60 Summer 2018 Due Wednesday, July 11 Problem set 1 Name Assignment Rules 1. Homework assignments must be typed. For instructions on how to type equations

More information

Sensitivity Analysis with Data Tables. 10% annual interest now =$110 one year later. 10% annual interest now =$121 one year later

Sensitivity Analysis with Data Tables. 10% annual interest now =$110 one year later. 10% annual interest now =$121 one year later Sensitivity Analysis with Data Tables Time Value of Money: A Special kind of Trade-Off: $100 @ 10% annual interest now =$110 one year later $110 @ 10% annual interest now =$121 one year later $100 @ 10%

More information

2 Maximizing pro ts when marginal costs are increasing

2 Maximizing pro ts when marginal costs are increasing BEE14 { Basic Mathematics for Economists BEE15 { Introduction to Mathematical Economics Week 1, Lecture 1, Notes: Optimization II 3/12/21 Dieter Balkenborg Department of Economics University of Exeter

More information

EC1340 Fall 2018 Final Exam 2:00-3:30pm, December 27, 2018 Matt Turner

EC1340 Fall 2018 Final Exam 2:00-3:30pm, December 27, 2018 Matt Turner EC1340 Fall 018 Final Exam :00-3:30pm, December 7, 018 Matt Turner You will have 90 minutes to complete this exam. No notes or books are allowed but you may use a calculator. Cell phones and any device

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

Chapter 7 Pricing with Market Power SOLUTIONS TO EXERCISES

Chapter 7 Pricing with Market Power SOLUTIONS TO EXERCISES Firms, Prices & Markets Timothy Van Zandt August 2012 Chapter 7 Pricing with Market Power SOLUTIONS TO EXERCISES Exercise 7.1. Suppose you produce minivans at a constant marginal cost of $15K and your

More information

EconS Constrained Consumer Choice

EconS Constrained Consumer Choice EconS 305 - Constrained Consumer Choice Eric Dunaway Washington State University eric.dunaway@wsu.edu September 21, 2015 Eric Dunaway (WSU) EconS 305 - Lecture 12 September 21, 2015 1 / 49 Introduction

More information

2016 EXAMINATIONS ACCOUNTING TECHNICIAN PROGRAMME PAPER TC 3: BUSINESS MATHEMATICS & STATISTICS

2016 EXAMINATIONS ACCOUNTING TECHNICIAN PROGRAMME PAPER TC 3: BUSINESS MATHEMATICS & STATISTICS EXAMINATION NO. 16 EXAMINATIONS ACCOUNTING TECHNICIAN PROGRAMME PAPER TC : BUSINESS MATHEMATICS & STATISTICS WEDNESDAY 0 NOVEMBER 16 TIME ALLOWED : HOURS 9.00 AM - 12.00 NOON INSTRUCTIONS 1. You are allowed

More information

PDE Methods for the Maximum Drawdown

PDE Methods for the Maximum Drawdown PDE Methods for the Maximum Drawdown Libor Pospisil, Jan Vecer Columbia University, Department of Statistics, New York, NY 127, USA April 1, 28 Abstract Maximum drawdown is a risk measure that plays an

More information

Answer Key. EC 2273 Problem Set 1. Professor Nyshadham. Spring 2017

Answer Key. EC 2273 Problem Set 1. Professor Nyshadham. Spring 2017 EC 2273 Problem Set 1 Professor Nyshadham Spring 2017 Answer Key 1. A visual look at the world In the first class I asked you to write down three characteristics of an under-developed nation. (If you have

More information

Forwards, Futures, Options and Swaps

Forwards, Futures, Options and Swaps Forwards, Futures, Options and Swaps A derivative asset is any asset whose payoff, price or value depends on the payoff, price or value of another asset. The underlying or primitive asset may be almost

More information

UNIT 5 DECISION MAKING

UNIT 5 DECISION MAKING UNIT 5 DECISION MAKING This unit: UNDER UNCERTAINTY Discusses the techniques to deal with uncertainties 1 INTRODUCTION Few decisions in construction industry are made with certainty. Need to look at: The

More information

Section 4.3 Objectives

Section 4.3 Objectives CHAPTER ~ Linear Equations in Two Variables Section Equation of a Line Section Objectives Write the equation of a line given its graph Write the equation of a line given its slope and y-intercept Write

More information

Part 2: Monopoly and Oligopoly Investment

Part 2: Monopoly and Oligopoly Investment Part 2: Monopoly and Oligopoly Investment Irreversible investment and real options for a monopoly Risk of growth options versus assets in place Oligopoly: industry concentration, value versus growth, and

More information

Interest Rate Bermudan Swaption Valuation and Risk

Interest Rate Bermudan Swaption Valuation and Risk Interest Rate Bermudan Swaption Valuation and Risk Dmitry Popov FinPricing http://www.finpricing.com Summary Bermudan Swaption Definition Bermudan Swaption Payoffs Valuation Model Selection Criteria LGM

More information