9/21/2017 MIST.6060 Business Intelligence and Data Mining 1. Decision Trees. Decision trees generate models represented by trees and rules.

Size: px
Start display at page:

Download "9/21/2017 MIST.6060 Business Intelligence and Data Mining 1. Decision Trees. Decision trees generate models represented by trees and rules."

Transcription

1 9/1/017 MIST.6060 Business Inelligence and Daa Mining 1 Basic Ideas Decision Trees Decision rees generae models represened y rees and rules. Decision rees are used for oh classificaion (classificaion rees) and numeric predicion (regression rees) prolems. The wo es-known and mos widely used decision ree sysems are: CART (Classificaion and Regression Trees) y Breiman e al. (1984): Breiman L, Friedman JH, Olshen RA, Sone, CJ (1984) Classificaion and Regression Trees (Wadsworh, Belmon, CA). C4.5 y Quinlan (1993): Quinlan JR (1993) C4.5: Programs for Machine Learning (Morgan Kaufmann, San Maeo, CA). Decision ree algorihms egin wih he enire raining daase, spli he daa ino wo or more suses according o some spliing crieria, and hen repeaedly spli each suse ino smaller suses unil a sopping crierion is me. This process is called recursive pariioning. Srengh: Inerpreailiy Ailiy o ackle noisy daa Few assumpions aou daa Weakness For large daases, rees can e very complex

2 9/1/017 MIST.6060 Business Inelligence and Daa Mining A Credi Evaluaion Example Daa sored in a ank daaase: Name Age Income Educaion Occupaion Paymen Defaul Johnson 4 45,600 college manager no Davis 6 9,000 high-school self-employed yes Miller 58 36,800 high-school clerk no Young 35 37,300 college engineer no A decision ree uil ased on he ank daa: Income $31,000 < $31,000 Educaion Age elow college < 8 8 college or higher Income no defaul Occupaion < $4,000 $4,000 self- no selfemployed employed defaul Rules generaed from his decision ree: If an applican has Income $31,000 AND has a college or higher educaion, hen accep he applicaion. Wha is anoher rule ha can e derived from his decision ree?

3 9/1/017 MIST.6060 Business Inelligence and Daa Mining 3 Recursive Pariioning and Decision Trees: An Example Consider a daase ploed elow, which has wo predicor ariues, X 1 and X, and wo classes, circle and riangle. Recursive pariioning works as follows. X X 1 = X = X = X 1 X 1 <? Yes No X < 1? X < 1.5? Yes No Yes No To egin wih, for each predicor ariue, a lengh of ieraion sep (say, 0.01) and a range of he predicor values are specified (say, [0, 4] for X 1 and [0, 3] for X ; u in acual implemenaion, all numeric ariue values are normalized o range [0, 1]). Firs, he algorihm selecs an ariue, say, X 1, makes he firs rial-spli a X 1 = 0.01, and calculaes he misclassificaion rae corresponding o his rial-spli. Nex, he second rialspli is made a X 1 = 0.0 and he corresponding misclassificaion rae is calculaed. The process coninues unil i reaches he upper ound of he X 1 range. The rial-spli ha has he

4 9/1/017 MIST.6060 Business Inelligence and Daa Mining 4 smalles misclassificaion rae is hen recorded. In our case, his occurs a X 1 =. Decision rees use he majoriy rule o assign he class lael for a suse. In he suse/region specified y X 1 <, here are 15 riangles and 9 circles; while for X 1, here are 15 circles and 8 riangles. So he decision rule ased on he spli a X 1 = is if X 1 <, hen classify o riangle; oherwise classify o circle. The numer of misclassified records wih his decision is = 17. I did no really check every rial-spli o see if his is indeed he minimum-error spli for X 1, u le s assume i is. Nex, he algorihm selecs anoher ariue, X, perform he similar sep-y-sep search, and find he es rial-spli a, say, X = 0.8. The algorihm hen compares he error rae eween spliing a X 1 = and spliing a X = 0.8. Suppose spliing a X 1 = has smaller error rae. Then, he firs formal spli is deermined a X 1 =. Susequen splis follow almos he same procedure as he firs spli excep ha error raes are calculaed ased on he daa ha has een divided y he previous splis. For example, he second spli, X = 1, is deermined from he suse of he daa poins ha fall on he lef side of he verical line, X 1 = ; while he spli X = 1.5 comes from he righ side of he daa. Suppose he algorihm sops he pariioning process afer hese hree splis. The whole process can hen e represened y a ree-like srucure on he oom par, which serves as a classificaion model. In acual implemenaion, more efficien procedures for pariioning daa are used. Typically, values are firs sored for each numeric ariue; hen, rial-splis are made only a he midpoins of adjacen values. So, for a numeric ariue wih n values, only (n 1) rialsplis are examined. For a caegorical ariue where soring does no make sense, he spliing procedure ofen involves enumeraing caegorical values. Anoher simplificaion in he aove descripion is he use of misclassificaion error as he spliing crierion. In acual decision ree sysems, more sophisicaed measures are used o deermine he es spli. We will discuss some popular spliing crieria shorly. Terminology A node represens a se of daa. The enire daase is represened as a roo node. When a spli is made, several child nodes are formed. If a node is no o e spli any furher, i is called a leaf (or erminal node); oherwise, i is an inernal node (or non-erminal node). In a inary ree, each spli produces exacly wo child nodes. CART produces inary rees. C4.5 allows more han wo child nodes on each spli.

5 9/1/017 MIST.6060 Business Inelligence and Daa Mining 5 Impuriy Measures An impuriy measure, also known as a spliing crierion, is a goodness measure of a spli. I is consruced such ha afer each spli, he daa in he child nodes are purer (more homogeneous in erms of he class lael) han he daa in he paren node. Impuriy measures: Enropy (Informaion gain): firs used in C4.5. This is argualy he mos widely used impuriy measure. Gini index: used in CART Twoing rule: used in CART Chi-square: used in CHAID (chi-squared auomaic ineracion deecion) Error-ased measures. We have used an error-ased measure in he aove example o show how splis are deermined. Error-ased measures are he easies o undersand u perhaps he leas effecive one. Enropy (Informaion Gain) Consider a class ariue wih m classes. The class of each record is an oucome of a discree random variale, Y, which akes values from a se of m class laels, c,..., c }. { 1 m The proailiy disriuion of Y is denoed as P Y = c k ) = p, for k = 1,..., m, and m k = 1 k 1 pm p = p + p + + = 1. The enropy of a random variale Y is defined as ( k m H ( Y ) = pk log pk = ( p1 log p1 + p log p + + pm log k = 1 p m ). And noe ha 0log 0 = 0. The value of he enropy aains is minimum, 0, when any p k = 1 ( k = 1,..., m) (which implies all oher p k s are 0); and he value reaches is maximum, log m, when all p k s are equal o 1/m. This propery is consisen wih wha is desired y an impuriy measure when applied o pariioning daa, a spli ha reduces he enropy of he daa also reduces he impuriy of he daa. The compuaional formulas for he enropy a a given node wih n records:

6 9/1/017 MIST.6060 Business Inelligence and Daa Mining 6 Before he node is spli m nk nk H ( ) = ( )(log ) (0 log 0 = 0 ) (1) n k = 1 n where n k is he numer (coun) of records in node ha elongs o class c k. Afer node is spli ino s child nodes (suses), he enropy can e calculaed as he weighed sum over he s child nodes, as elow: H a s n j ( ) = H ( j ) () n j= 1 where j represens he jh child node, and n j is he numer of records in j (we use suscrip for efore and a for afer ). I is well known ha a spli reduces enropy; i.e., H ( ) H a ( ). When applied o daa pariioning, a spliing crierion selecs he spli ha maximizes he amoun of reducion in an impuriy measure. When he enropy is used as he impuriy measure, he ariue wih he maximum value of H ( ) H a ( ) is seleced as he spliing ariue. An Example The Weaher Daa Weaher is an imporan facor o some spors, such as aseall, ennis and golf. Tournamen organizers (and players, fans, and eors) will e ineresed in predicing wheher a mach will e played on schedule or no, ased on he weaher condiions. The following example, aken from Quinlan (1993) and also used in he WFHP ook, provides such weaher daa. I is a hypoheical daase relaed o playing golf. Oulook Temperaure Humidiy Windy Play (Class) sunny FALSE no sunny TRUE no overcas FALSE yes rainy FALSE yes rainy FALSE yes rainy TRUE no overcas TRUE yes sunny 7 95 FALSE no sunny FALSE yes rainy FALSE yes sunny TRUE yes overcas 7 90 TRUE yes overcas FALSE yes rainy TRUE no

7 9/1/017 MIST.6060 Business Inelligence and Daa Mining 7 Enropy Compuaion for he Weaher Daa A he roo node (i.e., efore any spli), 9 of he 14 records have class yes and 5 have no. Based on equaion (1), we have: H ( roo) = ( )log ( ) ( )log ( ) = (To calculae he value of log x, ener funcion =LOG(x,) in a cell in Excel.) We firs ry o spli on Oulook, which divides he daa ino hree suses: 5 records wih sunny, 4 wih overcas and 5 wih rainy. Ou of he 5 sunny records, have yes, while 3 have no. All of he 4 overcas records are yes. Three of he 5 rainy records have yes, while have no. Using equaion (), afer his spli we have: H a (roo) = = ( )[ ( )log ( ) ( )log ( )] ( )[ ( )log ( ) ( )log ( )] ( )[ ( )log ( ) ( )log ( )] (0.3571)(0.9710) (0.3571)(0.9710) = Similarly, he enropy afer he firs spli ased on Windy, Humidiy and Temperaure is 0.89, and , respecively (see calculaions in he ale elow). For numeric ariues Humidiy and Temperaure, he enropies are calculaed wih a series of rial splis as descried earlier. The spli ased on Oulook has he smalles enropy value [i.e., minimum H a (roo) ], which implies he larges gain in informaion [i.e., maximum ( H ( roo) H a (roo) )], since H (roo) is he same for any spli. Therefore, Oulook should e seleced as he ariue for he firs spli. Ariues Values #yes #no N log (#yes/n) log (#no/n) H Ni/N (Ni/N)*H No spli Oulook sunny overcas rainy Windy FALSE TRUE Humidiy <= > Temp. <= >

8 9/1/017 MIST.6060 Business Inelligence and Daa Mining 8 Missing Daa Treamen Missing daa presens wo prolems for decision rees: In he raining (daa pariioning) sage, how o assign he daa wih missing values o a suse. In he validaion (esing) and applicaion sage, how o classify an unseen record wih missing values. A decision ree-specific mehod for handling missing daa is o use weighs. Wih his mehod, a record wih missing values is assigned o each pariioned se or classified as a class wih a weigh ha is proporional o he numer of records wih known values in each suse. An example of he weighing mehod (he weaher daa wih a missing value) Oulook Temperaure Humidiy Windy Play (Class) sunny FALSE no sunny TRUE no overcas FALSE yes rainy FALSE yes rainy FALSE yes rainy TRUE no overcas TRUE yes sunny 7 95 FALSE no sunny FALSE yes rainy FALSE yes sunny TRUE yes? 7 90 TRUE yes overcas FALSE yes rainy TRUE no The following is he coun ale of he Oulook values wih respec o he class: Oulook Yes No Sum sunny 3 5 overcas rainy 3 5 Sum In he raining (model uilding) sage, when he 14 records are pariioned y Oulook, he 13 records wih known value of Oulook presen no prolem. The record wih missing Oulook value is assigned o all hree ranches, i.e., Sunny, Overcas and Rainy, wih weighs 5/13, 3/13, and 5/13, respecively. In he esing (acual classificaion) sage, if we have o classify his record a his poin ased on oulook only, hen i will e assigned o class yes wih weigh (proailiy) 8/13, and o no wih weigh 5/13.

9 9/1/017 MIST.6060 Business Inelligence and Daa Mining 9 Issue of Tree Size One can always consruc a sufficienly large ree o drive raining error rae down o zero. For example, a ree having one record on each of is leaves has zero error. Bu his ree overfis he raining daa and is no likely o work well when used for unseen daa. In general, you will oserve a relaionship eween error and ree size as shown on he char elow. Therefore, i is imporan o find an appropriae size for a decision ree. Error Bes Tree Validaion Daa Training Daa Tree Size Direc sopping rules: Sop furher spli if he curren node conains less han a specified numer of records (e.g., 10 records). Sop if furher splis do no produce a significan decrease in he overall error rae or in he value of he impuriy measure (CHAID uses his rule). Direc sopping rules are heurisics in naure and are ofen ineffecive. Find a righ sized ree y pruning. Main mehods include: Cos-complexiy pruning, which requires validaion se used in CART. Reduced-error pruning, which also requires validaion se used in C4.5. Pessimisic-error pruning, which does no require validaion se used in C4.5 (defaul). Single Sample Tes The daase is divided ino wo ses: raining (e.g., 80%) and validaion (e.g., 0%) ses. Build an overly large decision ree ased on he raining se and find he es ree size using he validaion se.

10 9/1/017 MIST.6060 Business Inelligence and Daa Mining Fold Cross-Validaion The enire daase is randomly divided ino 10 equal sized locks. Consruc a decision ree ased on 90% of he daa (raining se) and find he es ree size using remaining 10% of daa (validaion se). Repea he process for 10 imes, each using differen raining and validaion ses. Average he 10 ree sizes o ge he final ree size and hen reuild decision rees ased on he enire daase and he final ree size. An Example for Pruning The following example shows a complee and unpruned ree uil on a daase of 30 records. The class ariue has wo values: Y and N. In each node, he firs row shows he node ID, followed y he class disriuion a his node, expressed as {numer of Y s, numer of N s}. The second row indicaes he classificaion decision, and he numer of errors (i.e., misclassified records) wih he decision. For example, a node #6, which is a leaf (yellow highlighed), here are records wih Y and 4 records wih N. The classificaion decision wih his leaf, which is he majoriy class a he leaf, is N, wih errors (numer of minoriy records). The spliing informaion is irrelevan o pruning and hus is no shown in he diagram. #1: {15, 15} Y or N, 15 #: {5, 4} Y, 4 #3: {, 3} N, #4: {8, 8} Y or N, 8 #5: {3, 0} Y, 0 #6: {, 4} N, #7: {, 1} Y, 1 #8: {0, } N, 0 #9: {5, 8} N, 5 #10: {3, 0} Y, 0 #11: {5, 4} Y, 4 #1: {0, 4} N, 0 #13: {4, 1} Y, 1 #14: {1, 3} N, 1

11 9/1/017 MIST.6060 Business Inelligence and Daa Mining 11 Suree and Branch A suree refers o a pruned ree, which has he same roo as he unpruned ree; a ranch refers o a segmen of he ree, rooed a an inernal node, ha can e a candidae for pruning. In oher words, a suree is oained y pruning off one or more ranches from he unpruned ree. For example, a ranch rooed a node 9 includes nodes 9, 11, 1, 13 and 14. If his ranch is pruned off (o conain node 9 only) from he unpruned ree, he pruned ree, which is a suree of he unpruned ree, consiss of nodes 1 hrough 10. Cos-Complexiy Pruning In cos-complexiy pruning (CCP), he cos refers o he misclassificaion errors and he complexiy refers o he ree size. The cos-complexiy is a measure of radeoff eween error and ree size, which can e wrien as: cos-complexiy raio = increase in errors due o pruning decrease in ree size due o pruning. In general, a smaller cos-complexiy raio suggess eiher a smaller increase in errors and/or a larger decrease in ree size, which are desirale. Le B e a ranch rooed a an inernal node. For example, B 9 is he ranch rooed a node 9, which includes nodes 9, 11, 1, 13 and 14. Le E() e he numer of errors, i.e., misclassified records (minoriy records), if a classificaion decision is made a node. For example, E ( 9) = 5. Le E ( B ) e he numer of errors if classificaion decision is ased on ranch B. This implies ha E ( B ) is he sum of errors made y all leaves in B. For example, E ( B 9 ) = =. Finally, le L e he numer of leaves in B. For example, L = 9 3. The cos-complexiy raio for evaluaing pruning of ranch B ino node can e formally defined as: E( ) E( B ) α =. L 1 The cos-complexiy raio α can e inerpreed as he cos per exra leaf. For example, E(9) E( B9 ) 5 ( ) α 9 = = = 1.5. L The cos-complexiy pruning (CCP) procedure firs calculaes he value of α for each ranch, rooed a each differen inernal node, of he unpruned ree. The ranch ha has smalles value of α is hen pruned (why smalles?), yielding he firs pruned suree. Nex, he values of α are compued again, u ased on he las pruned ree; his will prune away anoher ranch. Repeaing his process will progressively produce a series of surees, each nesed wihin he previous one. Each suree produced in his procedure is opimal wih respec o size; ha is, no oher suree of he same size would have lower error rae han he one oained y he cos-complexiy pruning procedure.

12 9/1/017 MIST.6060 Business Inelligence and Daa Mining 1 To illusrae he CCP procedure wih he aove example, we firs calculae α s ased on he unpruned ree: 15 ( ) α 1 = = Similarly, α =, α = 3 1, α 4 =, α = , and α 11 =. Since α 3 is he smalles, we prune he ranch B 3 ino leaf node 3. This resuls in he suree elow: #1: {15, 15} Y or N, 15 #: {5, 4} Y, 4 #3: {, 3} N, #4: {8, 8} Y or N, 8 #5: {3, 0} Y, 0 #6: {, 4} N, #9: {5, 8} N, 5 #10: {3, 0} Y, 0 #11: {5, 4} Y, 4 #1: {0, 4} N, 0 #13: {4, 1} Y, 1 #14: {1, 3} N, 1 Nex, we calculae α s again, u ased on his pruned ree, as elow: 15 ( ) α 1 = = Similarly, α =, α =, α = 1. 5, and α =. Now, α 1 and α 9 are ied for he smalles. We can randomly selec eiher node 1 or node 9. However, pruning a node 1 desroys he whole ree srucure. Suppose we don wan o go ha far a his ime. So we selec and prune off ranch B 9 ino leaf node 9. This resuls in a suree conaining nodes 1,, 3, 4, 5, 6, 9 and 10. This process coninues unil i reaches he roo node. The CCP procedure generaes a series of pruned rees. However, which one should e seleced as he final ree for use in classificaion of unseen records? To answer his quesion,

13 9/1/017 MIST.6060 Business Inelligence and Daa Mining 13 we need validaion daa (which are no used in growing he unpruned ree). We use each suree generaed y CCP o classify records in he validaion se, and record he corresponding validaion errors. We will see a paern like he char shown on page 9. The final pruned ree will e he one ha has he lowes validaion error. Noe ha a 10-fold (or any fold) cross-validaion can e used for he same purpose, where he final ree size is he average ree size of he 10 validaion resuls.

Bond Prices and Interest Rates

Bond Prices and Interest Rates Winer erm 1999 Bond rice Handou age 1 of 4 Bond rices and Ineres Raes A bond is an IOU. ha is, a bond is a promise o pay, in he fuure, fixed amouns ha are saed on he bond. he ineres rae ha a bond acually

More information

Appendix B: DETAILS ABOUT THE SIMULATION MODEL. contained in lookup tables that are all calculated on an auxiliary spreadsheet.

Appendix B: DETAILS ABOUT THE SIMULATION MODEL. contained in lookup tables that are all calculated on an auxiliary spreadsheet. Appendix B: DETAILS ABOUT THE SIMULATION MODEL The simulaion model is carried ou on one spreadshee and has five modules, four of which are conained in lookup ables ha are all calculaed on an auxiliary

More information

Latent Semantic Indexing

Latent Semantic Indexing Laen Semanic Indexing Vecor Space Rerieval migh lead o poor rerieval Unrelaed documens migh be included in he answer se Relevan documens ha do no conain a leas one index erm are no rerieved Reasoning rerieval

More information

INSTITUTE OF ACTUARIES OF INDIA

INSTITUTE OF ACTUARIES OF INDIA INSTITUTE OF ACTUARIES OF INDIA EXAMINATIONS 9 h November 2010 Subjec CT6 Saisical Mehods Time allowed: Three Hours (10.00 13.00 Hrs.) Toal Marks: 100 INSTRUCTIONS TO THE CANDIDATES 1. Please read he insrucions

More information

R e. Y R, X R, u e, and. Use the attached excel spreadsheets to

R e. Y R, X R, u e, and. Use the attached excel spreadsheets to HW # Saisical Financial Modeling ( P Theodossiou) 1 The following are annual reurns for US finance socks (F) and he S&P500 socks index (M) Year Reurn Finance Socks Reurn S&P500 Year Reurn Finance Socks

More information

Documentation: Philadelphia Fed's Real-Time Data Set for Macroeconomists First-, Second-, and Third-Release Values

Documentation: Philadelphia Fed's Real-Time Data Set for Macroeconomists First-, Second-, and Third-Release Values Documenaion: Philadelphia Fed's Real-Time Daa Se for Macroeconomiss Firs-, Second-, and Third-Release Values Las Updaed: December 16, 2013 1. Inroducion We documen our compuaional mehods for consrucing

More information

Ma 093 and MA 117A - Exponential Models. Topic 1 Compound Interest

Ma 093 and MA 117A - Exponential Models. Topic 1 Compound Interest Ma 093 and MA 117A - Eponenial Models Topic 1 Compound Ineres 15) Compound Ineres A person invess $7000 a 10% ineres compounded annuall. a) Find an equaion for he value of he invesmen afer ears. = a* b

More information

2. Quantity and price measures in macroeconomic statistics 2.1. Long-run deflation? As typical price indexes, Figure 2-1 depicts the GDP deflator,

2. Quantity and price measures in macroeconomic statistics 2.1. Long-run deflation? As typical price indexes, Figure 2-1 depicts the GDP deflator, 1 2. Quaniy and price measures in macroeconomic saisics 2.1. Long-run deflaion? As ypical price indexes, Figure 2-1 depics he GD deflaor, he Consumer rice ndex (C), and he Corporae Goods rice ndex (CG)

More information

Data Mining Anomaly Detection. Lecture Notes for Chapter 10. Introduction to Data Mining

Data Mining Anomaly Detection. Lecture Notes for Chapter 10. Introduction to Data Mining Daa Mining Anomaly Deecion Lecure Noes for Chaper 10 Inroducion o Daa Mining by Tan, Seinbach, Kumar Tan,Seinbach, Kumar Inroducion o Daa Mining 4/18/2004 1 Anomaly/Oulier Deecion Wha are anomalies/ouliers?

More information

Data Mining Anomaly Detection. Lecture Notes for Chapter 10. Introduction to Data Mining

Data Mining Anomaly Detection. Lecture Notes for Chapter 10. Introduction to Data Mining Daa Mining Anomaly Deecion Lecure Noes for Chaper 10 Inroducion o Daa Mining by Tan, Seinbach, Kumar Tan,Seinbach, Kumar Inroducion o Daa Mining 4/18/2004 1 Anomaly/Oulier Deecion Wha are anomalies/ouliers?

More information

Introduction. Enterprises and background. chapter

Introduction. Enterprises and background. chapter NACE: High-Growh Inroducion Enerprises and background 18 chaper High-Growh Enerprises 8 8.1 Definiion A variey of approaches can be considered as providing he basis for defining high-growh enerprises.

More information

4452 Mathematical Modeling Lecture 17: Modeling of Data: Linear Regression

4452 Mathematical Modeling Lecture 17: Modeling of Data: Linear Regression Mah Modeling Lecure 17: Modeling of Daa: Linear Regression Page 1 5 Mahemaical Modeling Lecure 17: Modeling of Daa: Linear Regression Inroducion In modeling of daa, we are given a se of daa poins, and

More information

If You Are No Longer Able to Work

If You Are No Longer Able to Work If You Are No Longer Able o Work NY STRS A Guide for Making Disabiliy Reiremen Decisions INTRODUCTION If you re forced o sop working because of a serious illness or injury, you and your family will be

More information

Empirical analysis on China money multiplier

Empirical analysis on China money multiplier Aug. 2009, Volume 8, No.8 (Serial No.74) Chinese Business Review, ISSN 1537-1506, USA Empirical analysis on China money muliplier SHANG Hua-juan (Financial School, Shanghai Universiy of Finance and Economics,

More information

Problem Set 1 Answers. a. The computer is a final good produced and sold in Hence, 2006 GDP increases by $2,000.

Problem Set 1 Answers. a. The computer is a final good produced and sold in Hence, 2006 GDP increases by $2,000. Social Analysis 10 Spring 2006 Problem Se 1 Answers Quesion 1 a. The compuer is a final good produced and sold in 2006. Hence, 2006 GDP increases by $2,000. b. The bread is a final good sold in 2006. 2006

More information

Objectives for Exponential Functions Activity

Objectives for Exponential Functions Activity Objecives for Recognize siuaions having a consan percen change as exponenial Creae an exponenial model given wo poins Creae and inerpre an exponenial model in a conex Compound ineres problems Perform exponenial

More information

Economics 602 Macroeconomic Theory and Policy Problem Set 9 Professor Sanjay Chugh Spring 2012

Economics 602 Macroeconomic Theory and Policy Problem Set 9 Professor Sanjay Chugh Spring 2012 Deparmen of Applied Economics Johns Hopkins Universiy Economics 602 Macroeconomic Theory and Policy Prolem Se 9 Professor Sanjay Chugh Spring 2012 1. Sock, Bonds, Bills, and he Financial Acceleraor. In

More information

San Francisco State University ECON 560 Summer 2018 Problem set 3 Due Monday, July 23

San Francisco State University ECON 560 Summer 2018 Problem set 3 Due Monday, July 23 San Francisco Sae Universiy Michael Bar ECON 56 Summer 28 Problem se 3 Due Monday, July 23 Name Assignmen Rules. Homework assignmens mus be yped. For insrucions on how o ype equaions and mah objecs please

More information

a. If Y is 1,000, M is 100, and the growth rate of nominal money is 1 percent, what must i and P be?

a. If Y is 1,000, M is 100, and the growth rate of nominal money is 1 percent, what must i and P be? Problem Se 4 ECN 101 Inermediae Macroeconomics SOLUTIONS Numerical Quesions 1. Assume ha he demand for real money balance (M/P) is M/P = 0.6-100i, where is naional income and i is he nominal ineres rae.

More information

This specification describes the models that are used to forecast

This specification describes the models that are used to forecast PCE and CPI Inflaion Differenials: Convering Inflaion Forecass Model Specificaion By Craig S. Hakkio This specificaion describes he models ha are used o forecas he inflaion differenial. The 14 forecass

More information

Variable selection for heavy-duty vehicle battery failure prognostics using random survival forests

Variable selection for heavy-duty vehicle battery failure prognostics using random survival forests Variable selecion for heavy-duy vehicle baery failure prognosics using random survival foress Sergii Voronov, Daniel Jung, and Erik Frisk 3,,3 Deparmen of Elecrical Engineering, Linköping Universiy, Linköping,

More information

Dynamic Programming Applications. Capacity Expansion

Dynamic Programming Applications. Capacity Expansion Dynamic Programming Applicaions Capaciy Expansion Objecives To discuss he Capaciy Expansion Problem To explain and develop recursive equaions for boh backward approach and forward approach To demonsrae

More information

UCLA Department of Economics Fall PhD. Qualifying Exam in Macroeconomic Theory

UCLA Department of Economics Fall PhD. Qualifying Exam in Macroeconomic Theory UCLA Deparmen of Economics Fall 2016 PhD. Qualifying Exam in Macroeconomic Theory Insrucions: This exam consiss of hree pars, and you are o complee each par. Answer each par in a separae bluebook. All

More information

Multiple Choice Questions Solutions are provided directly when you do the online tests.

Multiple Choice Questions Solutions are provided directly when you do the online tests. SOLUTIONS Muliple Choice Quesions Soluions are provided direcly when you do he online ess. Numerical Quesions 1. Nominal and Real GDP Suppose han an economy consiss of only 2 ypes of producs: compuers

More information

FINAL EXAM EC26102: MONEY, BANKING AND FINANCIAL MARKETS MAY 11, 2004

FINAL EXAM EC26102: MONEY, BANKING AND FINANCIAL MARKETS MAY 11, 2004 FINAL EXAM EC26102: MONEY, BANKING AND FINANCIAL MARKETS MAY 11, 2004 This exam has 50 quesions on 14 pages. Before you begin, please check o make sure ha your copy has all 50 quesions and all 14 pages.

More information

ANSWER ALL QUESTIONS. CHAPTERS 6-9; (Blanchard)

ANSWER ALL QUESTIONS. CHAPTERS 6-9; (Blanchard) ANSWER ALL QUESTIONS CHAPTERS 6-9; 18-20 (Blanchard) Quesion 1 Discuss in deail he following: a) The sacrifice raio b) Okun s law c) The neuraliy of money d) Bargaining power e) NAIRU f) Wage indexaion

More information

1 Purpose of the paper

1 Purpose of the paper Moneary Economics 2 F.C. Bagliano - Sepember 2017 Noes on: F.X. Diebold and C. Li, Forecasing he erm srucure of governmen bond yields, Journal of Economerics, 2006 1 Purpose of he paper The paper presens

More information

Pricing Vulnerable American Options. April 16, Peter Klein. and. Jun (James) Yang. Simon Fraser University. Burnaby, B.C. V5A 1S6.

Pricing Vulnerable American Options. April 16, Peter Klein. and. Jun (James) Yang. Simon Fraser University. Burnaby, B.C. V5A 1S6. Pricing ulnerable American Opions April 16, 2007 Peer Klein and Jun (James) Yang imon Fraser Universiy Burnaby, B.C. 5A 16 pklein@sfu.ca (604) 268-7922 Pricing ulnerable American Opions Absrac We exend

More information

Description of the CBOE Russell 2000 BuyWrite Index (BXR SM )

Description of the CBOE Russell 2000 BuyWrite Index (BXR SM ) Descripion of he CBOE Russell 2000 BuyWrie Index (BXR SM ) Inroducion. The CBOE Russell 2000 BuyWrie Index (BXR SM ) is a benchmark index designed o rack he performance of a hypoheical a-he-money buy-wrie

More information

Description of the CBOE S&P 500 2% OTM BuyWrite Index (BXY SM )

Description of the CBOE S&P 500 2% OTM BuyWrite Index (BXY SM ) Descripion of he CBOE S&P 500 2% OTM BuyWrie Index (BXY SM ) Inroducion. The CBOE S&P 500 2% OTM BuyWrie Index (BXY SM ) is a benchmark index designed o rack he performance of a hypoheical 2% ou-of-he-money

More information

Advanced Forecasting Techniques and Models: Time-Series Forecasts

Advanced Forecasting Techniques and Models: Time-Series Forecasts Advanced Forecasing Techniques and Models: Time-Series Forecass Shor Examples Series using Risk Simulaor For more informaion please visi: www.realopionsvaluaion.com or conac us a: admin@realopionsvaluaion.com

More information

Population growth and intra-specific competition in duckweed

Population growth and intra-specific competition in duckweed Populaion growh and inra-specific compeiion in duckweed We will use a species of floaing aquaic plan o invesigae principles of populaion growh and inra-specific compeiion, in oher words densiy-dependence.

More information

CHAPTER 3 How to Calculate Present Values. Answers to Practice Questions

CHAPTER 3 How to Calculate Present Values. Answers to Practice Questions CHAPTER 3 How o Calculae Presen Values Answers o Pracice Quesions. a. PV $00/.0 0 $90.53 b. PV $00/.3 0 $9.46 c. PV $00/.5 5 $ 3.5 d. PV $00/. + $00/. + $00/. 3 $40.8. a. DF + r 0.905 r 0.050 0.50% b.

More information

Key Formulas. From Larson/Farber Elementary Statistics: Picturing the World, Fifth Edition 2012 Prentice Hall. Standard Score: CHAPTER 3.

Key Formulas. From Larson/Farber Elementary Statistics: Picturing the World, Fifth Edition 2012 Prentice Hall. Standard Score: CHAPTER 3. Key Formulas From Larson/Farber Elemenary Saisics: Picuring he World, Fifh Ediion 01 Prenice Hall CHAPTER Class Widh = Range of daa Number of classes 1round up o nex convenien number 1Lower class limi

More information

Financial Econometrics Jeffrey R. Russell Midterm Winter 2011

Financial Econometrics Jeffrey R. Russell Midterm Winter 2011 Name Financial Economerics Jeffrey R. Russell Miderm Winer 2011 You have 2 hours o complee he exam. Use can use a calculaor. Try o fi all your work in he space provided. If you find you need more space

More information

Evaluating Projects under Uncertainty

Evaluating Projects under Uncertainty Evaluaing Projecs under Uncerainy March 17, 4 1 Projec risk = possible variaion in cash flows 2 1 Commonly used measure of projec risk is he variabiliy of he reurn 3 Mehods of dealing wih uncerainy in

More information

You should turn in (at least) FOUR bluebooks, one (or more, if needed) bluebook(s) for each question.

You should turn in (at least) FOUR bluebooks, one (or more, if needed) bluebook(s) for each question. UCLA Deparmen of Economics Spring 05 PhD. Qualifying Exam in Macroeconomic Theory Insrucions: This exam consiss of hree pars, and each par is worh 0 poins. Pars and have one quesion each, and Par 3 has

More information

Web Usage Patterns Using Association Rules and Markov Chains

Web Usage Patterns Using Association Rules and Markov Chains Web Usage Paerns Using Associaion Rules and Markov hains handrakasem Rajabha Universiy, Thailand amnas.cru@gmail.com Absrac - The objecive of his research is o illusrae he probabiliy of web page using

More information

Exponential Functions Last update: February 2008

Exponential Functions Last update: February 2008 Eponenial Funcions Las updae: February 2008 Secion 1: Percen Growh and Decay Any quaniy ha increases or decreases by a consan percenage is said o change eponenially. Le's look a a few eamples o undersand

More information

DEBT INSTRUMENTS AND MARKETS

DEBT INSTRUMENTS AND MARKETS DEBT INSTRUMENTS AND MARKETS Zeroes and Coupon Bonds Zeroes and Coupon Bonds Ouline and Suggesed Reading Ouline Zero-coupon bonds Coupon bonds Bond replicaion No-arbirage price relaionships Zero raes Buzzwords

More information

MA Advanced Macro, 2016 (Karl Whelan) 1

MA Advanced Macro, 2016 (Karl Whelan) 1 MA Advanced Macro, 2016 (Karl Whelan) 1 The Calvo Model of Price Rigidiy The form of price rigidiy faced by he Calvo firm is as follows. Each period, only a random fracion (1 ) of firms are able o rese

More information

Portfolio investments accounted for the largest outflow of SEK 77.5 billion in the financial account, which gave a net outflow of SEK billion.

Portfolio investments accounted for the largest outflow of SEK 77.5 billion in the financial account, which gave a net outflow of SEK billion. BALANCE OF PAYMENTS DATE: 27-11-27 PUBLISHER: Saisics Sweden Balance of Paymens and Financial Markes (BFM) Maria Falk +46 8 6 94 72, maria.falk@scb.se Camilla Bergeling +46 8 6 942 6, camilla.bergeling@scb.se

More information

(1 + Nominal Yield) = (1 + Real Yield) (1 + Expected Inflation Rate) (1 + Inflation Risk Premium)

(1 + Nominal Yield) = (1 + Real Yield) (1 + Expected Inflation Rate) (1 + Inflation Risk Premium) 5. Inflaion-linked bonds Inflaion is an economic erm ha describes he general rise in prices of goods and services. As prices rise, a uni of money can buy less goods and services. Hence, inflaion is an

More information

Technological progress breakthrough inventions. Dr hab. Joanna Siwińska-Gorzelak

Technological progress breakthrough inventions. Dr hab. Joanna Siwińska-Gorzelak Technological progress breakhrough invenions Dr hab. Joanna Siwińska-Gorzelak Inroducion Afer The Economis : Solow has shown, ha accumulaion of capial alone canno yield lasing progress. Wha can? Anyhing

More information

OFFICIAL INFORMATION OF THE CZECH NATIONAL BANK of 24 October 2017

OFFICIAL INFORMATION OF THE CZECH NATIONAL BANK of 24 October 2017 OFFICIAL INFORMATION OF THE CZECH NATIONAL BANK of 24 Ocober 2017 regarding Aricles 23, 24 and 25 of Ac No. 6/1993 Coll., on he Czech Naional Bank, as amended, and regarding Decree No. 253/2013 Coll.,

More information

Optimal Early Exercise of Vulnerable American Options

Optimal Early Exercise of Vulnerable American Options Opimal Early Exercise of Vulnerable American Opions March 15, 2008 This paper is preliminary and incomplee. Opimal Early Exercise of Vulnerable American Opions Absrac We analyze he effec of credi risk

More information

2001 CSO Building ALB & Gender Blended Tables

2001 CSO Building ALB & Gender Blended Tables Appendix J-2 2001 CSO Building ALB & Gender Blended Tables 1. Naming Convenion. The following mehod is used o idenify he 84 specific ables wihin his memo. a. Templae. 2001 CSO (Sex) Smoking Type Basis.

More information

Unemployment and Phillips curve

Unemployment and Phillips curve Unemploymen and Phillips curve 2 of The Naural Rae of Unemploymen and he Phillips Curve Figure 1 Inflaion versus Unemploymen in he Unied Saes, 1900 o 1960 During he period 1900 o 1960 in he Unied Saes,

More information

Final Exam Answers Exchange Rate Economics

Final Exam Answers Exchange Rate Economics Kiel Insiu für Welwirhschaf Advanced Sudies in Inernaional Economic Policy Research Spring 2005 Menzie D. Chinn Final Exam Answers Exchange Rae Economics This exam is 1 ½ hours long. Answer all quesions.

More information

A Method for Estimating the Change in Terminal Value Required to Increase IRR

A Method for Estimating the Change in Terminal Value Required to Increase IRR A Mehod for Esimaing he Change in Terminal Value Required o Increase IRR Ausin M. Long, III, MPA, CPA, JD * Alignmen Capial Group 11940 Jollyville Road Suie 330-N Ausin, TX 78759 512-506-8299 (Phone) 512-996-0970

More information

BEHAVIOR VISUALIZATION OF AUTONOMOUS TRADING AGENTS

BEHAVIOR VISUALIZATION OF AUTONOMOUS TRADING AGENTS BEHAVIOR VISUALIZATIO OF AUTOOMOUS TRADIG AGETS Tomoharu akashima, Hiroko Kiano, Hisao Ishibuchi College of Engineering Osaka Prefecure Universiy Gakuen-cho 1-1, Sakai, Osaka 599-8531, Japan {nakashi,

More information

The Mathematics Of Stock Option Valuation - Part Four Deriving The Black-Scholes Model Via Partial Differential Equations

The Mathematics Of Stock Option Valuation - Part Four Deriving The Black-Scholes Model Via Partial Differential Equations The Mahemaics Of Sock Opion Valuaion - Par Four Deriving The Black-Scholes Model Via Parial Differenial Equaions Gary Schurman, MBE, CFA Ocober 1 In Par One we explained why valuing a call opion as a sand-alone

More information

Organize your work as follows (see book): Chapter 3 Engineering Solutions. 3.4 and 3.5 Problem Presentation

Organize your work as follows (see book): Chapter 3 Engineering Solutions. 3.4 and 3.5 Problem Presentation Chaper Engineering Soluions.4 and.5 Problem Presenaion Organize your work as follows (see book): Problem Saemen Theory and Assumpions Soluion Verificaion Tools: Pencil and Paper See Fig.. in Book or use

More information

Supplement to Models for Quantifying Risk, 5 th Edition Cunningham, Herzog, and London

Supplement to Models for Quantifying Risk, 5 th Edition Cunningham, Herzog, and London Supplemen o Models for Quanifying Risk, 5 h Ediion Cunningham, Herzog, and London We have received inpu ha our ex is no always clear abou he disincion beween a full gross premium and an expense augmened

More information

Market and Information Economics

Market and Information Economics Marke and Informaion Economics Preliminary Examinaion Deparmen of Agriculural Economics Texas A&M Universiy May 2015 Insrucions: This examinaion consiss of six quesions. You mus answer he firs quesion

More information

t=1 C t e δt, and the tc t v t i t=1 C t (1 + i) t = n tc t (1 + i) t C t (1 + i) t = C t vi

t=1 C t e δt, and the tc t v t i t=1 C t (1 + i) t = n tc t (1 + i) t C t (1 + i) t = C t vi Exam 4 is Th. April 24. You are allowed 13 shees of noes and a calculaor. ch. 7: 137) Unless old oherwise, duraion refers o Macaulay duraion. The duraion of a single cashflow is he ime remaining unil mauriy,

More information

A Note on Missing Data Effects on the Hausman (1978) Simultaneity Test:

A Note on Missing Data Effects on the Hausman (1978) Simultaneity Test: A Noe on Missing Daa Effecs on he Hausman (978) Simulaneiy Tes: Some Mone Carlo Resuls. Dikaios Tserkezos and Konsaninos P. Tsagarakis Deparmen of Economics, Universiy of Cree, Universiy Campus, 7400,

More information

Economic Growth Continued: From Solow to Ramsey

Economic Growth Continued: From Solow to Ramsey Economic Growh Coninued: From Solow o Ramsey J. Bradford DeLong May 2008 Choosing a Naional Savings Rae Wha can we say abou economic policy and long-run growh? To keep maers simple, le us assume ha he

More information

a) No constraints on import- export, no limit on reservoir, all water in the first period The monopoly optimisation problem is:

a) No constraints on import- export, no limit on reservoir, all water in the first period The monopoly optimisation problem is: Monopoly and rade Monopoly conrol impors, bu akes expor price as given. a No consrains on impor- expor, no limi on reservoir, all waer in he firs period he monopoly opimisaion problem is: Max p ( x x +

More information

Watch out for the impact of Scottish independence opinion polls on UK s borrowing costs

Watch out for the impact of Scottish independence opinion polls on UK s borrowing costs Wach ou for he impac of Scoish independence opinion polls on UK s borrowing coss Cosas Milas (Universiy of Liverpool; email: cosas.milas@liverpool.ac.uk) and Tim Worrall (Universiy of Edinburgh; email:

More information

Transaction Codes Guide

Transaction Codes Guide Appendix Transacion Codes Guide Oracle Uiliies Work and Asse Managemen conains several ransacion logs ha are used by he sysem o record changes o cerain informaion in he daabase. Transacion Logs provide

More information

USE REAL-LIFE DATA TO MOTIVATE YOUR STUDENTS 1

USE REAL-LIFE DATA TO MOTIVATE YOUR STUDENTS 1 USE REAL-LIFE DATA TO MOTIVATE YOUR STUDENTS 1 Rober E. Kowalczk and Adam O. Hausknech Universi of Massachuses Darmouh Mahemaics Deparmen, 285 Old Wespor Road, N. Darmouh, MA 2747-23 rkowalczk@umassd.edu

More information

LIDSTONE IN THE CONTINUOUS CASE by. Ragnar Norberg

LIDSTONE IN THE CONTINUOUS CASE by. Ragnar Norberg LIDSTONE IN THE CONTINUOUS CASE by Ragnar Norberg Absrac A generalized version of he classical Lidsone heorem, which deals wih he dependency of reserves on echnical basis and conrac erms, is proved in

More information

An Incentive-Based, Multi-Period Decision Model for Hierarchical Systems

An Incentive-Based, Multi-Period Decision Model for Hierarchical Systems Wernz C. and Deshmukh A. An Incenive-Based Muli-Period Decision Model for Hierarchical Sysems Proceedings of he 3 rd Inernaional Conference on Global Inerdependence and Decision Sciences (ICGIDS) pp. 84-88

More information

Macroeconomics II THE AD-AS MODEL. A Road Map

Macroeconomics II THE AD-AS MODEL. A Road Map Macroeconomics II Class 4 THE AD-AS MODEL Class 8 A Road Map THE AD-AS MODEL: MICROFOUNDATIONS 1. Aggregae Supply 1.1 The Long-Run AS Curve 1.2 rice and Wage Sickiness 2.1 Aggregae Demand 2.2 Equilibrium

More information

Macroeconomics. Part 3 Macroeconomics of Financial Markets. Lecture 8 Investment: basic concepts

Macroeconomics. Part 3 Macroeconomics of Financial Markets. Lecture 8 Investment: basic concepts Macroeconomics Par 3 Macroeconomics of Financial Markes Lecure 8 Invesmen: basic conceps Moivaion General equilibrium Ramsey and OLG models have very simple assumpions ha invesmen ino producion capial

More information

CHAPTER CHAPTER26. Fiscal Policy: A Summing Up. Prepared by: Fernando Quijano and Yvonn Quijano

CHAPTER CHAPTER26. Fiscal Policy: A Summing Up. Prepared by: Fernando Quijano and Yvonn Quijano Fiscal Policy: A Summing Up Prepared by: Fernando Quijano and vonn Quijano CHAPTER CHAPTER26 2006 Prenice Hall usiness Publishing Macroeconomics, 4/e Olivier lanchard Chaper 26: Fiscal Policy: A Summing

More information

Suggested Template for Rolling Schemes for inclusion in the future price regulation of Dublin Airport

Suggested Template for Rolling Schemes for inclusion in the future price regulation of Dublin Airport Suggesed Templae for Rolling Schemes for inclusion in he fuure price regulaion of Dublin Airpor. In line wih sandard inernaional regulaory pracice, he regime operaed since 00 by he Commission fixes in

More information

Process of convergence dr Joanna Wolszczak-Derlacz. Lecture 4 and 5 Solow growth model (a)

Process of convergence dr Joanna Wolszczak-Derlacz. Lecture 4 and 5 Solow growth model (a) Process of convergence dr Joanna Wolszczak-Derlacz ecure 4 and 5 Solow growh model a Solow growh model Rober Solow "A Conribuion o he Theory of Economic Growh." Quarerly Journal of Economics 70 February

More information

Open-High-Low-Close Candlestick Plot (Statlet)

Open-High-Low-Close Candlestick Plot (Statlet) Open-High-Low-Close Candlesick Plo (Sale) STATGRAPHICS Rev. 7/28/2015 Summary... 1 Daa Inpu... 2 Sale... 3 References... 5 Summary The Open-High-Low-Close Candlesick Plo Sale is designed o plo securiy

More information

Chapter Outline CHAPTER

Chapter Outline CHAPTER 8-0 8-1 Chaper Ouline CHAPTER 8 Sraegy and Analysis in Using Ne Presen Value 8.1 Decision Trees 8.2 Sensiiviy Analysis, Scenario Analysis, and Break-Even Analysis 8.3 Mone Carlo Simulaion 8. Opions 8.5

More information

Solve each equation Solve each equation. lne 38. Solve each equation.

Solve each equation Solve each equation. lne 38. Solve each equation. WS- Eponen/Log Review Day This should be done WITHOUT using your calculaor. Solve each equaion.. Simplify... n y y9. 7 7. Change each equaion o logarihmic form. 7.. 9.. 0. 9 Change each equaion o eponenial

More information

COOPERATION WITH TIME-INCONSISTENCY. Extended Abstract for LMSC09

COOPERATION WITH TIME-INCONSISTENCY. Extended Abstract for LMSC09 COOPERATION WITH TIME-INCONSISTENCY Exended Absrac for LMSC09 By Nicola Dimiri Professor of Economics Faculy of Economics Universiy of Siena Piazza S. Francesco 7 53100 Siena Ialy Dynamic games have proven

More information

Finance Solutions to Problem Set #6: Demand Estimation and Forecasting

Finance Solutions to Problem Set #6: Demand Estimation and Forecasting Finance 30210 Soluions o Problem Se #6: Demand Esimaion and Forecasing 1) Consider he following regression for Ice Cream sales (in housands) as a funcion of price in dollars per pin. My daa is aken from

More information

STATIONERY REQUIREMENTS SPECIAL REQUIREMENTS 20 Page booklet List of statistical formulae New Cambridge Elementary Statistical Tables

STATIONERY REQUIREMENTS SPECIAL REQUIREMENTS 20 Page booklet List of statistical formulae New Cambridge Elementary Statistical Tables ECONOMICS RIPOS Par I Friday 7 June 005 9 Paper Quaniaive Mehods in Economics his exam comprises four secions. Secions A and B are on Mahemaics; Secions C and D are on Saisics. You should do he appropriae

More information

Core issue: there are limits or restrictions that each policy-setting authority places on the actions of the other

Core issue: there are limits or restrictions that each policy-setting authority places on the actions of the other FISCAL AND MONETARY INTERACTIONS: PRESENT-VALUE ANALYSIS NOVEMBER 20, 2014 Inroducion CONSOLIDATED GOVERNMENT BUDGET Core issue: here are limis or resricions ha each policy-seing auhoriy places on he acions

More information

ECONOMIC GROWTH. Student Assessment. Macroeconomics II. Class 1

ECONOMIC GROWTH. Student Assessment. Macroeconomics II. Class 1 Suden Assessmen You will be graded on he basis of In-class aciviies (quizzes worh 30 poins) which can be replaced wih he number of marks from he regular uorial IF i is >=30 (capped a 30, i.e. marks from

More information

7 pages 1. Hull and White Generalized model. Ismail Laachir. March 1, Model Presentation 1

7 pages 1. Hull and White Generalized model. Ismail Laachir. March 1, Model Presentation 1 7 pages 1 Hull and Whie Generalized model Ismail Laachir March 1, 212 Conens 1 Model Presenaion 1 2 Calibraion of he model 3 2.1 Fiing he iniial yield curve................... 3 2.2 Fiing he caple implied

More information

Robust localization algorithms for an autonomous campus tour guide. Richard Thrapp Christian Westbrook Devika Subramanian.

Robust localization algorithms for an autonomous campus tour guide. Richard Thrapp Christian Westbrook Devika Subramanian. Robus localizaion algorihms for an auonomous campus our guide Richard Thrapp Chrisian Wesbrook Devika Subramanian Rice Universiy Presened a ICRA 200 Ouline The ask and is echnical challenges The localizaion

More information

DYNAMIC ECONOMETRIC MODELS Vol. 7 Nicolaus Copernicus University Toruń Krzysztof Jajuga Wrocław University of Economics

DYNAMIC ECONOMETRIC MODELS Vol. 7 Nicolaus Copernicus University Toruń Krzysztof Jajuga Wrocław University of Economics DYNAMIC ECONOMETRIC MODELS Vol. 7 Nicolaus Copernicus Universiy Toruń 2006 Krzyszof Jajuga Wrocław Universiy of Economics Ineres Rae Modeling and Tools of Financial Economerics 1. Financial Economerics

More information

The Economic Impact of the Proposed Gasoline Tax Cut In Connecticut

The Economic Impact of the Proposed Gasoline Tax Cut In Connecticut The Economic Impac of he Proposed Gasoline Tax Cu In Connecicu By Hemana Shresha, Research Assisan Bobur Alimov, Research Assisan Sanley McMillen, Manager, Research Projecs June 21, 2000 CONNECTICUT CENTER

More information

Macroeconomics II A dynamic approach to short run economic fluctuations. The DAD/DAS model.

Macroeconomics II A dynamic approach to short run economic fluctuations. The DAD/DAS model. Macroeconomics II A dynamic approach o shor run economic flucuaions. The DAD/DAS model. Par 2. The demand side of he model he dynamic aggregae demand (DAD) Inflaion and dynamics in he shor run So far,

More information

The relation between U.S. money growth and inflation: evidence from a band pass filter. Abstract

The relation between U.S. money growth and inflation: evidence from a band pass filter. Abstract The relaion beween U.S. money growh and inflaion: evidence from a band pass filer Gary Shelley Dep. of Economics Finance; Eas Tennessee Sae Universiy Frederick Wallace Dep. of Managemen Markeing; Prairie

More information

Midterm Exam. Use the end of month price data for the S&P 500 index in the table below to answer the following questions.

Midterm Exam. Use the end of month price data for the S&P 500 index in the table below to answer the following questions. Universiy of Washingon Winer 00 Deparmen of Economics Eric Zivo Economics 483 Miderm Exam This is a closed book and closed noe exam. However, you are allowed one page of handwrien noes. Answer all quesions

More information

ACE 564 Spring Lecture 9. Violations of Basic Assumptions II: Heteroskedasticity. by Professor Scott H. Irwin

ACE 564 Spring Lecture 9. Violations of Basic Assumptions II: Heteroskedasticity. by Professor Scott H. Irwin ACE 564 Spring 006 Lecure 9 Violaions of Basic Assumpions II: Heeroskedasiciy by Professor Sco H. Irwin Readings: Griffihs, Hill and Judge. "Heeroskedasic Errors, Chaper 5 in Learning and Pracicing Economerics

More information

MATH 373 Test 4 Spring 2017 May 5, 2017

MATH 373 Test 4 Spring 2017 May 5, 2017 MATH 373 Tes 4 Spring 017 May 5, 017 1. The Bell Life Insurance Company has a wo year annuiy where i has promised o pay Elizabeh 5,000 a he end of each year for he nex wo years. Bell wans o absoluely mach

More information

Fundamental Basic. Fundamentals. Fundamental PV Principle. Time Value of Money. Fundamental. Chapter 2. How to Calculate Present Values

Fundamental Basic. Fundamentals. Fundamental PV Principle. Time Value of Money. Fundamental. Chapter 2. How to Calculate Present Values McGraw-Hill/Irwin Chaper 2 How o Calculae Presen Values Principles of Corporae Finance Tenh Ediion Slides by Mahew Will And Bo Sjö 22 Copyrigh 2 by he McGraw-Hill Companies, Inc. All righs reserved. Fundamenal

More information

Data-Driven Demand Learning and Dynamic Pricing Strategies in Competitive Markets

Data-Driven Demand Learning and Dynamic Pricing Strategies in Competitive Markets Daa-Driven Demand Learning and Dynamic Pricing Sraegies in Compeiive Markes Pricing Sraegies & Dynamic Programming Rainer Schlosser, Marin Boissier, Mahias Uflacker Hasso Planer Insiue (EPIC) April 30,

More information

CENTRO DE ESTUDIOS MONETARIOS Y FINANCIEROS T. J. KEHOE MACROECONOMICS I WINTER 2011 PROBLEM SET #6

CENTRO DE ESTUDIOS MONETARIOS Y FINANCIEROS T. J. KEHOE MACROECONOMICS I WINTER 2011 PROBLEM SET #6 CENTRO DE ESTUDIOS MONETARIOS Y FINANCIEROS T J KEHOE MACROECONOMICS I WINTER PROBLEM SET #6 This quesion requires you o apply he Hodrick-Presco filer o he ime series for macroeconomic variables for he

More information

Jarrow-Lando-Turnbull model

Jarrow-Lando-Turnbull model Jarrow-Lando-urnbull model Characerisics Credi raing dynamics is represened by a Markov chain. Defaul is modelled as he firs ime a coninuous ime Markov chain wih K saes hiing he absorbing sae K defaul

More information

Stock Market Behaviour Around Profit Warning Announcements

Stock Market Behaviour Around Profit Warning Announcements Sock Marke Behaviour Around Profi Warning Announcemens Henryk Gurgul Conen 1. Moivaion 2. Review of exising evidence 3. Main conjecures 4. Daa and preliminary resuls 5. GARCH relaed mehodology 6. Empirical

More information

OPTIMUM FISCAL AND MONETARY POLICY USING THE MONETARY OVERLAPPING GENERATION MODELS

OPTIMUM FISCAL AND MONETARY POLICY USING THE MONETARY OVERLAPPING GENERATION MODELS Kuwai Chaper of Arabian Journal of Business and Managemen Review Vol. 3, No.6; Feb. 2014 OPTIMUM FISCAL AND MONETARY POLICY USING THE MONETARY OVERLAPPING GENERATION MODELS Ayoub Faramarzi 1, Dr.Rahim

More information

Bank of Japan Review. Performance of Core Indicators of Japan s Consumer Price Index. November Introduction 2015-E-7

Bank of Japan Review. Performance of Core Indicators of Japan s Consumer Price Index. November Introduction 2015-E-7 Bank of Japan Review 5-E-7 Performance of Core Indicaors of Japan s Consumer Price Index Moneary Affairs Deparmen Shigenori Shirasuka November 5 The Bank of Japan (BOJ), in conducing moneary policy, employs

More information

1. Interest Rate Gap. Duration

1. Interest Rate Gap. Duration . Ineres Rae Gap. Duraion Mauriy Gap Problem. Mauriy Gap A bank invess $00 million in 3-year, 0% fixed rae bonds (assume hese are all asses) In he same ime, i issuses $90 million in -year, 0% percen fixed

More information

Forecasting method under the introduction. of a day of the week index to the daily. shipping data of sanitary materials

Forecasting method under the introduction. of a day of the week index to the daily. shipping data of sanitary materials Journal of Compuaions & Modelling, vol.7, no., 07, 5-68 ISSN: 79-765 (prin), 79-8850 (online) Scienpress Ld, 07 Forecasing mehod under he inroducion of a day of he week index o he daily shipping daa of

More information

Models of Default Risk

Models of Default Risk Models of Defaul Risk Models of Defaul Risk 1/29 Inroducion We consider wo general approaches o modelling defaul risk, a risk characerizing almos all xed-income securiies. The srucural approach was developed

More information

Extending the Danish CPI with scanner data - A stepwise analysis

Extending the Danish CPI with scanner data - A stepwise analysis Saisics Denmark, Prices and Consumpion Jonas Mikkelsen JOM@DST.dk Exending he Danish CPI wih scanner daa - A sepwise analysis Inroducion In 2011 Saisics Denmark (DST) go access o scanner daa from he larges

More information

INSTITUTE OF ACTUARIES OF INDIA

INSTITUTE OF ACTUARIES OF INDIA INSIUE OF ACUARIES OF INDIA EAMINAIONS 23 rd May 2011 Subjec S6 Finance and Invesmen B ime allowed: hree hours (9.45* 13.00 Hrs) oal Marks: 100 INSRUCIONS O HE CANDIDAES 1. Please read he insrucions on

More information

NASDAQ-100 DIVIDEND POINT INDEX. Index Methodology

NASDAQ-100 DIVIDEND POINT INDEX. Index Methodology NASDAQ-100 DIVIDEND POINT INDEX Index Mehodology April 2017 TABLE OF CONTENTS TABLE OF CONTENTS 1. Inroducion 2. Index calculaion 2.1 Formula 2.1.1 dividends 2.1.2 Rese of he index value 2.2 Oher adjusmens

More information

1.2 A CATALOG OF ESSENTIAL FUNCTIONS

1.2 A CATALOG OF ESSENTIAL FUNCTIONS SETION. A ATALOG OF ESSENTIAL FUNTIONS. A ATALOG OF ESSENTIAL FUNTIONS V Pla he Video V EXAMPLE A Table liss he average carbon dioide level in he amosphere, measured in pars per million a Mauna Loa Observaor

More information