- MATHEMATICAL BIOLOGY BY D A - YEON M IN #2012160018 SIR Epidemics.

Slides:



Advertisements
Similar presentations
Options and Futures Faculty of Economics & Business The University of Sydney Shino Takayama.
Advertisements

Introduction To Credit Derivatives Stephen P. D Arcy and Xinyan Zhao.
Chapter 12: Basic option theory
Introduction Greeks help us to measure the risk associated with derivative positions. Greeks also come in handy when we do local valuation of instruments.
1 Futures Futures Markets Futures and Forward Trading Mechanism Speculation versus Hedging Futures Pricing Foreign Exchange, stock index, and Interest.
Futures markets. Forward - an agreement calling for a future delivery of an asset at an agreed-upon price Futures - similar to forward but feature formalized.
 Derivatives are products whose values are derived from one or more, basic underlying variables.  Types of derivatives are many- 1. Forwards 2. Futures.
Derivatives Workshop Actuarial Society October 30, 2007.
Vicentiu Covrig 1 Options Options (Chapter 19 Jones)
Economics 434 – Financial Market Theory Thursday, August 25, 2009 Thursday, August 24,Thursday, September 21, Tues, Nov 27, 2012 Economics 434 Theory of.
Options Dr. Lynn Phillips Kugele FIN 338. OPT-2 Options Review Mechanics of Option Markets Properties of Stock Options Valuing Stock Options: –The Black-Scholes.
Black-Scholes Equation April 15, Contents Options Black Scholes PDE Solution Method.
Topic 3: Derivatives Options: puts and calls
Who is Afraid of Black Scholes A Gentle Introduction to Quantitative Finance Day 2 July 12 th 13 th and 15 th 2013 UNIVERSIDAD NACIONAL MAYOR DE SAN MARCOS.
Options Week 7. What is a derivative asset? Any asset that “derives” its value from another underlying asset is called a derivative asset. The underlying.
Introduction to Derivatives and Risk Management Corporate Finance Dr. A. DeMaskey.
Spreads  A spread is a combination of a put and a call with different exercise prices.  Suppose that an investor buys simultaneously a 3-month put option.
CHAPTER 18 Derivatives and Risk Management
Financial options1 From financial options to real options 2. Financial options Prof. André Farber Solvay Business School ESCP March 10,2000.
Options and Speculative Markets Introduction to option pricing André Farber Solvay Business School University of Brussels.
Derivatives Financial products that depend on another, generally more basic, product such as a stock.
1 1 Ch22&23 – MBA 567 Futures Futures Markets Futures and Forward Trading Mechanism Speculation versus Hedging Futures Pricing Foreign Exchange, stock.
Binnenlandse Francqui Leerstoel VUB Black Scholes and beyond André Farber Solvay Business School University of Brussels.
Théorie Financière Financial Options Professeur André Farber.
Risk Mitigation Services for Ads Hubert Jin, Jinsong Tan.
Derivatives Introduction to option pricing André Farber Solvay Business School University of Brussels.
Allissa Cembrook. Financial Basics  Investors purchase shares in the hopes that the company does well and will pay dividends to its shareholders.  Financial.
Financial Information Management Options Stefano Grazioli.
Lecture Presentation Software to accompany Investment Analysis and Portfolio Management Seventh Edition by Frank K. Reilly & Keith C. Brown Chapter 23.
JUMP DIFFUSION MODELS Karina Mignone Option Pricing under Jump Diffusion.
© 2008 Pearson Education Canada13.1 Chapter 13 Hedging with Financial Derivatives.
OPTION PRICING OF CRUDE OIL: AN APPLICATION OF BLACK-SCHOLES MODEL Jamaladeen Abubakar Department of mathematics and statistics Hussaaini Adamu Federal.
Financial Risk Management of Insurance Enterprises Valuing Interest Rate Options.
Derivatives and Risk Management Chapter 18  Motives for Risk Management  Derivative Securities  Using Derivatives  Fundamentals of Risk Management.
Derivatives. Basic Derivatives Forwards Futures Options Swaps Underlying Assets Interest rate based Equity based Foreign exchange Commodities A derivative.
Paola Lucantoni Financial Market Law and Regulation.
Derivative securities Fundamentals of risk management Using derivatives to reduce interest rate risk CHAPTER 18 Derivatives and Risk Management.
© Stefano Grazioli - Ask for permission for using/quoting:
1 Derivatives & Risk Management: Part II Models, valuation and risk management.
© 2007 Thomson Delmar Learning, a part of the Thomson Corporation Risk Management in Agriculture: A Guide to Futures, Options, and Swaps Lowell B. Catlett.
Derivative Financial Products Donald C. Williams Doctoral Candidate Department of Computational and Applied Mathematics, Rice University Thesis Advisors.
McGraw-Hill/Irwin Copyright © 2006 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 9 Derivatives: Futures, Options, and Swaps.
The Currency Futures and Options Markets
1 MGT 821/ECON 873 Financial Derivatives Lecture 1 Introduction.
Financial Risk Management of Insurance Enterprises Options.
© 2013 Cengage Learning. All Rights Reserved. May not be scanned, copied, or duplicated, or posted to a publicly accessible website, in whole or in part.
CHAPTER NINETEEN Options CHAPTER NINETEEN Options Cleary / Jones Investments: Analysis and Management.
Option Pricing Models: The Black-Scholes-Merton Model aka Black – Scholes Option Pricing Model (BSOPM)
Derivatives and Risk Management Chapter 18  Motives for Risk Management  Derivative Securities  Using Derivatives  Fundamentals of Risk Management.
1 Derivatives Topic #4. Futures Contracts An agreement to buy or sell an asset at a certain time in the future for a certain price Long and Short positions.
Vicentiu Covrig 1 An introduction to Derivative Instruments An introduction to Derivative Instruments (Chapter 11 Reilly and Norton in the Reading Package)
Options. INTRODUCTION One essential feature of forward contract is that once one has locked into a rate in a forward contract, he cannot benefit from.
Options Chapter 17 Jones, Investments: Analysis and Management.
Lecture 8: Finance: GBM model for share prices, futures and options, hedging, and the Black-Scholes equation Outline: GBM as a model of share prices futures.
Overview of Options – An Introduction. Options Definition The right, but not the obligation, to enter into a transaction [buy or sell] at a pre-agreed.
© Stefano Grazioli - Ask for permission for using/quoting: Stefano Grazioli.
Numerical Analysis -Applications to SIR epidemic model and Computational Finance - with MATLAB Jaepil LEE.
Financial Information Management Options Stefano Grazioli.
CHAPTER 18 Derivatives and Risk Management
Option Pricing Model The Black-Scholes-Merton Model
The Black-Scholes Model for Option Pricing
CHAPTER 18 Derivatives and Risk Management
Financial Risk Management of Insurance Enterprises
Mathematical Finance An Introduction
Options (Chapter 19).
CHAPTER 18 Derivatives and Risk Management
Derivatives and Risk Management
Derivatives and Risk Management
Presentation transcript:

- MATHEMATICAL BIOLOGY BY D A - YEON M IN # SIR Epidemics

CONTENTS - What is Mathematical epidemic modelling? -Threshold for SIR Epidemic -Code for SIR Model

What is Mathematical epidemic modelling?

Kermack and McKendrick introduced in 1927 and published their theory in a set of three articles from 1927, 1932, and Mathematical modelling To know how infectious diseases spread through a population Substantial reason of theory

A SSUMPTION The duration of the epidemic is short copared to the lifetime of its hosts. We can neglect birth and disease-unrelated death. The population is closed of constant size N.

Population : Susceptible→Infective→Removed

Threshold For SIR Epidemic

function f = SIR_model(Parameter, Tdata) global S0 I0 R0 id1 id2 ad_num a; S(1) = S0; I(1) = I0; R(1) = R0; b = Parameter(1); g = Parameter(2); tmpNt = length(Tdata); Nt = tmpNt + (tmpNt - 1)*ad_num; dt = (Tdata(end) - Tdata(1))/(Nt-1); for i=1:Nt S(i+1) = S(i) - b*S(i)*I(i)*dt; I(i+1) = I(i) + (b*S(i)*I(i) - g*I(i))*dt; R(i+1) = R(i) + g*I(i)*dt; end f = [ S(1:ad_num+1:Nt) I(1:ad_num+1:Nt) R(1:ad_num+1:Nt)]; Code For SIR Model

F INANCIAL M ATHEMATICS Call Option

C ONTENTS – What is financial mathematics? – What is derivatives? – Call option – Black Scholes model – Finite Difference Method

What is Financial Mathematics? Financial Mathematics : a field of applied mathematics, concerned with financial markets. Derive and extend the mathematical or numerical models without necessarily establishing a link to financial theory, taking observed market prices as input.

A contract that derives its value from the performance of an entity. Purposes : insuring against price movements(hedging), increasing exposure to price movements for speculation, getting access to otherwise hard-to-trade assets or markets forwards, futures, options, swaps … What is Derivatives?

A financial contract between two parties : The buyer has the right(not the obligation) to buy a commodity or financial instrument from the seller at a certain time for a certain price(the strike price) The seller has the obligation to sell the commodity or financial instrument to the buyer if the buyer decides. The buyer pays a fee (a premium) for this right. K : Strike price Call Option

Fischer Black and Myron Scholes first published in their 1973 paper, “The Pricing of Options and Corporate Liabilities” Derived a partial differential equation to estimate the price of the option over time Black-Scholes equation KEY Idea : to hedge the option by buying and selling the underlying asset To eliminate risk … delta hedging – basis of more complicated hedging strategies How we can decide price of Call option? - By Option Pricing model by Black Scholes

A SSUMPTION on the assets : (riskless rate) The rate of return on the riskless asset is constant. (random walk) The instantaneous log returns of the stock price is an infinitesimal random walk with drift- a geometric Brownian Motion, and its drift and volatility are constant. The stock does not pay a dividend. on the market: There is no arbitrage opportunity. It is possible to borrow and lend any amount, even fractional, of cash at the riskless rate and to buy and sell any amount, even fractional, of the stock. The transactions do not incur any fees or costs.

Price of Call Option by Closed Form

P ARTIAL D IFFERENTIAL E QUATION BY B LACK -S CHOLES

Finite Difference Method

Explicit Method

Implicit Method

Crank-Nicolson Method

clear; clc; S = 100 ; E = 100; r = 0.05; T = 1.0; Vm = 20; vol = 1; tol = 1.0e-6; iter = 1; maxit = 1000; d1 = (log(S/E)+(r+vol^2/2)*T)/(vol*sqrt(T)); d2 = d1-vol*sqrt(T); price = S*normcdf(d1)-E*exp(-r*T)*normcdf(d2); vega = S*sqrt(T)*normpdf(d1); fprintf('n\tvol\t\tprice\n') fprintf('%d\t%f\t%f\n', iter, vol, price) while abs(price - Vm) > tol && iter < maxit vol = vol - (price - Vm) / vega; d1 = (log(S/E)+(r+vol^2/2)*T)/(vol*sqrt(T) d2 = d1-vol*sqrt(T); price = S*normcdf(d1)-E*exp(-r*T)*normcdf(d2); vega = S*sqrt(T)*normpdf(d1); iter = iter + 1; fprintf('%d\t%f\t%f\n', iter, vol, price) end Implied_Vol = vol S: price of underlying asset, E: exercise price, R : riskless interest rate, T : maturity (year), Vm : market option price, vol : initial volatility, tol : tolerance, iter : iteration, maxit : max iteration Initial price using initial vol Partial price / partial vol Code for call option - By Newton Method Newton method