1. 2 marks each True/False: briefly explain (no formal proofs/derivations are required for full mark).

Size: px
Start display at page:

Download "1. 2 marks each True/False: briefly explain (no formal proofs/derivations are required for full mark)."

Transcription

1 The University of Toronto ACT460/STA2502 Stochastic Methods for Actuarial Science Fall 2016 Midterm Test You must show your steps or no marks will be awarded 1 Name Student # 1. 2 marks each True/False: briefly explain (no formal proofs/derivations are required for full mark). (a) An arbitrage-free market has one risky asset and a money market account. Any contingent claim payable at time n can be perfectly replicated by a self-financing portfolio of these two securities, if the risky asset follows a n-period binomial model. Ans: T (b) Consider a market that has one risky asset and a money market account. The risky asset is modelled by a 4-period annual time step recombining binomial tree with S 0 = 100,u = 1.3,d = 1.1. The continuously compounding annual interest rate r is given by r = ln(1.05). This market does not admit arbitrage. Ans: F d = 1.1 > e r = e ln(1.05) = (c) The Delta of a European put option is positive. Ans: F Keeping others fixed, Put price decreases in stock price.

2 2 (d) An American call option on a non-dividend paying stock is always exercised at the expiration date. Ans: T (e) The put-call parity holds for American put and call options with the same strike price. Ans: F Put-call parity holds for European type. (f) The annual insurance charges of a variable annuity as a percentage of the subaccount value vary from year to year. Ans: F Usually it is a fixed percentage. (g) If {W t,t 0} denotes a standard Brownian motion, then {e σwt,t 0} is a martingale. Ans: F Easy to check using the definition. (h) The mean of an Ito integral depends on its integrand. Ans: F Ito integral has zero mean.

3 3 2. You are given the following VBA codes for computing an option price. In this function, mu and sigma are the annualized drift and volatility, period represents the duration of the option contract and δ t is the time step. Function Option_price(mu, sigma, r, period, delta_t, K, S) r interest rate (annual continuously compounding) K strike price S initial stock price ********* represents hidden codes up = Exp(Sqr(muˆ2*delta_tˆ2+sigmaˆ2*delta_t)) down = ********* q_up = ******** q_down = 1-q_up Option_price = 0 N = period/delta_t For Index = 0 To N Option_price = Option_price + _ Application.Combin(N, Index) * q_up ˆ Index * q_down ˆ (N - Index) * _ (Application.Max(S * (up ˆ Index) * (down ˆ (N - Index)) - K, 0) _ +2 * Application.Combin(N, Index) * q_up ˆ Index * q_down ˆ (N - Index) * _ (Application.Max(0.5*K - S * (up ˆ Index) * (down ˆ (N - Index)), 0) Next Index Option_price = Exp(-period * r) * Option_price End Function

4 4 a) 1 marks According to the expression for up, what is the underlying real world assumption in this Binomial tree model. Ans: ud=1. b) 2 marks Recover the VBA codes for down and q up. down = Exp(-Sqr(muˆ2*delta_tˆ2+sigmaˆ2*delta_t)) q_up = (Exp(r*delta_t)-down)/(up-down) c) 2 marks Sketch the payoff (as a function of S T ) of this option.

5 5 3. You are building a binomial model for stock price S t,s 0 = 100, over a three-years period. You are using 1 year (δt = 1) as its time step and for each period the probabilities of price going up and going down are equal under the real world probability measure. As defined in the lecture notes, the expected annual log-return µ = 0.10 and the annualized volatility on the log-price σ = a) 5 marks Determine the values of u and d, the total returns of the stock in one period when the price goes up and goes down, respectively. Ans: u = e µδt+σ δt = e = d = e µδt σ δt = e =

6 6 b) 5 marks Determine the real world probability that the stock price is greater than 110 at the end of three years. Ans: Accordingtothecomputation,theterminalstockpricesatdifferentstatesareS 3 = , , and Therefore the probability of S 3 > 100 is 3(1/2) 3 +(1/2) 3 = 1/2

7 7 c) 5 marks An at the money European put option on the stock expires in three years. Assume that the interest rate r compounded continuously is 0. Determine the option price at time 0. Ans: The risk neutral probabilities The Put option price is q u = e = q d = 1 q u = e 3r ( )q 3 d =

8 8 d) 5 marks If you use a replicating portfolio to hedge the option, determine the number of shares of the underlying stock in the portfolio at time 0. Ans: First compute the discounted expected payoff at t = 1. The number of shares in stock at time 0 can be computed as =

9 9 4. The price S t of a stock is assumed to follow the process S t = 100e µt+0.4 W t, t 0. Here W t denotes a standard Brownian motion under the risk-neutral probability measure Q, and µ is a constant. The interest rate r is 8% compounded continuously. a) 5 marks Today is t = 0. Find the risk-neutral probability that three months from now, the stock will have outperformed the money market account. Ans: Let W t denote a Brownian motion under risk-neutral measure Q. Then under the risk-neutral measure, the stock price dynamic should satisfy This implies ds t /S t = rdt+0.4dw t S t = S 0 e (r 0.08)t+0.4dWt The risk-neutral probability that stock will outperform the m.m. account is Q(S 3 /S 0 > e 3r ) = Q(0.4W 3 > 0.24) Where W 3 N(0,3) under Q. Q(0.4W 3 > 0.24) = Q(Z > 0.6/ 3) =

10 10 b) 5 marks Express S t as a solution of a SDE under Q. Ans: As previously stated S t = 100e (r 0.08)t+0.4dWt

11 11 5. The price S t of a stock is assumed to follow the stochastic process ds t = 0.2S t dt+e 0.5t S t dw t, S 0 = 100. Here W t denotes a standard Brownian motion under the real world probability measure P, and µ and σ are positive constants. t is measured in years. Today is t = 0. a) 5 marks Solve the equation for S t. Ans: According to Ito s lemma dlns t = ds t S t ds tds t 2S 2 t Substitute the expression for ds t and ds t ds t = e t S 2 tdt we get Integrate both sides from s = 0 to s = t get Therefore Where S 0 = 100. dlns t = 0.2dt+e 0.5t dw t e t 2 dt = (0.2 e t /2)dt+e 0.5t dw t lns t lns 0 = 0.2t 1 e t 2 + t S t = S 0 e 0.2t 1 e t 2 + t 0 e 0.5s dw s 0 e 0.5s dw s

12 12 b) 5 marks Determine the mean E(S 2 ) of S 2. Ans: Note that t 0 e 0.5s dw s N(0, t 0 e s ds), hence E(S 2 ) = S 0 e e 2 2 E(e t 0 e 0.5s dw s ) = S 0 e e 2 2 e 1 e 2 2 = S 0 e 0.4 = Another way is taking expectation on both sides of SDE ds t = 0.2S t dt + e 0.5t S t dw t to get E(dS t ) = de(s t ) = 0.2E(S t )dt. Solve the ODE for f t = E(S t ) with f 0 = 100.

Brownian Motion and Ito s Lemma

Brownian Motion and Ito s Lemma Brownian Motion and Ito s Lemma 1 The Sharpe Ratio 2 The Risk-Neutral Process Brownian Motion and Ito s Lemma 1 The Sharpe Ratio 2 The Risk-Neutral Process The Sharpe Ratio Consider a portfolio of assets

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

The Multistep Binomial Model

The Multistep Binomial Model Lecture 10 The Multistep Binomial Model Reminder: Mid Term Test Friday 9th March - 12pm Examples Sheet 1 4 (not qu 3 or qu 5 on sheet 4) Lectures 1-9 10.1 A Discrete Model for Stock Price Reminder: The

More information

θ(t ) = T f(0, T ) + σ2 T

θ(t ) = T f(0, T ) + σ2 T 1 Derivatives Pricing and Financial Modelling Andrew Cairns: room M3.08 E-mail: A.Cairns@ma.hw.ac.uk Tutorial 10 1. (Ho-Lee) Let X(T ) = T 0 W t dt. (a) What is the distribution of X(T )? (b) Find E[exp(

More information

From Discrete Time to Continuous Time Modeling

From Discrete Time to Continuous Time Modeling From Discrete Time to Continuous Time Modeling Prof. S. Jaimungal, Department of Statistics, University of Toronto 2004 Arrow-Debreu Securities 2004 Prof. S. Jaimungal 2 Consider a simple one-period economy

More information

The Black-Scholes PDE from Scratch

The Black-Scholes PDE from Scratch The Black-Scholes PDE from Scratch chris bemis November 27, 2006 0-0 Goal: Derive the Black-Scholes PDE To do this, we will need to: Come up with some dynamics for the stock returns Discuss Brownian motion

More information

Hedging Credit Derivatives in Intensity Based Models

Hedging Credit Derivatives in Intensity Based Models Hedging Credit Derivatives in Intensity Based Models PETER CARR Head of Quantitative Financial Research, Bloomberg LP, New York Director of the Masters Program in Math Finance, Courant Institute, NYU Stanford

More information

(1) Consider a European call option and a European put option on a nondividend-paying stock. You are given:

(1) Consider a European call option and a European put option on a nondividend-paying stock. You are given: (1) Consider a European call option and a European put option on a nondividend-paying stock. You are given: (i) The current price of the stock is $60. (ii) The call option currently sells for $0.15 more

More information

Lecture 6: Option Pricing Using a One-step Binomial Tree. Thursday, September 12, 13

Lecture 6: Option Pricing Using a One-step Binomial Tree. Thursday, September 12, 13 Lecture 6: Option Pricing Using a One-step Binomial Tree An over-simplified model with surprisingly general extensions a single time step from 0 to T two types of traded securities: stock S and a bond

More information

FINANCIAL OPTION ANALYSIS HANDOUTS

FINANCIAL OPTION ANALYSIS HANDOUTS FINANCIAL OPTION ANALYSIS HANDOUTS 1 2 FAIR PRICING There is a market for an object called S. The prevailing price today is S 0 = 100. At this price the object S can be bought or sold by anyone for any

More information

Derivative Securities Fall 2012 Final Exam Guidance Extended version includes full semester

Derivative Securities Fall 2012 Final Exam Guidance Extended version includes full semester Derivative Securities Fall 2012 Final Exam Guidance Extended version includes full semester Our exam is Wednesday, December 19, at the normal class place and time. You may bring two sheets of notes (8.5

More information

NEWCASTLE UNIVERSITY SCHOOL OF MATHEMATICS, STATISTICS & PHYSICS SEMESTER 1 SPECIMEN 2 MAS3904. Stochastic Financial Modelling. Time allowed: 2 hours

NEWCASTLE UNIVERSITY SCHOOL OF MATHEMATICS, STATISTICS & PHYSICS SEMESTER 1 SPECIMEN 2 MAS3904. Stochastic Financial Modelling. Time allowed: 2 hours NEWCASTLE UNIVERSITY SCHOOL OF MATHEMATICS, STATISTICS & PHYSICS SEMESTER 1 SPECIMEN 2 Stochastic Financial Modelling Time allowed: 2 hours Candidates should attempt all questions. Marks for each question

More information

( ) since this is the benefit of buying the asset at the strike price rather

( ) since this is the benefit of buying the asset at the strike price rather Review of some financial models for MAT 483 Parity and Other Option Relationships The basic parity relationship for European options with the same strike price and the same time to expiration is: C( KT

More information

Lecture 17. The model is parametrized by the time period, δt, and three fixed constant parameters, v, σ and the riskless rate r.

Lecture 17. The model is parametrized by the time period, δt, and three fixed constant parameters, v, σ and the riskless rate r. Lecture 7 Overture to continuous models Before rigorously deriving the acclaimed Black-Scholes pricing formula for the value of a European option, we developed a substantial body of material, in continuous

More information

Lecture 3. Sergei Fedotov Introduction to Financial Mathematics. Sergei Fedotov (University of Manchester) / 6

Lecture 3. Sergei Fedotov Introduction to Financial Mathematics. Sergei Fedotov (University of Manchester) / 6 Lecture 3 Sergei Fedotov 091 - Introduction to Financial Mathematics Sergei Fedotov (University of Manchester) 091 010 1 / 6 Lecture 3 1 Distribution for lns(t) Solution to Stochastic Differential Equation

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

Lecture 8: The Black-Scholes theory

Lecture 8: The Black-Scholes theory Lecture 8: The Black-Scholes theory Dr. Roman V Belavkin MSO4112 Contents 1 Geometric Brownian motion 1 2 The Black-Scholes pricing 2 3 The Black-Scholes equation 3 References 5 1 Geometric Brownian motion

More information

The Black-Scholes Model

The Black-Scholes Model The Black-Scholes Model Liuren Wu Options Markets (Hull chapter: 12, 13, 14) Liuren Wu ( c ) The Black-Scholes Model colorhmoptions Markets 1 / 17 The Black-Scholes-Merton (BSM) model Black and Scholes

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

Valuation of derivative assets Lecture 8

Valuation of derivative assets Lecture 8 Valuation of derivative assets Lecture 8 Magnus Wiktorsson September 27, 2018 Magnus Wiktorsson L8 September 27, 2018 1 / 14 The risk neutral valuation formula Let X be contingent claim with maturity T.

More information

Finance & Stochastic. Contents. Rossano Giandomenico. Independent Research Scientist, Chieti, Italy.

Finance & Stochastic. Contents. Rossano Giandomenico. Independent Research Scientist, Chieti, Italy. Finance & Stochastic Rossano Giandomenico Independent Research Scientist, Chieti, Italy Email: rossano1976@libero.it Contents Stochastic Differential Equations Interest Rate Models Option Pricing Models

More information

Hedging under Arbitrage

Hedging under Arbitrage Hedging under Arbitrage Johannes Ruf Columbia University, Department of Statistics Modeling and Managing Financial Risks January 12, 2011 Motivation Given: a frictionless market of stocks with continuous

More information

1 Implied Volatility from Local Volatility

1 Implied Volatility from Local Volatility Abstract We try to understand the Berestycki, Busca, and Florent () (BBF) result in the context of the work presented in Lectures and. Implied Volatility from Local Volatility. Current Plan as of March

More information

Black-Scholes-Merton Model

Black-Scholes-Merton Model Black-Scholes-Merton Model Weerachart Kilenthong University of the Thai Chamber of Commerce c Kilenthong 2017 Weerachart Kilenthong University of the Thai Chamber Black-Scholes-Merton of Commerce Model

More information

The Black-Scholes Model

The Black-Scholes Model The Black-Scholes Model Liuren Wu Options Markets Liuren Wu ( c ) The Black-Merton-Scholes Model colorhmoptions Markets 1 / 18 The Black-Merton-Scholes-Merton (BMS) model Black and Scholes (1973) and Merton

More information

1 Interest Based Instruments

1 Interest Based Instruments 1 Interest Based Instruments e.g., Bonds, forward rate agreements (FRA), and swaps. Note that the higher the credit risk, the higher the interest rate. Zero Rates: n year zero rate (or simply n-year zero)

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 2017 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 2017 14 Lecture 14 November 15, 2017 Derivation of the

More information

Lecture 11: Ito Calculus. Tuesday, October 23, 12

Lecture 11: Ito Calculus. Tuesday, October 23, 12 Lecture 11: Ito Calculus Continuous time models We start with the model from Chapter 3 log S j log S j 1 = µ t + p tz j Sum it over j: log S N log S 0 = NX µ t + NX p tzj j=1 j=1 Can we take the limit

More information

Computational Finance. Computational Finance p. 1

Computational Finance. Computational Finance p. 1 Computational Finance Computational Finance p. 1 Outline Binomial model: option pricing and optimal investment Monte Carlo techniques for pricing of options pricing of non-standard options improving accuracy

More information

The Black-Scholes Model

The Black-Scholes Model IEOR E4706: Foundations of Financial Engineering c 2016 by Martin Haugh The Black-Scholes Model In these notes we will use Itô s Lemma and a replicating argument to derive the famous Black-Scholes formula

More information

Binomial model: numerical algorithm

Binomial model: numerical algorithm Binomial model: numerical algorithm S / 0 C \ 0 S0 u / C \ 1,1 S0 d / S u 0 /, S u 3 0 / 3,3 C \ S0 u d /,1 S u 5 0 4 0 / C 5 5,5 max X S0 u,0 S u C \ 4 4,4 C \ 3 S u d / 0 3, C \ S u d 0 S u d 0 / C 4

More information

Stochastic Processes and Stochastic Calculus - 9 Complete and Incomplete Market Models

Stochastic Processes and Stochastic Calculus - 9 Complete and Incomplete Market Models Stochastic Processes and Stochastic Calculus - 9 Complete and Incomplete Market Models Eni Musta Università degli studi di Pisa San Miniato - 16 September 2016 Overview 1 Self-financing portfolio 2 Complete

More information

Change of Measure (Cameron-Martin-Girsanov Theorem)

Change of Measure (Cameron-Martin-Girsanov Theorem) Change of Measure Cameron-Martin-Girsanov Theorem Radon-Nikodym derivative: Taking again our intuition from the discrete world, we know that, in the context of option pricing, we need to price the claim

More information

1.1 Basic Financial Derivatives: Forward Contracts and Options

1.1 Basic Financial Derivatives: Forward Contracts and Options Chapter 1 Preliminaries 1.1 Basic Financial Derivatives: Forward Contracts and Options A derivative is a financial instrument whose value depends on the values of other, more basic underlying variables

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

Monte Carlo Simulations

Monte Carlo Simulations Monte Carlo Simulations Lecture 1 December 7, 2014 Outline Monte Carlo Methods Monte Carlo methods simulate the random behavior underlying the financial models Remember: When pricing you must simulate

More information

Economathematics. Problem Sheet 1. Zbigniew Palmowski. Ws 2 dw s = 1 t

Economathematics. Problem Sheet 1. Zbigniew Palmowski. Ws 2 dw s = 1 t Economathematics Problem Sheet 1 Zbigniew Palmowski 1. Calculate Ee X where X is a gaussian random variable with mean µ and volatility σ >.. Verify that where W is a Wiener process. Ws dw s = 1 3 W t 3

More information

Homework Assignments

Homework Assignments Homework Assignments Week 1 (p 57) #4.1, 4., 4.3 Week (pp 58-6) #4.5, 4.6, 4.8(a), 4.13, 4.0, 4.6(b), 4.8, 4.31, 4.34 Week 3 (pp 15-19) #1.9, 1.1, 1.13, 1.15, 1.18 (pp 9-31) #.,.6,.9 Week 4 (pp 36-37)

More information

Errata, Mahler Study Aids for Exam 3/M, Spring 2010 HCM, 1/26/13 Page 1

Errata, Mahler Study Aids for Exam 3/M, Spring 2010 HCM, 1/26/13 Page 1 Errata, Mahler Study Aids for Exam 3/M, Spring 2010 HCM, 1/26/13 Page 1 1B, p. 72: (60%)(0.39) + (40%)(0.75) = 0.534. 1D, page 131, solution to the first Exercise: 2.5 2.5 λ(t) dt = 3t 2 dt 2 2 = t 3 ]

More information

Martingale Approach to Pricing and Hedging

Martingale Approach to Pricing and Hedging Introduction and echniques Lecture 9 in Financial Mathematics UiO-SK451 Autumn 15 eacher:s. Ortiz-Latorre Martingale Approach to Pricing and Hedging 1 Risk Neutral Pricing Assume that we are in the basic

More information

Basic Concepts and Examples in Finance

Basic Concepts and Examples in Finance Basic Concepts and Examples in Finance Bernardo D Auria email: bernardo.dauria@uc3m.es web: www.est.uc3m.es/bdauria July 5, 2017 ICMAT / UC3M The Financial Market The Financial Market We assume there are

More information

Course MFE/3F Practice Exam 1 Solutions

Course MFE/3F Practice Exam 1 Solutions Course MFE/3F Practice Exam 1 Solutions he chapter references below refer to the chapters of the ActuraialBrew.com Study Manual. Solution 1 C Chapter 16, Sharpe Ratio If we (incorrectly) assume that the

More information

Name: MULTIPLE CHOICE. 1 (5) a b c d e. 2 (5) a b c d e TRUE/FALSE 1 (2) TRUE FALSE. 3 (5) a b c d e 2 (2) TRUE FALSE.

Name: MULTIPLE CHOICE. 1 (5) a b c d e. 2 (5) a b c d e TRUE/FALSE 1 (2) TRUE FALSE. 3 (5) a b c d e 2 (2) TRUE FALSE. Name: M339D=M389D Introduction to Actuarial Financial Mathematics University of Texas at Austin Sample In-Term Exam II Instructor: Milica Čudina Notes: This is a closed book and closed notes exam. The

More information

Review of Derivatives I. Matti Suominen, Aalto

Review of Derivatives I. Matti Suominen, Aalto Review of Derivatives I Matti Suominen, Aalto 25 SOME STATISTICS: World Financial Markets (trillion USD) 2 15 1 5 Securitized loans Corporate bonds Financial institutions' bonds Public debt Equity market

More information

1 Parameterization of Binomial Models and Derivation of the Black-Scholes PDE.

1 Parameterization of Binomial Models and Derivation of the Black-Scholes PDE. 1 Parameterization of Binomial Models and Derivation of the Black-Scholes PDE. Previously we treated binomial models as a pure theoretical toy model for our complete economy. We turn to the issue of how

More information

Lecture Note 8 of Bus 41202, Spring 2017: Stochastic Diffusion Equation & Option Pricing

Lecture Note 8 of Bus 41202, Spring 2017: Stochastic Diffusion Equation & Option Pricing Lecture Note 8 of Bus 41202, Spring 2017: Stochastic Diffusion Equation & Option Pricing We shall go over this note quickly due to time constraints. Key concept: Ito s lemma Stock Options: A contract giving

More information

The Black-Scholes Equation using Heat Equation

The Black-Scholes Equation using Heat Equation The Black-Scholes Equation using Heat Equation Peter Cassar May 0, 05 Assumptions of the Black-Scholes Model We have a risk free asset given by the price process, dbt = rbt The asset price follows a geometric

More information

Option Pricing Models for European Options

Option Pricing Models for European Options Chapter 2 Option Pricing Models for European Options 2.1 Continuous-time Model: Black-Scholes Model 2.1.1 Black-Scholes Assumptions We list the assumptions that we make for most of this notes. 1. The underlying

More information

Investment Guarantees Chapter 7. Investment Guarantees Chapter 7: Option Pricing Theory. Key Exam Topics in This Lesson.

Investment Guarantees Chapter 7. Investment Guarantees Chapter 7: Option Pricing Theory. Key Exam Topics in This Lesson. Investment Guarantees Chapter 7 Investment Guarantees Chapter 7: Option Pricing Theory Mary Hardy (2003) Video By: J. Eddie Smith, IV, FSA, MAAA Investment Guarantees Chapter 7 1 / 15 Key Exam Topics in

More information

non linear Payoffs Markus K. Brunnermeier

non linear Payoffs Markus K. Brunnermeier Institutional Finance Lecture 10: Dynamic Arbitrage to Replicate non linear Payoffs Markus K. Brunnermeier Preceptor: Dong Beom Choi Princeton University 1 BINOMIAL OPTION PRICING Consider a European call

More information

Errata and updates for ASM Exam MFE/3F (Ninth Edition) sorted by page.

Errata and updates for ASM Exam MFE/3F (Ninth Edition) sorted by page. Errata for ASM Exam MFE/3F Study Manual (Ninth Edition) Sorted by Page 1 Errata and updates for ASM Exam MFE/3F (Ninth Edition) sorted by page. Note the corrections to Practice Exam 6:9 (page 613) and

More information

One-Factor Models { 1 Key features of one-factor (equilibrium) models: { All bond prices are a function of a single state variable, the short rate. {

One-Factor Models { 1 Key features of one-factor (equilibrium) models: { All bond prices are a function of a single state variable, the short rate. { Fixed Income Analysis Term-Structure Models in Continuous Time Multi-factor equilibrium models (general theory) The Brennan and Schwartz model Exponential-ane models Jesper Lund April 14, 1998 1 Outline

More information

European call option with inflation-linked strike

European call option with inflation-linked strike Mathematical Statistics Stockholm University European call option with inflation-linked strike Ola Hammarlid Research Report 2010:2 ISSN 1650-0377 Postal address: Mathematical Statistics Dept. of Mathematics

More information

INSTITUTE OF ACTUARIES OF INDIA

INSTITUTE OF ACTUARIES OF INDIA INSTITUTE OF ACTUARIES OF INDIA EXAMINATIONS 23 rd March 2017 Subject CT8 Financial Economics Time allowed: Three Hours (10.30 13.30 Hours) Total Marks: 100 INSTRUCTIONS TO THE CANDIDATES 1. Please read

More information

Utility Indifference Pricing and Dynamic Programming Algorithm

Utility Indifference Pricing and Dynamic Programming Algorithm Chapter 8 Utility Indifference ricing and Dynamic rogramming Algorithm In the Black-Scholes framework, we can perfectly replicate an option s payoff. However, it may not be true beyond the Black-Scholes

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 M375T/M396C Introduction to Financial Mathematics for Actuarial Applications Spring 2013 University of Texas at Austin Sample In-Term Exam II - Solutions This problem set is aimed at making up the lost

More information

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2011, Mr. Ruey S. Tsay. Solutions to Final Exam.

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2011, Mr. Ruey S. Tsay. Solutions to Final Exam. The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2011, Mr. Ruey S. Tsay Solutions to Final Exam Problem A: (32 pts) Answer briefly the following questions. 1. Suppose

More information

King s College London

King s College London King s College London University Of London This paper is part of an examination of the College counting towards the award of a degree. Examinations are governed by the College Regulations under the authority

More information

Numerical schemes for SDEs

Numerical schemes for SDEs Lecture 5 Numerical schemes for SDEs Lecture Notes by Jan Palczewski Computational Finance p. 1 A Stochastic Differential Equation (SDE) is an object of the following type dx t = a(t,x t )dt + b(t,x t

More information

Financial Engineering MRM 8610 Spring 2015 (CRN 12477) Instructor Information. Class Information. Catalog Description. Textbooks

Financial Engineering MRM 8610 Spring 2015 (CRN 12477) Instructor Information. Class Information. Catalog Description. Textbooks Instructor Information Financial Engineering MRM 8610 Spring 2015 (CRN 12477) Instructor: Daniel Bauer Office: Room 1126, Robinson College of Business (35 Broad Street) Office Hours: By appointment (just

More information

Introduction Random Walk One-Period Option Pricing Binomial Option Pricing Nice Math. Binomial Models. Christopher Ting.

Introduction Random Walk One-Period Option Pricing Binomial Option Pricing Nice Math. Binomial Models. Christopher Ting. Binomial Models Christopher Ting Christopher Ting http://www.mysmu.edu/faculty/christophert/ : christopherting@smu.edu.sg : 6828 0364 : LKCSB 5036 October 14, 2016 Christopher Ting QF 101 Week 9 October

More information

Risk Neutral Pricing Black-Scholes Formula Lecture 19. Dr. Vasily Strela (Morgan Stanley and MIT)

Risk Neutral Pricing Black-Scholes Formula Lecture 19. Dr. Vasily Strela (Morgan Stanley and MIT) Risk Neutral Pricing Black-Scholes Formula Lecture 19 Dr. Vasily Strela (Morgan Stanley and MIT) Risk Neutral Valuation: Two-Horse Race Example One horse has 20% chance to win another has 80% chance $10000

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

Chapter 9 - Mechanics of Options Markets

Chapter 9 - Mechanics of Options Markets Chapter 9 - Mechanics of Options Markets Types of options Option positions and profit/loss diagrams Underlying assets Specifications Trading options Margins Taxation Warrants, employee stock options, and

More information

King s College London

King s College London King s College London University Of London This paper is part of an examination of the College counting towards the award of a degree. Examinations are governed by the College Regulations under the authority

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 M375T/M396C Introduction to Financial Mathematics for Actuarial Applications Spring 2013 University of Texas at Austin Sample In-Term Exam II Post-test Instructor: Milica Čudina Notes: This is a closed

More information

3.1 Itô s Lemma for Continuous Stochastic Variables

3.1 Itô s Lemma for Continuous Stochastic Variables Lecture 3 Log Normal Distribution 3.1 Itô s Lemma for Continuous Stochastic Variables Mathematical Finance is about pricing (or valuing) financial contracts, and in particular those contracts which depend

More information

The Black-Scholes Equation

The Black-Scholes Equation The Black-Scholes Equation MATH 472 Financial Mathematics J. Robert Buchanan 2018 Objectives In this lesson we will: derive the Black-Scholes partial differential equation using Itô s Lemma and no-arbitrage

More information

DRAFT. 1 exercise in state (S, t), π(s, t) = 0 do not exercise in state (S, t) Review of the Risk Neutral Stock Dynamics

DRAFT. 1 exercise in state (S, t), π(s, t) = 0 do not exercise in state (S, t) Review of the Risk Neutral Stock Dynamics Chapter 12 American Put Option Recall that the American option has strike K and maturity T and gives the holder the right to exercise at any time in [0, T ]. The American option is not straightforward

More information

Math489/889 Stochastic Processes and Advanced Mathematical Finance Solutions to Practice Problems

Math489/889 Stochastic Processes and Advanced Mathematical Finance Solutions to Practice Problems Math489/889 Stochastic Processes and Advanced Mathematical Finance Solutions to Practice Problems Steve Dunbar No Due Date: Practice Only. Find the mode (the value of the independent variable with the

More information

1 The continuous time limit

1 The continuous time limit Derivative Securities, Courant Institute, Fall 2008 http://www.math.nyu.edu/faculty/goodman/teaching/derivsec08/index.html Jonathan Goodman and Keith Lewis Supplementary notes and comments, Section 3 1

More information

- 1 - **** d(lns) = (µ (1/2)σ 2 )dt + σdw t

- 1 - **** d(lns) = (µ (1/2)σ 2 )dt + σdw t - 1 - **** These answers indicate the solutions to the 2014 exam questions. Obviously you should plot graphs where I have simply described the key features. It is important when plotting graphs to label

More information

MORNING SESSION. Date: Wednesday, April 30, 2014 Time: 8:30 a.m. 11:45 a.m. INSTRUCTIONS TO CANDIDATES

MORNING SESSION. Date: Wednesday, April 30, 2014 Time: 8:30 a.m. 11:45 a.m. INSTRUCTIONS TO CANDIDATES SOCIETY OF ACTUARIES Quantitative Finance and Investment Core Exam QFICORE MORNING SESSION Date: Wednesday, April 30, 2014 Time: 8:30 a.m. 11:45 a.m. INSTRUCTIONS TO CANDIDATES General Instructions 1.

More information

Financial Derivatives Section 5

Financial Derivatives Section 5 Financial Derivatives Section 5 The Black and Scholes Model Michail Anthropelos anthropel@unipi.gr http://web.xrh.unipi.gr/faculty/anthropelos/ University of Piraeus Spring 2018 M. Anthropelos (Un. of

More information

M5MF6. Advanced Methods in Derivatives Pricing

M5MF6. Advanced Methods in Derivatives Pricing Course: Setter: M5MF6 Dr Antoine Jacquier MSc EXAMINATIONS IN MATHEMATICS AND FINANCE DEPARTMENT OF MATHEMATICS April 2016 M5MF6 Advanced Methods in Derivatives Pricing Setter s signature...........................................

More information

25857 Interest Rate Modelling

25857 Interest Rate Modelling 25857 UTS Business School University of Technology Sydney Chapter 20. Change of Numeraire May 15, 2014 1/36 Chapter 20. Change of Numeraire 1 The Radon-Nikodym Derivative 2 Option Pricing under Stochastic

More information

Binomial Option Pricing

Binomial Option Pricing Binomial Option Pricing The wonderful Cox Ross Rubinstein model Nico van der Wijst 1 D. van der Wijst Finance for science and technology students 1 Introduction 2 3 4 2 D. van der Wijst Finance for science

More information

AMH4 - ADVANCED OPTION PRICING. Contents

AMH4 - ADVANCED OPTION PRICING. Contents AMH4 - ADVANCED OPTION PRICING ANDREW TULLOCH Contents 1. Theory of Option Pricing 2 2. Black-Scholes PDE Method 4 3. Martingale method 4 4. Monte Carlo methods 5 4.1. Method of antithetic variances 5

More information

Exam Quantitative Finance (35V5A1)

Exam Quantitative Finance (35V5A1) Exam Quantitative Finance (35V5A1) Part I: Discrete-time finance Exercise 1 (20 points) a. Provide the definition of the pricing kernel k q. Relate this pricing kernel to the set of discount factors D

More information

MFE8812 Bond Portfolio Management

MFE8812 Bond Portfolio Management MFE8812 Bond Portfolio Management William C. H. Leon Nanyang Business School January 8, 2018 1 / 87 William C. H. Leon MFE8812 Bond Portfolio Management 1 Overview Building an Interest-Rate Tree Calibrating

More information

Arbitrage, Martingales, and Pricing Kernels

Arbitrage, Martingales, and Pricing Kernels Arbitrage, Martingales, and Pricing Kernels Arbitrage, Martingales, and Pricing Kernels 1/ 36 Introduction A contingent claim s price process can be transformed into a martingale process by 1 Adjusting

More information

CONTINUOUS TIME PRICING AND TRADING: A REVIEW, WITH SOME EXTRA PIECES

CONTINUOUS TIME PRICING AND TRADING: A REVIEW, WITH SOME EXTRA PIECES CONTINUOUS TIME PRICING AND TRADING: A REVIEW, WITH SOME EXTRA PIECES THE SOURCE OF A PRICE IS ALWAYS A TRADING STRATEGY SPECIAL CASES WHERE TRADING STRATEGY IS INDEPENDENT OF PROBABILITY MEASURE COMPLETENESS,

More information

Derivative Securities

Derivative Securities Derivative Securities he Black-Scholes formula and its applications. his Section deduces the Black- Scholes formula for a European call or put, as a consequence of risk-neutral valuation in the continuous

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

Practical Hedging: From Theory to Practice. OSU Financial Mathematics Seminar May 5, 2008

Practical Hedging: From Theory to Practice. OSU Financial Mathematics Seminar May 5, 2008 Practical Hedging: From Theory to Practice OSU Financial Mathematics Seminar May 5, 008 Background Dynamic replication is a risk management technique used to mitigate market risk We hope to spend a certain

More information

Fixed-Income Options

Fixed-Income Options Fixed-Income Options Consider a two-year 99 European call on the three-year, 5% Treasury. Assume the Treasury pays annual interest. From p. 852 the three-year Treasury s price minus the $5 interest could

More information

Financial Stochastic Calculus E-Book Draft 2 Posted On Actuarial Outpost 10/25/08

Financial Stochastic Calculus E-Book Draft 2 Posted On Actuarial Outpost 10/25/08 Financial Stochastic Calculus E-Book Draft Posted On Actuarial Outpost 10/5/08 Written by Colby Schaeffer Dedicated to the students who are sitting for SOA Exam MFE in Nov. 008 SOA Exam MFE Fall 008 ebook

More information

Reading: You should read Hull chapter 12 and perhaps the very first part of chapter 13.

Reading: You should read Hull chapter 12 and perhaps the very first part of chapter 13. FIN-40008 FINANCIAL INSTRUMENTS SPRING 2008 Asset Price Dynamics Introduction These notes give assumptions of asset price returns that are derived from the efficient markets hypothesis. Although a hypothesis,

More information

2.3 Mathematical Finance: Option pricing

2.3 Mathematical Finance: Option pricing CHAPTR 2. CONTINUUM MODL 8 2.3 Mathematical Finance: Option pricing Options are some of the commonest examples of derivative securities (also termed financial derivatives or simply derivatives). A uropean

More information

Option Pricing. 1 Introduction. Mrinal K. Ghosh

Option Pricing. 1 Introduction. Mrinal K. Ghosh Option Pricing Mrinal K. Ghosh 1 Introduction We first introduce the basic terminology in option pricing. Option: An option is the right, but not the obligation to buy (or sell) an asset under specified

More information

Replication strategies of derivatives under proportional transaction costs - An extension to the Boyle and Vorst model.

Replication strategies of derivatives under proportional transaction costs - An extension to the Boyle and Vorst model. Replication strategies of derivatives under proportional transaction costs - An extension to the Boyle and Vorst model Henrik Brunlid September 16, 2005 Abstract When we introduce transaction costs

More information

MULTIPLE CHOICE QUESTIONS

MULTIPLE CHOICE QUESTIONS Name: M375T=M396D Introduction to Actuarial Financial Mathematics Spring 2013 University of Texas at Austin Sample In-Term Exam Two: Pretest Instructor: Milica Čudina Notes: This is a closed book and closed

More information

Forwards and Futures. Chapter Basics of forwards and futures Forwards

Forwards and Futures. Chapter Basics of forwards and futures Forwards Chapter 7 Forwards and Futures Copyright c 2008 2011 Hyeong In Choi, All rights reserved. 7.1 Basics of forwards and futures The financial assets typically stocks we have been dealing with so far are the

More information

Advanced Topics in Derivative Pricing Models. Topic 4 - Variance products and volatility derivatives

Advanced Topics in Derivative Pricing Models. Topic 4 - Variance products and volatility derivatives Advanced Topics in Derivative Pricing Models Topic 4 - Variance products and volatility derivatives 4.1 Volatility trading and replication of variance swaps 4.2 Volatility swaps 4.3 Pricing of discrete

More information

************* with µ, σ, and r all constant. We are also interested in more sophisticated models, such as:

************* with µ, σ, and r all constant. We are also interested in more sophisticated models, such as: Continuous Time Finance Notes, Spring 2004 Section 1. 1/21/04 Notes by Robert V. Kohn, Courant Institute of Mathematical Sciences. For use in connection with the NYU course Continuous Time Finance. This

More information

Forwards, Swaps, Futures and Options

Forwards, Swaps, Futures and Options IEOR E4706: Foundations of Financial Engineering c 2016 by Martin Haugh Forwards, Swaps, Futures and Options These notes 1 introduce forwards, swaps, futures and options as well as the basic mechanics

More information

Corporate Finance, Module 21: Option Valuation. Practice Problems. (The attached PDF file has better formatting.) Updated: July 7, 2005

Corporate Finance, Module 21: Option Valuation. Practice Problems. (The attached PDF file has better formatting.) Updated: July 7, 2005 Corporate Finance, Module 21: Option Valuation Practice Problems (The attached PDF file has better formatting.) Updated: July 7, 2005 {This posting has more information than is needed for the corporate

More information

Stochastic Calculus, Application of Real Analysis in Finance

Stochastic Calculus, Application of Real Analysis in Finance , Application of Real Analysis in Finance Workshop for Young Mathematicians in Korea Seungkyu Lee Pohang University of Science and Technology August 4th, 2010 Contents 1 BINOMIAL ASSET PRICING MODEL Contents

More information

The Binomial Model. Chapter 3

The Binomial Model. Chapter 3 Chapter 3 The Binomial Model In Chapter 1 the linear derivatives were considered. They were priced with static replication and payo tables. For the non-linear derivatives in Chapter 2 this will not work

More information

The discounted portfolio value of a selffinancing strategy in discrete time was given by. δ tj 1 (s tj s tj 1 ) (9.1) j=1

The discounted portfolio value of a selffinancing strategy in discrete time was given by. δ tj 1 (s tj s tj 1 ) (9.1) j=1 Chapter 9 The isk Neutral Pricing Measure for the Black-Scholes Model The discounted portfolio value of a selffinancing strategy in discrete time was given by v tk = v 0 + k δ tj (s tj s tj ) (9.) where

More information