As a function of the stock price on the exercise date, what do the payoffs look like for European calls and puts?

Size: px
Start display at page:

Download "As a function of the stock price on the exercise date, what do the payoffs look like for European calls and puts?"

Transcription

1 Pricing stock options This article was adapted from Microsoft Office Excel 2007 Data Analysis and Business Modeling by Wayne L. Winston. Visit Microsoft Learning to learn more about this book. This classroom-style book was developed from a series of presentations by Wayne Winston, a well known statistician and business professor who specializes in creative, practical applications of Excel. So be prepared you may need to put your thinking cap on. In this article Overview What are call and put options? What is the difference between an American and a European option? As a function of the stock price on the exercise date, what do the payoffs look like for European calls and puts? What parameters determine the value of an option? How can I estimate the volatility of a stock based on historical data? How can I use Excel to implement the Black-Scholes formula? How do changes in key parameters change the value of a call or put option? How can I use the Black-Scholes formula to estimate a stock s volatility? I don t want somebody changing my neat option-pricing formulas. How can I protect the formulas in my worksheet so that nobody can change them? How can I use option pricing to help my company make better investment decisions? Problems Overview What are call and put options? What is the difference between an American and a European option? As a function of the stock price on the exercise date, what do the payoffs look like for European calls and puts? What parameters determine the value of an option? How can I estimate the volatility of a stock based on historical data? How can I use Excel to implement the Black-Scholes formula? How do changes in key parameters change the value of a call or put option? How can I use the Black-Scholes formula to estimate a stock s volatility? I don t want somebody changing my neat option-pricing formulas. How can I protect the formulas in my worksheet so that nobody can change them? How can I use option pricing to help my company make better investment decisions?

2 During the early 1970s, economists Fischer Black, Myron Scholes, and Robert Merton derived the Black-Scholes option-pricing formula, which enables us to derive a value for a European call or put option. Scholes and Merton were awarded the 1997 Nobel Prize in Economics for their efforts. (Black died before 1997; Nobel prizes are not awarded posthumously.) The work of these economists revolutionized corporate finance. In this chapter, I ll introduce you to their important work. NOTE For an excellent technical discussion of options, see David G. Luenberger s book Investment Science (Oxford University Press, 1997). What are call and put options? A call option gives the owner of the option the right to buy a share of stock for a price called the exercise price. A put option gives the owner of the option the right to sell a share of stock for the exercise price. What is the difference between an American and a European option? An American option can be exercised on or before a date known as the exercise date (often referred to as the expiration date). A European option can be exercised only on the exercise date. As a function of the stock price on the exercise date, what do the payoffs look like for European calls and puts? Let s look at cash flows from a six-month European call option on shares of Microsoft with an exercise price of $110. Let P equal the price of Microsoft stock in six months. The payoff from a call option on these shares is $0 if P 110 and P 110 if P<110. With a value of P below $110, we would not exercise the option. If P is larger than $110, we would exercise the option to buy stock for $110 and immediately sell the stock for P, thereby earning a profit of P 110. Figure 65-1 shows the payoff from this call option. In short, a call option pays $1 for every dollar by which the stock price exceeds the exercise price. The payoff for this call option can be written as Max(0,P 110). Notice that the call option graph in Figure 65-1 has a slope 0 for P smaller than the exercise price. Its slope is 1 for a value of P greater than the exercise price.

3 Figure 65-1 Cash flows from a call option We can show that if a stock pays no dividends, it is never optimal to exercise an American call option early. Therefore, for a non-dividend-paying stock, an American and a European call option both have the same value. Now let s look at cash flows from a six-month European put option on shares of Microsoft with an exercise price of $110. Let P equal the price of Microsoft in six months. The payoff from the put option is $0 if P 110 and P 110 if P<110. For a value of P below $110, we would buy a share of stock for P and immediately sell the stock for $110. This yields a profit of 110 P. If P is larger than $110, it would not pay to buy the stock for P and sell it for $110, so we would not exercise our option to sell the stock for $110. Figure 65-2 displays the payoff from this put option. In short, a put option pays us $1 for each dollar by which the stock price is below the exercise price. A put payoff can be written as Max(0,110 P). Note that the slope of the put payoff is 1 for P less than the exercise price, and the slope of the put payoff is 0 for a value of P greater than the exercise price. Figure 65-2 Cash flows from a put option An American put option can be exercised early, so the cash flows from an American put option cannot be determined without knowledge of the stock price at the times before the expiration date. What parameters determine the value of an option? In their derivation of the Black-Scholes option-pricing model, Black, Scholes, and Merton showed that the value of a call or put option depends on the following parameters:

4 Current stock price. Option s exercise price. Time (in years) until the option expires (referred to as the option s duration). Interest rate (per year on a compounded basis) on a risk-free investment (usually T-Bills) throughout the duration of the investment. This rate is called the risk-free rate. For example, if three-month T-Bills are paying 5 percent, the risk-free rate is computed as LN(1+0.05). (Calculating the logarithm transforms a simple interest rate into a compounded rate.) Compound interest simply means that at every instant, you are earning interest on your interest. Annual rate (as a percentage of the stock price) at which dividends are paid. If a stock pays 2 percent of its value each year in dividends, the dividend rate is Stock volatility (measured on an annual basis). An annual volatility of, for example, 30 percent means that (approximately) the standard deviation of the annual percentage changes in the stock s price is expected to be around 30 percent. During the Internet bubble of the late 1990s, the volatility of many Internet stocks exceeded 100 percent. I ll show you two ways to estimate this important parameter. How can I estimate the volatility of a stock based on historical data? To estimate the volatility of a stock based on data about the stock s monthly returns, we can proceed as follows: Determine the monthly return on the stock for a period of several years. Determine for each month LN(1+monthly return). Determine the standard deviation of LN(1+monthly return). This calculation gives us the monthly volatility. Multiply the monthly volatility by to convert monthly volatility to an annual volatility. This procedure is illustrated in the file Dellvol.xlsx, in which I estimate the annual volatility of Dell stock using monthly prices from the period August 1988 through May (See Figure 65-3, in which I ve hidden several rows of data.)

5 Figure 65-3 Computing the historical volatility for Dell Copying from cell C2 to C3:C154 the formula (B2 B3)/B3 computes each month s return on Dell stock. Then copying from D2 to D3:D154 the formula 1+C2 computes for each month 1+month s return. Next I compute LN(1+ month s return) for each month by copying from E2 to E3:E154 the formula LN(D2), and I compute the monthly volatility in cell H3 with the formula STDEV(E2:E154). Finally I compute an estimate of Dell s annual volatility with the formula SQRT(12)*H3. Dell s annual volatility is estimated to be 57.8 percent. How can I use Excel to implement the Black-Scholes formula? To apply the Black-Scholes formula in Microsoft Office Excel 2007, we need input values for the following parameters: S=Today s stock price t=duration of the option (in years) X=Exercise price r=annual risk-free rate (This rate is assumed to be continuously compounded.) σ=annual volatility of stock y=percentage of stock value paid annually in dividends Given these input values, the Black-Scholes price for a European call option can be computed as follows: Define and Then the call price C is given by Here, N(x) is the probability that a normal random variable with a mean of 0 and a σ equal to 1 is less than or equal to x. For example, N( 1)=.16,N(0)=.5, N(1)=.84, and N(1.96)=.975. A normal random variable with a mean of 0 and a standard deviation of 1 is called a standard normal. The cumulative normal probability can be computed in Excel with the NORMSDIST function. Entering NORMSDIST(x) returns the probability that a standard normal random variable is less than or equal to x. For example, entering the formula NORMSDIST( 1) in a cell will yield 0.16, which indicates that a normal random variable with a mean of 0 and a standard deviation of 1 has a 16 percent chance of assuming a value less than 1.

6 The price of a European put P may be written as In the file named Bstemp.xlsx (see Figure 65-4), I ve created a template that computes the value for a European call or put option. Enter the parameter values in B5:B10 and read the value of a European call in D13 and a European put in D14. Figure 65-4 Valuing European calls and puts NOTE Valuing American options is beyond the scope of this book. Interested readers should refer to Luenberger s excellent textbook. As an example, suppose that Cisco stock sells for $20 today and that we ve been issued a seven-year European call option. Assume that the annual volatility of Cisco stock is 50 percent, and the risk-free rate during the sevenyear period is estimated at 5 percent per year. Compounded, this translates to LN(1+.05)= Cisco does not pay dividends, so the annual dividend rate is 0. We find the value of the call option to be $ A seven-year put option with an exercise price of $24 would be worth $7.69. How do changes in key parameters change the value of a call or put option? In general, the effect of changing an input parameter on the value of a call or put is given in the following table: PARAMETER EUROPEAN CALL EUROPEAN PUT AMERICAN CALL AMERICAN PUT Stock price _ Exercise price Time to expiration?? + + Volatility Risk-free rate Dividends An increase in today s stock price always increases the value of a call and decreases the value of a put. An increase in the exercise price always increases the value of a put and decreases the value of a call.

7 An increase in the duration of an option always increases the value of an American option. In the presence of dividends, an increase in the duration of an option can either increase or decrease the value of a European option. An increase in volatility always increases option value. An increase in the risk-free rate increases the value of a call because higher rates tend to increase the growth rate of the stock price (which is good for the call). This situation more than cancels out the fact that the option payoff is worth less as a result of the higher interest rate. An increase in the risk-free rate always decreases the value of a put because the higher growth rate of the stock tends to hurt the put, as does the fact that future payoffs from the put are worth less. Again, this assumes that interest rates do not affect current stock prices, but they do. Dividends tend to reduce the growth rate of a stock price, so increased dividends reduce the value of a call and increase the value of a put. Using one-way and two-way data tables (see Chapter 15, "Sensitivity Analysis with Data Tables," for details about how to work with data tables), we can, if we want, explore the specific effects of parameter changes on the value of calls and puts. How can I use the Black-Scholes formula to estimate a stock s volatility? Earlier in this chapter, I showed how to use historical data to estimate a stock s annual volatility. The problem with a historical volatility estimate is that the analysis looks backward. What we really want is an estimate of a stock s volatility looking forward. The implied volatility approach simply estimates a stock s volatility as the volatility value that will make the Black-Scholes price match the option s market price. In short, implied volatility extracts the volatility value implied by the option s market price. We can easily use the Goal Seek command and our input parameters to compute an implied volatility. On July 22, 2003, Cisco was selling for $ An October 2003 call option with a $17.50 exercise price was selling for $1.85. This option expires on October 18 (89 days in the future). Thus, the option has a duration of 89/365= years. Cisco does not expect to pay dividends, and we assume a T-Bill rate of 5 percent and a corresponding risk-free rate of LN(1+.05)= To determine the volatility for Cisco implied by this option price, we enter the relevant parameters in cells B5:B10 of the file Ciscoimpvol.xlsx, which is shown in Figure 65-5.

8 Figure 65-5 Using implied volatility to estimate Cisco s volatility. Next we use Goal Seek (see Figure 65-6) to determine the volatility (the value in cell B10) that makes the call price (the formula in D13) hit a value of $1.85. Figure 65-6 Goal Seek settings to find implied volatility We find that this option implies an annual volatility for Cisco of 34 percent, as you can see in Figure NOTE The Web site at provides an estimate of the volatility of any stock, either historical or implied. I don t want somebody changing my neat option-pricing formulas. How can I protect the formulas in my worksheet so that nobody can change them? I m sure that you have often sent your worksheets to people who then change your carefully constructed formulas. Sometimes you want to protect your worksheets so that another user can only enter input data but not modify the worksheet s formulas. As an example, I ll show you how to protect all the formulas in our Black- Scholes template (see the file Bstemp.xlsx). We begin by unlocking all of the cells in the worksheet. Then we will lock the cells we want to protect. First click the gray box in the upper-left corner of the worksheet where the row and column headings intersect (next to the A and the 1). When you click this box, any format changes you make will affect the entire worksheet. For example, if you select a bold format after clicking this box, all of the cells in the worksheet will use the bold format. After selecting the entire worksheet, click the Font dialog box launcher (the small arrow) on the Home tab. This displays the Format Cells dialog box, shown in Figure On the Protection tab, clear the Locked box as shown in Figure 65-7, and then click OK. Now all cells in the worksheet are unlocked, which means that even if the worksheet is protected, we can still access these cells.

9 Figure 65-7 Format Cells dialog box Next select all the formulas in the worksheet. To do this, press F5, which opens the Go To dialog box. Click Special, select Formulas, and click OK. Click the Font dialog box launcher again, and on the Protection tab, check the Locked box. Checking this box locks all our formulas. Now we can protect our worksheet, which will prevent a user from changing our formulas. Click Protect Sheet in the Changes group on the Review tab. In the Protect Sheet dialog box, check the Select Unlocked Cells box, as shown in Figure This option will allow users of our template to select unlocked cells, but our formulas will be off-limits. Figure 65-8 Allowing user to access unlocked cells Now, when you click any formula, you cannot see or change its contents. Go ahead and try to mess up a formula! The final result of protecting this workbook is saved in the file Bstempprotected.xlsx.

10 How can I use option pricing to help my company make better investment decisions? Option pricing can be used to improve a company s capital budgeting or financial decision-making process. The use of option pricing to evaluate actual investment projects is called real options. The idea of real options is credited to Judy Lewent, the chief financial officer of Merck. Essentially, real options let you put an explicit value on managerial flexibility, which is often missed by traditional capital budgeting. The following two examples illustrate the concepts of real options. NOTE Refer to Luenberger s book for a more detailed discussion of real options. Let s say that we own an oil well. Today, our best guess is that the oil in the well is worth $50 million. In five years (if we own the well), we will make a decision to develop the oil well, at a cost of $70 million. A wildcatter is willing to buy the well today for $10 million. Should we sell the well? Traditional capital budgeting says that the well is worthless because the cost to develop it is more than the value of the oil in the well. But wait; in five years time, the value of the oil in the well will be different because many things (such as the global oil price) might change. There s a chance that the oil will be worth at least $70 million in five years. If the oil is worth $80 million in five years, developing the well in five years would return $10 million. Essentially, we own a five-year European call option on this well, because our payoff from the well in five years is the same as the payoff on a European call option with a stock price of $50 million, an exercise price of $70 million, and a duration of five years. We can assume an annual volatility similar to the volatility of a typical oil company stock (for example, 30 percent). We will use a T-Bill rate of 5 percent, corresponding to a risk-free rate of percent. In the file Oilwell.xlsx (see Figure 65-9), we find the value of this call option is $11.47 million, which means that we should not sell the well for $10 million. Of course, we do not know the actual volatility for this oil well. Therefore, we can use a one-way data table to determine how the value of the option depends on our volatility estimate (see Figure 65-9). From the data table, we find that as long as the oil well s volatility is at least 27 percent, our oil well "option" is worth more than $10 million.

11 Figure 65-9 Oil well real options As a second example, consider a biotech drug company that is developing a drug for a major pharmaceutical firm. The biotech company currently believes the value of the drug is $50 million. Of course, the value of the drug might drop over time. To protect against a price drop, the biotech company wants to receive a guaranteed payment of $50 million in five years. If an insurance company wants to underwrite this liability, what is a fair price to charge? Essentially, the biotech company is asking for a payment of $1 million in five years for each $1 million by which the value of the drug in five years is below $50 million. This is equivalent to a five-year put option on the value of the drug. Assuming a T-Bill rate is 5 percent and the annual volatility on comparable drug stocks is 40 percent (see the file Drugabandon.xlsx, shown in Figure 65-10), the value of this option is $10.51 million. This type of option is often referred to as an abandonment option, but it is equivalent to a put option. (We have also included a one- way data table to show how the value of the abandonment option depends on the assumed volatility, ranging from 30 to 45 percent of the drug s value.)

12 Figure Calculating an abandonment option Problems 1. Use the monthly stock returns in the file Volatility.xlsx to determine estimates of annual volatility for Intel, Microsoft, and GE. 2. A stock is selling today for $42. The stock has an annual volatility of 40 percent and the annual risk-free rate is 10 percent. What is a fair price for a six-month European call option with an exercise price of $40? How much does the current stock price have to increase in order for the purchaser of the call option to break even in six months? What is a fair price for a six-month European put option with an exercise price of $40? How much does the current stock price have to decrease in order for the purchaser of the put option to break even in six months? What level of volatility would make the $40 call option sell for $6? (Hint: Use the Goal Seek command.) 3. On September 25, 2000, JDS Uniphase stock sold for $ per share. On the same day, a $100 European put expiring on January 20, 2001, sold for $ Compute an implied volatility for JDS Uniphase stock based on this information. Use a T-Bill rate of 5 percent. 4. On August 9, 2002, Microsoft stock was selling for $48.58 per share. A $35 European call option expiring on January 17, 2003, was selling for $ Use this information to estimate the implied volatility for Microsoft stock. Use a T-Bill rate of 4 percent. 5. You have an option to buy a new plane in three years for $25 million. Your current estimate of the value of the plane is $21 million. The annual volatility for change in the plane s value is 25 percent, and the risk-free rate is 5 percent. What is the option to buy the plane worth? 6. The current price of copper is 95 cents per pound. The annual volatility for copper prices is 20 percent, and the risk-free rate is 5 percent. In one year, we have the option (if we desire) to spend $1.25 million to mine 8 million pounds of copper. The copper can be sold at whatever the copper price is in one year. It costs 85 cents to extract a pound of copper from the ground. What is the value of this situation to us? 7. We own the rights to a biotech drug. Our best estimate is that the current value of these rights is $50 million. Assuming that the annual volatility of biotech companies is 90 percent and the risk-free rate is 5 percent, what is the value of an option to sell the rights to the drug five years from now for $40 million? 8. Merck is debating whether to invest in a pioneer biotech project. They estimate that the worth of the project is $56 million. Investing in the pioneer project gives Merck the option to own, if they want, a much bigger technology that will be available in four years. If Merck does not participate in the pioneer project, they cannot own the bigger project. The bigger project will require $1.5 billion in cash four years from now. Currently, Merck estimates the net present value (NPV) of the cash flows from the bigger project to be $597 million. Assuming a risk-free rate of 10 percent and that the annual volatility for the bigger project is 35 percent, what should Merck do? (This is the problem that started the whole field of real options!) 9. Develop a worksheet that uses the following inputs to compute annual profit: Annual fixed cost Unit cost Unit price

13 Annual demand=10, *(price) Then protect the cells used to compute annual demand and annual profit.

Spreadsheet Directions

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

More information

Decision Trees: Booths

Decision Trees: Booths DECISION ANALYSIS Decision Trees: Booths Terri Donovan recorded: January, 2010 Hi. Tony has given you a challenge of setting up a spreadsheet, so you can really understand whether it s wiser to play in

More information

The Advanced Budget Project Part D The Budget Report

The Advanced Budget Project Part D The Budget Report The Advanced Budget Project Part D The Budget Report A budget is probably the most important spreadsheet you can create. A good budget will keep you focused on your ultimate financial goal and help you

More information

Two Types of Options

Two Types of Options FIN 673 Binomial Option Pricing Professor Robert B.H. Hauswald Kogod School of Business, AU Two Types of Options An option gives the holder the right, but not the obligation, to buy or sell a given quantity

More information

University of Texas at Dallas School of Management. Investment Management Spring Estimation of Systematic and Factor Risks (Due April 1)

University of Texas at Dallas School of Management. Investment Management Spring Estimation of Systematic and Factor Risks (Due April 1) University of Texas at Dallas School of Management Finance 6310 Professor Day Investment Management Spring 2008 Estimation of Systematic and Factor Risks (Due April 1) This assignment requires you to perform

More information

WEB APPENDIX 8A 7.1 ( 8.9)

WEB APPENDIX 8A 7.1 ( 8.9) WEB APPENDIX 8A CALCULATING BETA COEFFICIENTS The CAPM is an ex ante model, which means that all of the variables represent before-the-fact expected values. In particular, the beta coefficient used in

More information

January 29. Annuities

January 29. Annuities January 29 Annuities An annuity is a repeating payment, typically of a fixed amount, over a period of time. An annuity is like a loan in reverse; rather than paying a loan company, a bank or investment

More information

Advanced Corporate Finance. 5. Options (a refresher)

Advanced Corporate Finance. 5. Options (a refresher) Advanced Corporate Finance 5. Options (a refresher) Objectives of the session 1. Define options (calls and puts) 2. Analyze terminal payoff 3. Define basic strategies 4. Binomial option pricing model 5.

More information

University of Colorado at Boulder Leeds School of Business MBAX-6270 MBAX Introduction to Derivatives Part II Options Valuation

University of Colorado at Boulder Leeds School of Business MBAX-6270 MBAX Introduction to Derivatives Part II Options Valuation MBAX-6270 Introduction to Derivatives Part II Options Valuation Notation c p S 0 K T European call option price European put option price Stock price (today) Strike price Maturity of option Volatility

More information

Expectation Exercises.

Expectation Exercises. Expectation Exercises. Pages Problems 0 2,4,5,7 (you don t need to use trees, if you don t want to but they might help!), 9,-5 373 5 (you ll need to head to this page: http://phet.colorado.edu/sims/plinkoprobability/plinko-probability_en.html)

More information

Bond Amortization. amortization schedule. the PV, FV, and PMT functions. elements. macros

Bond Amortization. amortization schedule. the PV, FV, and PMT functions. elements. macros 8 Bond Amortization N LY O LEARNING OBJECTIVES a bond amortization schedule Use the PV, FV, and PMT functions Protect worksheet elements Automate processes with macros A T IO N Create E V A LU Financial

More information

Budget Estimator Tool & Budget Template

Budget Estimator Tool & Budget Template Budget Estimator Tool & Budget Template Integrated Refugee and Immigrant Services Created for you by a Yale School of Management student team IRIS BUDGET TOOLS 1 IRIS Budget Estimator and Budget Template

More information

ExcelSim 2003 Documentation

ExcelSim 2003 Documentation ExcelSim 2003 Documentation Note: The ExcelSim 2003 add-in program is copyright 2001-2003 by Timothy R. Mayes, Ph.D. It is free to use, but it is meant for educational use only. If you wish to perform

More information

Exploring Microsoft Office Excel 2007 Comprehensive Grauer Scheeren Mulbery Second Edition

Exploring Microsoft Office Excel 2007 Comprehensive Grauer Scheeren Mulbery Second Edition Exploring Microsoft Office Excel 2007 Comprehensive Grauer Scheeren Mulbery Second Edition Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies throughout the

More information

To complete this workbook, you will need the following file:

To complete this workbook, you will need the following file: CHAPTER 7 Excel More Skills 11 Create Amortization Tables Amortization tables track loan payments for the life of a loan. Each row in an amortization table tracks how much of a payment is applied to the

More information

Options, Futures and Structured Products

Options, Futures and Structured Products Options, Futures and Structured Products Jos van Bommel Aalto Period 5 2017 Options Options calls and puts are key tools of financial engineers. A call option gives the holder the right (but not the obligation)

More information

Finance 527: Lecture 31, Options V3

Finance 527: Lecture 31, Options V3 Finance 527: Lecture 31, Options V3 [John Nofsinger]: This is the third video for the options topic. And the final topic is option pricing is what we re gonna talk about. So what is the price of an option?

More information

Form 162. Form 194. Form 239

Form 162. Form 194. Form 239 Below is a list of topics that we receive calls about each year with the solutions to them detailed. New features and funds have also been added. Note: Some of the topics have more than one question so

More information

Economic Risk and Decision Analysis for Oil and Gas Industry CE School of Engineering and Technology Asian Institute of Technology

Economic Risk and Decision Analysis for Oil and Gas Industry CE School of Engineering and Technology Asian Institute of Technology Economic Risk and Decision Analysis for Oil and Gas Industry CE81.98 School of Engineering and Technology Asian Institute of Technology January Semester Presented by Dr. Thitisak Boonpramote Department

More information

Decision Trees Using TreePlan

Decision Trees Using TreePlan Decision Trees Using TreePlan 6 6. TREEPLAN OVERVIEW TreePlan is a decision tree add-in for Microsoft Excel 7 & & & 6 (Windows) and Microsoft Excel & 6 (Macintosh). TreePlan helps you build a decision

More information

DECISION SUPPORT Risk handout. Simulating Spreadsheet models

DECISION SUPPORT Risk handout. Simulating Spreadsheet models DECISION SUPPORT MODELS @ Risk handout Simulating Spreadsheet models using @RISK 1. Step 1 1.1. Open Excel and @RISK enabling any macros if prompted 1.2. There are four on-line help options available.

More information

Calculate Sums, Rates, and Percentages in Excel: Student Workbook

Calculate Sums, Rates, and Percentages in Excel: Student Workbook 2016 Calculate Sums, Rates, and Percentages in Excel: Student Workbook Created by: EVA CONSTANTARAS / Independent Consultant & Data Scientist WITH SUPPORT FROM THE WORLD BANK AND THE UK DEPARTMENT FOR

More information

Option Pricing. Simple Arbitrage Relations. Payoffs to Call and Put Options. Black-Scholes Model. Put-Call Parity. Implied Volatility

Option Pricing. Simple Arbitrage Relations. Payoffs to Call and Put Options. Black-Scholes Model. Put-Call Parity. Implied Volatility Simple Arbitrage Relations Payoffs to Call and Put Options Black-Scholes Model Put-Call Parity Implied Volatility Option Pricing Options: Definitions A call option gives the buyer the right, but not the

More information

Pricing Interest Rate Options with the Black Futures Option Model

Pricing Interest Rate Options with the Black Futures Option Model Bond Evaluation, Selection, and Management, Second Edition by R. Stafford Johnson Copyright 2010 R. Stafford Johnson APPENDIX I Pricing Interest Rate Options with the Black Futures Option Model I.1 BLACK

More information

ECON FINANCIAL ECONOMICS

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

More information

Valuing Stock Options: The Black-Scholes-Merton Model. Chapter 13

Valuing Stock Options: The Black-Scholes-Merton Model. Chapter 13 Valuing Stock Options: The Black-Scholes-Merton Model Chapter 13 1 The Black-Scholes-Merton Random Walk Assumption l Consider a stock whose price is S l In a short period of time of length t the return

More information

Global Financial Management. Option Contracts

Global Financial Management. Option Contracts Global Financial Management Option Contracts Copyright 1997 by Alon Brav, Campbell R. Harvey, Ernst Maug and Stephen Gray. All rights reserved. No part of this lecture may be reproduced without the permission

More information

Mathematical Finance Why would you need to know what an option is? Presenters Ron Grosz Patricia Parker-Davis

Mathematical Finance Why would you need to know what an option is? Presenters Ron Grosz Patricia Parker-Davis Mathematical Finance Why would you need to know what an option is? Presenters Ron Grosz Patricia Parker-Davis Employee Stock Options Some companies offer employees special stock options depending upon

More information

LET S GET REAL! Managing Strategic Investment in an Uncertain World: A Real Options Approach by Roger A. Morin, PhD

LET S GET REAL! Managing Strategic Investment in an Uncertain World: A Real Options Approach by Roger A. Morin, PhD LET S GET REAL! Managing Strategic Investment in an Uncertain World: A Real Options Approach by Roger A. Morin, PhD Robinson Economic Forecasting Conference J. Mack Robinson College of Business, Georgia

More information

Technology Assignment Calculate the Total Annual Cost

Technology Assignment Calculate the Total Annual Cost In an earlier technology assignment, you identified several details of two different health plans. In this technology assignment, you ll create a worksheet which calculates the total annual cost of medical

More information

ESG Yield Curve Calibration. User Guide

ESG Yield Curve Calibration. User Guide ESG Yield Curve Calibration User Guide CONTENT 1 Introduction... 3 2 Installation... 3 3 Demo version and Activation... 5 4 Using the application... 6 4.1 Main Menu bar... 6 4.2 Inputs... 7 4.3 Outputs...

More information

Motivating example: MCI

Motivating example: MCI Real Options - intro Real options concerns using option pricing like thinking in situations where one looks at investments in real assets. This is really a matter of creative thinking, playing the game

More information

Appendix A Financial Calculations

Appendix A Financial Calculations Derivatives Demystified: A Step-by-Step Guide to Forwards, Futures, Swaps and Options, Second Edition By Andrew M. Chisholm 010 John Wiley & Sons, Ltd. Appendix A Financial Calculations TIME VALUE OF MONEY

More information

UNIVERSITÀ DEGLI STUDI DI TORINO SCHOOL OF MANAGEMENT AND ECONOMICS SIMULATION MODELS FOR ECONOMICS. Final Report. Stop-Loss Strategy

UNIVERSITÀ DEGLI STUDI DI TORINO SCHOOL OF MANAGEMENT AND ECONOMICS SIMULATION MODELS FOR ECONOMICS. Final Report. Stop-Loss Strategy UNIVERSITÀ DEGLI STUDI DI TORINO SCHOOL OF MANAGEMENT AND ECONOMICS SIMULATION MODELS FOR ECONOMICS Final Report Stop-Loss Strategy Prof. Pietro Terna Edited by Luca Di Salvo, Giorgio Melon, Luca Pischedda

More information

INTRODUCING RISK MODELING IN CORPORATE FINANCE

INTRODUCING RISK MODELING IN CORPORATE FINANCE INTRODUCING RISK MODELING IN CORPORATE FINANCE Domingo Castelo Joaquin*, Han Bin Kang** Abstract This paper aims to introduce a simulation modeling in the context of a simplified capital budgeting problem.

More information

Effects of Parameters on Black Scholes Model for European Put option Using Taguchi L27 Method

Effects of Parameters on Black Scholes Model for European Put option Using Taguchi L27 Method Volume 119 No. 13 2018, 11-19 ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu Effects of Parameters on Black Scholes Model for European Put option Using Taguchi L27 Method Amir Ahmad

More information

Valuation of Options: Theory

Valuation of Options: Theory Valuation of Options: Theory Valuation of Options:Theory Slide 1 of 49 Outline Payoffs from options Influences on value of options Value and volatility of asset ; time available Basic issues in valuation:

More information

Using an Excel spreadsheet to calculate Andrew s 18th birthday costs

Using an Excel spreadsheet to calculate Andrew s 18th birthday costs Using an Excel spreadsheet to calculate Andrew s 18th birthday costs Open a new spreadsheet in Excel. Highlight cells A1 to J1. Prevocational Mathematics 1 of 17 Planning an event Using an Excel spreadsheet

More information

Elementary Statistics Triola, Elementary Statistics 11/e Unit 14 The Confidence Interval for Means, σ Unknown

Elementary Statistics Triola, Elementary Statistics 11/e Unit 14 The Confidence Interval for Means, σ Unknown Elementary Statistics We are now ready to begin our exploration of how we make estimates of the population mean. Before we get started, I want to emphasize the importance of having collected a representative

More information

Descriptive Statistics

Descriptive Statistics Chapter 3 Descriptive Statistics Chapter 2 presented graphical techniques for organizing and displaying data. Even though such graphical techniques allow the researcher to make some general observations

More information

Financial Functions, Data Tables, and Amortization Schedules. Chapter 4

Financial Functions, Data Tables, and Amortization Schedules. Chapter 4 Financial Functions, Data Tables, and Amortization Schedules Chapter 4 What we will cover Controlling thickness and color of outlines and borders Naming cells Using the PMT function to calculate monthly

More information

Options (2) Class 20 Financial Management,

Options (2) Class 20 Financial Management, Options (2) Class 20 Financial Management, 15.414 Today Options Option pricing Applications: Currency risk and convertible bonds Reading Brealey and Myers, Chapter 20, 21 2 Options Gives the holder the

More information

LAB 2 INSTRUCTIONS PROBABILITY DISTRIBUTIONS IN EXCEL

LAB 2 INSTRUCTIONS PROBABILITY DISTRIBUTIONS IN EXCEL LAB 2 INSTRUCTIONS PROBABILITY DISTRIBUTIONS IN EXCEL There is a wide range of probability distributions (both discrete and continuous) available in Excel. They can be accessed through the Insert Function

More information

Master Budget Excel Project

Master Budget Excel Project Master Budget Excel Project Overview: In this project, you will prepare a master budget in an Excel spreadsheet for Cascade Products Company for the year 2018, based on the materials in Ch. 7 Master Budgeting.

More information

Computing compound interest and composition of functions

Computing compound interest and composition of functions Computing compound interest and composition of functions In today s topic we will look at using EXCEL to compute compound interest. The method we will use will also allow us to discuss composition of functions.

More information

You should already have a worksheet with the Basic Plus Plan details in it as well as another plan you have chosen from ehealthinsurance.com.

You should already have a worksheet with the Basic Plus Plan details in it as well as another plan you have chosen from ehealthinsurance.com. In earlier technology assignments, you identified several details of a health plan and created a table of total cost. In this technology assignment, you ll create a worksheet which calculates the total

More information

Importing Historical Returns into Morningstar Office

Importing Historical Returns into Morningstar Office Importing Historical Returns into Morningstar Office Overview - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 What are historical returns? - - - - - - - - - - - - - - - -

More information

4. INTERMEDIATE EXCEL

4. INTERMEDIATE EXCEL Winter 2019 CS130 - Intermediate Excel 1 4. INTERMEDIATE EXCEL Winter 2019 Winter 2019 CS130 - Intermediate Excel 2 Problem 4.1 Import and format: zeus.cs.pacificu.edu/chadd/cs130w17/problem41.html For

More information

Introduction to Basic Excel Functions and Formulae Note: Basic Functions Note: Function Key(s)/Input Description 1. Sum 2. Product

Introduction to Basic Excel Functions and Formulae Note: Basic Functions Note: Function Key(s)/Input Description 1. Sum 2. Product Introduction to Basic Excel Functions and Formulae Excel has some very useful functions that you can use when working with formulae. This worksheet has been designed using Excel 2010 however the basic

More information

Chapter 17. Options and Corporate Finance. Key Concepts and Skills

Chapter 17. Options and Corporate Finance. Key Concepts and Skills Chapter 17 Options and Corporate Finance Prof. Durham Key Concepts and Skills Understand option terminology Be able to determine option payoffs and profits Understand the major determinants of option prices

More information

Excel Build a Salary Schedule 03/15/2017

Excel Build a Salary Schedule 03/15/2017 EXCEL BUILDING A SALARY SCHEDULE WEDNESDAY, 3/22/2017 3:15 PM TRACY S. LEED ACCOUNTS PAYABLE SUPERVISOR/SYSTEM ADMINISTRATOR CHESTER CO INTERMEDIATE UNIT 24 DOWNINGTOWN, PA PASBO 62 ND ANNUAL CONFERENCE

More information

Prepared By. Handaru Jati, Ph.D. Universitas Negeri Yogyakarta.

Prepared By. Handaru Jati, Ph.D. Universitas Negeri Yogyakarta. Prepared By Handaru Jati, Ph.D Universitas Negeri Yogyakarta handaru@uny.ac.id Chapter 7 Statistical Analysis with Excel Chapter Overview 7.1 Introduction 7.2 Understanding Data 7.2.1 Descriptive Statistics

More information

Loan and Bond Amortization

Loan and Bond Amortization Loan and Bond Amortization 5 chapter In this chapter you will learn: How to use the payment function to calculate payments to retire a loan How to create a loan amortization schedule How to use a what-if

More information

CASE STUDY. nineteen. Option Pricing. case study OVERVIEW. Application Overview and Model Development. Re-solve Options

CASE STUDY. nineteen. Option Pricing. case study OVERVIEW. Application Overview and Model Development. Re-solve Options CASE STUDY nineteen Option Pricing case study OVERVIEW CS19.1 CS19.2 CS19.3 CS19.4 CS19.5 CS19.6 CS19.7 Application Overview and Model Development Worksheets User Interface Procedures Re-solve Options

More information

The Binomial Approach

The Binomial Approach W E B E X T E N S I O N 6A The Binomial Approach See the Web 6A worksheet in IFM10 Ch06 Tool Kit.xls for all calculations. The example in the chapter illustrated the binomial approach. This extension explains

More information

SESAM Web user guide

SESAM Web user guide SESAM Web user guide We hope this user guide will help you in your work when you are using SESAM Web. If you have any questions or input, please do not hesitate to contact our helpdesk. Helpdesk: E-mail:

More information

Appendix to Supplement: What Determines Prices in the Futures and Options Markets?

Appendix to Supplement: What Determines Prices in the Futures and Options Markets? Appendix to Supplement: What Determines Prices in the Futures and Options Markets? 0 ne probably does need to be a rocket scientist to figure out the latest wrinkles in the pricing formulas used by professionals

More information

Math 1526 Summer 2000 Session 1

Math 1526 Summer 2000 Session 1 Math 1526 Summer 2 Session 1 Lab #2 Part #1 Rate of Change This lab will investigate the relationship between the average rate of change, the slope of a secant line, the instantaneous rate change and the

More information

Excel Tutorial 9: Working with Financial Tools and Functions TRUE/FALSE 1. The fv argument is required in the PMT function.

Excel Tutorial 9: Working with Financial Tools and Functions TRUE/FALSE 1. The fv argument is required in the PMT function. Excel Tutorial 9: Working with Financial Tools and Functions TRUE/FALSE 1. The fv argument is required in the PMT function. ANS: F PTS: 1 REF: EX 493 2. Cash flow has nothing to do with who owns the money.

More information

Chapter 6 Analyzing Accumulated Change: Integrals in Action

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

More information

TIE2140 / IE2140e Engineering Economy Tutorial 6 (Lab 2) Engineering-Economic Decision Making Process using EXCEL

TIE2140 / IE2140e Engineering Economy Tutorial 6 (Lab 2) Engineering-Economic Decision Making Process using EXCEL TIE2140 / IE2140e Engineering Economy Tutorial 6 (Lab 2) Engineering-Economic Decision Making Process using EXCEL Solutions Guide by Wang Xin, Hong Lanqing & Mei Wenjie 1. Learning Objectives In this lab-based

More information

Financial Markets & Risk

Financial Markets & Risk Financial Markets & Risk Dr Cesario MATEUS Senior Lecturer in Finance and Banking Room QA259 Department of Accounting and Finance c.mateus@greenwich.ac.uk www.cesariomateus.com Session 3 Derivatives Binomial

More information

Finance Mathematics. Part 1: Terms and their meaning.

Finance Mathematics. Part 1: Terms and their meaning. Finance Mathematics Part 1: Terms and their meaning. Watch the video describing call and put options at http://www.youtube.com/watch?v=efmtwu2yn5q and use http://www.investopedia.com or a search. Look

More information

Chapter 22: Real Options

Chapter 22: Real Options Chapter 22: Real Options-1 Chapter 22: Real Options I. Introduction to Real Options A. Basic Idea B. Valuing Real Options Basic idea: can use any of the option valuation techniques developed for financial

More information

* The Unlimited Plan costs $100 per month for as many minutes as you care to use.

* The Unlimited Plan costs $100 per month for as many minutes as you care to use. Problem: You walk into the new Herizon Wireless store, which just opened in the mall. They offer two different plans for voice (the data and text plans are separate): * The Unlimited Plan costs $100 per

More information

Foreign Exchange Risk Management at Merck: Background. Decision Models

Foreign Exchange Risk Management at Merck: Background. Decision Models Decision Models: Lecture 11 2 Decision Models Foreign Exchange Risk Management at Merck: Background Merck & Company is a producer and distributor of pharmaceutical products worldwide. Lecture 11 Using

More information

Lab 12: Population Viability Analysis- April 12, 2004 DUE: April at the beginning of lab

Lab 12: Population Viability Analysis- April 12, 2004 DUE: April at the beginning of lab Lab 12: Population Viability Analysis- April 12, 2004 DUE: April 19 2004 at the beginning of lab Procedures: A. Complete the workbook exercise (exercise 28). This is a brief exercise and provides needed

More information

Form 155. Form 162. Form 194. Form 239

Form 155. Form 162. Form 194. Form 239 Below is a list of topics that we receive calls about each year with the solutions to them detailed. New features and funds have also been added. Note: Some of the topics have more than one question so

More information

Jacob: What data do we use? Do we compile paid loss triangles for a line of business?

Jacob: What data do we use? Do we compile paid loss triangles for a line of business? PROJECT TEMPLATES FOR REGRESSION ANALYSIS APPLIED TO LOSS RESERVING BACKGROUND ON PAID LOSS TRIANGLES (The attached PDF file has better formatting.) {The paid loss triangle helps you! distinguish between

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

A Study on Numerical Solution of Black-Scholes Model

A Study on Numerical Solution of Black-Scholes Model Journal of Mathematical Finance, 8, 8, 37-38 http://www.scirp.org/journal/jmf ISSN Online: 6-44 ISSN Print: 6-434 A Study on Numerical Solution of Black-Scholes Model Md. Nurul Anwar,*, Laek Sazzad Andallah

More information

Processing a BAS using your MYOB software

Processing a BAS using your MYOB software Processing a BAS using your MYOB software Contents How to use this guide 2 1.0 Checking the accurateness of your transactions 3 1.1 Reconcile your accounts 3 1.2 Review your accounts and reports 3 1.3

More information

Chapter 22: Real Options

Chapter 22: Real Options Chapter 22: Real Options-1 Chapter 22: Real Options I. Introduction to Real Options A. Basic Idea => firms often have the ability to wait to make a capital budgeting decision => may have better information

More information

How Much Should You Pay For a Financial Derivative?

How Much Should You Pay For a Financial Derivative? City University of New York (CUNY) CUNY Academic Works Publications and Research New York City College of Technology Winter 2-26-2016 How Much Should You Pay For a Financial Derivative? Boyan Kostadinov

More information

INSURANCE Training Guide

INSURANCE Training Guide INSURANCE Training Guide Group Insurance premium calculator May 2015 Training Guide Group Insurance premium calculator Before you are able to use the Group Insurance premium calculator you must have: 1.

More information

Chapter 9. Risk Analysis and Real Options

Chapter 9. Risk Analysis and Real Options Chapter 9 Risk Analysis and Real Options Grasp and execute decision trees Practically apply real options in capital budgeting Apply scenario and sensitivity analysis Comprehend and utilize the various

More information

How to Create a Spreadsheet With Updating Stock Prices Version 2, August 2014

How to Create a Spreadsheet With Updating Stock Prices Version 2, August 2014 How to Create a Spreadsheet With Updating Stock Prices Version 2, August 2014 by Fred Brack NOTE: In December 2014, Microsoft made changes to their portfolio services online, widely derided by users. My

More information

Real Options. Katharina Lewellen Finance Theory II April 28, 2003

Real Options. Katharina Lewellen Finance Theory II April 28, 2003 Real Options Katharina Lewellen Finance Theory II April 28, 2003 Real options Managers have many options to adapt and revise decisions in response to unexpected developments. Such flexibility is clearly

More information

Medical School Revenue & Expense Budgeting Model Overview September, 2013

Medical School Revenue & Expense Budgeting Model Overview September, 2013 Medical School Revenue & Expense Budgeting Model Overview September, 2013 Important Note: This guide is designed for those users who have knowledge of the prior year s budgeting models. If you are a brand

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

Learning The Expert Allocator by Investment Technologies

Learning The Expert Allocator by Investment Technologies Learning The Expert Allocator by Investment Technologies Telephone 212/724-7535 Fax 212/208-4384 228 West 71st Street, Suite Support 7I, New Telephone York, NY 203703 203/364-9915 Fax 203/547-6164 Technical

More information

What s Normal? Chapter 8. Hitting the Curve. In This Chapter

What s Normal? Chapter 8. Hitting the Curve. In This Chapter Chapter 8 What s Normal? In This Chapter Meet the normal distribution Standard deviations and the normal distribution Excel s normal distribution-related functions A main job of statisticians is to estimate

More information

Real Options. Bernt Arne Ødegaard. 23 November 2017

Real Options. Bernt Arne Ødegaard. 23 November 2017 Real Options Bernt Arne Ødegaard 23 November 2017 1 Real Options - intro Real options concerns using option pricing like thinking in situations where one looks at investments in real assets. This is really

More information

ESD.70J Engineering Economy

ESD.70J Engineering Economy ESD.70J Engineering Economy Fall 2010 Session One Xin Zhang xinzhang@mit.edu Prof. Richard de Neufville ardent@mit.edu http://ardent.mit.edu/real_options/rocse_excel_latest/excel_class.html ESD.70J Engineering

More information

Project your expenses

Project your expenses Welcome to the Victory Cashflow worksheet. Spending just half an hour each month will ensure your budget is maintained and your finances are in order. The objective of this budget is to predict the future

More information

The School District/Joint Agreement Budget Instructions (For New Users)

The School District/Joint Agreement Budget Instructions (For New Users) The School District/Joint Agreement Budget Instructions (For New Users) (Fiscal Year 2019) Illinois State Board of Education School Business Services Division 100 North First Street Springfield, IL 62777-0001

More information

Important Concepts LECTURE 3.2: OPTION PRICING MODELS: THE BLACK-SCHOLES-MERTON MODEL. Applications of Logarithms and Exponentials in Finance

Important Concepts LECTURE 3.2: OPTION PRICING MODELS: THE BLACK-SCHOLES-MERTON MODEL. Applications of Logarithms and Exponentials in Finance Important Concepts The Black Scholes Merton (BSM) option pricing model LECTURE 3.2: OPTION PRICING MODELS: THE BLACK-SCHOLES-MERTON MODEL Black Scholes Merton Model as the Limit of the Binomial Model Origins

More information

Valuation Guide with ASC 718 (FAS123R) Reporting

Valuation Guide with ASC 718 (FAS123R) Reporting www.ezcustomsoftware.com Easy Options/ESPP Custom Valuation Guide with ASC 718 (FAS123R) Reporting Version 3.95.115 2/15/2015 2000-2015 Ez Custom Software Solutions, Inc. Easy Options/ESPP Custom - Valuation

More information

Perform this procedure to plan adjustments to the unrestricted budget either during the Annual Development or during a Quarterly Confirmation cycle.

Perform this procedure to plan adjustments to the unrestricted budget either during the Annual Development or during a Quarterly Confirmation cycle. Introduction Process and Trigger Perform this procedure to plan adjustments to the unrestricted budget either during the Annual Development or during a Quarterly Confirmation cycle. Prerequisites Budget

More information

In this chapter: Budgets and Planning Tools. Configure a budget. Report on budget versus actual figures. Export budgets.

In this chapter: Budgets and Planning Tools. Configure a budget. Report on budget versus actual figures. Export budgets. Budgets and Planning Tools In this chapter: Configure a budget Report on budget versus actual figures Export budgets Project cash flow Chapter 23 479 Tuesday, September 18, 2007 4:38:14 PM 480 P A R T

More information

DUE DATE: THURSDAY, APRIL 17TH 2:30PM

DUE DATE: THURSDAY, APRIL 17TH 2:30PM Before you do anything else, create a new Excel workbook and save it as Pd# Last Name, First Name. So for example, my file name will be Pd 4 Biddle, Amber You can save this on your virtual locker, a flash

More information

BEx Analyzer (Business Explorer Analyzer)

BEx Analyzer (Business Explorer Analyzer) BEx Analyzer (Business Explorer Analyzer) Purpose These instructions describe how to use the BEx Analyzer, which is utilized during budget development by account managers, deans, directors, vice presidents,

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

Options Markets: Introduction

Options Markets: Introduction 17-2 Options Options Markets: Introduction Derivatives are securities that get their value from the price of other securities. Derivatives are contingent claims because their payoffs depend on the value

More information

Derivative Instruments

Derivative Instruments Derivative Instruments Paris Dauphine University - Master I.E.F. (272) Autumn 2016 Jérôme MATHIS jerome.mathis@dauphine.fr (object: IEF272) http://jerome.mathis.free.fr/ief272 Slides on book: John C. Hull,

More information

Solvency Assessment and Management. Non-Life Underwriting Risk Data Request 2012 User Manual

Solvency Assessment and Management. Non-Life Underwriting Risk Data Request 2012 User Manual Solvency Assessment and Management Non-Life Underwriting Risk Data Request 2012 User Manual 03 October 2012 C O N T A C T D E T A I L S Physical Address: Riverwalk Office Park, Block B 41 Matroosberg Road

More information

Chapter 22 examined how discounted cash flow models could be adapted to value

Chapter 22 examined how discounted cash flow models could be adapted to value ch30_p826_840.qxp 12/8/11 2:05 PM Page 826 CHAPTER 30 Valuing Equity in Distressed Firms Chapter 22 examined how discounted cash flow models could be adapted to value firms with negative earnings. Most

More information

MATH4143: Scientific Computations for Finance Applications Final exam Time: 9:00 am - 12:00 noon, April 18, Student Name (print):

MATH4143: Scientific Computations for Finance Applications Final exam Time: 9:00 am - 12:00 noon, April 18, Student Name (print): MATH4143 Page 1 of 17 Winter 2007 MATH4143: Scientific Computations for Finance Applications Final exam Time: 9:00 am - 12:00 noon, April 18, 2007 Student Name (print): Student Signature: Student ID: Question

More information

Econ Financial Markets Spring 2011 Professor Robert Shiller. Problem Set 6

Econ Financial Markets Spring 2011 Professor Robert Shiller. Problem Set 6 Econ 252 - Financial Markets Spring 2011 Professor Robert Shiller Problem Set 6 Question 1 (a) How are futures and options different in terms of the risks they allow investors to protect against? (b) Consider

More information

Interest Formulas. Simple Interest

Interest Formulas. Simple Interest Interest Formulas You have $1000 that you wish to invest in a bank. You are curious how much you will have in your account after 3 years since banks typically give you back some interest. You have several

More information