Backpropagation. Deep Learning Theory and Applications. Kevin Moon Guy Wolf

Size: px
Start display at page:

Download "Backpropagation. Deep Learning Theory and Applications. Kevin Moon Guy Wolf"

Transcription

1 Deep Learning Theory and Applications Backpropagation Kevin Moon Guy Wolf CPSC/AMTH 663

2 Calculating the gradients We showed how neural networks can learn weights and biases Gradient descent/stochastic gradient descent How do we calculate the gradients at each node in each layer? Answer: Backpropagation!

3 Backpropagation history Introduced in 1970 s Unappreciated until 1986 paper by David Rumelhart, Geoffrey Hinton, and Ronald Wiiams Described several neural networks where backpropagation works far faster than earlier learning approaches Today, backpropagation is the workhorse of learning neural networks

4 Why study backpropagation? Why not treat backpropagation like a black box? Reason: to obtain understanding Backpropagation provides an expression for, the partial derivative of the cost function CC wrt any weight ww (or bias bb) I.e., backpropagation tes us how quickly the cost changes when changing weights and biases backpropagation gives us detailed insights into how changing the weights and biases changes the overa network

5 Outline 1. Preliminaries Matrix multiplication for computing applications Cost function assumptions Hadamard product Error at the node 2. Four fundamental equations of backpropagation The equations Proofs 3. The backpropagation algorithm 4. Is backpropagation fast? 5. Backpropagation: the big picture

6 Preliminaries CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation

7 Matrix multiplication for computing activations CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation ww jjjj = the weight for the connection from the kkth neuron in the ( 1)th layer to the jjth neuron in the th layer Question: why is jj the output neuron and kk the input neuron? Answer: it simplifies the matrix notation

8 Matrix multiplication for computing activations CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation bb jj = bias of the jjth neuron in the th layer aa jj = activation (output) of the jjth neuron in the th layer

9 Matrix multiplication for computing activations CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation The activation aa jj of the jjth neuron the th layer is related to the activations in the ( 1)th layer: aa jj = σσ kk ww jjjj aa 1 kk + bb jj

10 Matrix multiplication for computing activations CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation aa jj = σσ Rewrite in matrix form: ww = a weight matrix for layer kk ww jjjj aa 1 kk + bb jj Entries are the weights connecting to the th layer of neurons; i.e. the entry in the jjth row and kkth column is ww jjjj Bias vector bb for the th layer (bb jj in the jjth component) Activation vector aa for the th layer (aa jj in the jjth component)

11 Matrix multiplication for computing activations Vectorizing a function Apply the function element-wise I.e., components of σσ(vv) are σσ vv jj = σσ(vv jj ) Example: ff xx = xx 2 Vectorized form of ff has the foowing effect: ff 2 3 = ff(2) ff(3) = 4 9 Activation computation aa = σσ ww aa 1 + bb

12 Matrix multiplication for computing activations CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation Activation computation aa = σσ ww aa 1 + bb Provides a global view of layer-layer relationships Apply weight matrix to activations, add bias vector, then apply σσ Easier and more succinct than neuron-by-neuron view Matrix and vector computations are fast We wi also use an intermediate quantity: zz = ww aa 1 + bb zz is the weighted input to the neurons in layer aa = σσ zz zz jj is the weighted input to the activation function for neuron jj in layer

13 Cost function assumptions Goal of backpropagation: compute the partial derivatives and of the cost function CC to any weight ww or bias bb in the network Example cost function: quadratic cost CC = 1 2nn yy xx aa LL xx 2 xx Sum is over training examples xx yy(xx) is the corresponding desired output aa LL (xx) is the vector of activation output of the network when xx is input (LL denotes the number of layers in the network)

14 Cost function assumptions Example cost function: quadratic cost CC = 1 2nn yy xx aa LL xx 2 xx Assumption 1: The cost function can be written as an average CC = 1 nn xx CC xx over cost functions CC xx for individual training examples xx. CC xx = 1 yy 2 aall 2 for quadratic cost Reason: backpropagation can calculate partial derivatives CC xx and CC xx for a single training example and recovered by averaging over training examples For notational simplicity, we assume xx is fixed and drop the subscript (i.e., write CC xx as CC for now)

15 Cost function assumptions Assumption 2: Cost can be written as a function of the neural network outputs For quadratic cost: CC = 1 2 yy aall 2 = 1 2 jj yy ii aa jj 2

16 Cost function assumptions Assumption 1: The cost function can be written as an average CC = 1 nn xx CC xx over cost functions CC xx for individual training examples xx. Assumption 2: Cost can be written as a function of the neural network outputs.

17 Hadamard product Let ss and tt be vectors with same dimension ss tt is the elementwise product of the vectors ss tt jj = ss jj tt jj Example: = = 3 8 Referred to as the Hadamard product or Schur product

18 Error at the node CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation Backpropagation helps us understand how changing weights and biases in a network changes the cost function I.e., backpropagation gives us the partial derivatives We first introduce an intermediate quantity δδ jj to ww jjjj ww jjjj and bb jj δδ jj is the error in the jjth neuron and the th layer Backpropagation enables us to compute δδ jj which we wi relate and bb jj

19 Error at the node As input comes in, the demon adds a little change zz jj to the neuron s weighted input Output becomes σσ zz jj + zz jj Change propagates through later layers causing zz jj zz jj change in cost

20 Error at the node Change zz jj results in zz jj zz jj change in cost Case 1: zz jj is large (either pos. or neg.) Demon can lower cost a lot by choosing zz jj with opposite sign of zz jj Case 2: zz jj is close to zero Can t decrease cost much by perturbing zz jj

21 Error at the node Case 1: zz jj is large (either pos. or neg.) Demon can lower cost a lot by choosing zz jj with opposite sign of zz jj Case 2: zz jj is close to zero Can t decrease cost much by perturbing zz jj zz jj is a measure of error in this heuristic sense Define δδ jj = zz jj (δδ is the vectorized form) Similar results obtained by considering aa jj

22 Four fundamental equations of backpropagation CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation

23 First fundamental equation of backpropagation CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation Error in the output layer: δδ jj LL = aa jj LL σσ zz jj LL aa jj LL measures how fast cost CC changes as function of jjth output Example: if CC doesn t depend much on neuron jj, then δδ jj LL wi be sma σσ zz LL jj measures how fast the activation function σσ LL changes at zz jj

24 First fundamental equation of backpropagation CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation Error in the output layer: δδ jj LL = aa jj LL σσ zz jj LL A parts are easily computable zz jj LL is computed while computing behavior of the network σσ zz jj LL foows easily aa jj LL depends on cost function Quadratic cost: CC = 1 2 jj yy jj aa jj LL 2 aa jj LL = aa jj LL yy jj

25 First fundamental equation of backpropagation CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation Error in the output layer: δδ jj LL = aa jj LL σσ zz jj LL Matrix-based form: δδ LL = aa CC σσ zz LL aa CC jj = LL aa jj Example: quadratic cost δδ LL = aa LL yy σσ zz LL Easily computed using Numpy

26 Second fundamental equation of backpropagation Error in the th layer in terms of the error in the next layer: δδ = ww +1 TT δδ +1 σσ (zz ) Interpretation Suppose δδ +1 is known Applying ww +1 TT moves the error backward through the network Gives a measure of the error at the output of the th layer Taking the Hadamard product σσ (zz ) moves the error backward through the activation function in layer Gives the error δδ in the weighted input to layer

27 Second fundamental equation of backpropagation First fundamental equation δδ LL = aa CC σσ zz LL Second fundamental equation δδ = ww +1 TT δδ +1 σσ (zz ) Can compute the error δδ for any error using these equations 1. Compute δδ LL 2. Compute δδ LL 1 3. Compute δδ LL 2 4. And so on a the way back through the network

28 Third fundamental equation of backpropagation CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation The rate of change of the cost wrt any bias in the network bb jj = δδ jj Easily computed from previous equations

29 Fourth fundamental equation of backpropagation CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation The rate of change of the cost wrt any weight in the network Easily computed ww jjjj = aa kk 1 δδ jj Simplified notation: = aa in δδ out aa in is the activation of the neuron input to the weight ww δδout is the error of the neuron output from the weight ww

30 Fourth fundamental equation of backpropagation CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation The rate of change of the cost wrt any weight in the network = aa in δδ out If aa in 0, the gradient wi be sma The weight learns slowly (i.e. doesn t change much during gradient descent) I.e., weights output from low-activation neurons learn slowly

31 Insights from the 4 fundamental equations Consider the output layer: δδ jj LL = aa jj LL σσ zz jj LL σσ becomes very flat when σσ 0 or 1 σσ zz jj LL 0 weight in final layer wi learn slowly if output neuron is saturated (i.e. 0 or 1)

32 Insights from the 4 fundamental equations Similar insights for other layers: Weights wi learn slowly if either the input neuron is low activation or the output neuron has saturated (i.e. low or high activation) The 4 fundamental equations hold for any activation functions We can use these equations to design activation functions E.g., choose σσ s.t. σσ is always positive and never close to zero (we see this later in the course) Understanding the 4 fundamental equations can guide us designing neural networks

33 The 4 fundamental equations of backpropagation CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation 1. δδ LL = aa CC σσ zz LL 2. δδ = ww +1 TT δδ +1 σσ (zz ) bb jj = δδ jj ww jjjj = aa kk 1 δδ jj

34 Proofs of the 4 fundamental equations of backpropagation A are based on the chain rule from multivariable calculus

35 Proof of the 1 st equation By definition: δδ jj LL = zz jj LL Use multivariate chain rule to obtain: δδ LL jj = LL aa jj LL LL aa jj zz jj Reca that aa jj LL = σσ zz jj LL δδ jj LL = aa jj LL σσ zz jj LL

36 Proof of the 2 nd equation Rewrite δδ jj in terms of δδ kk +1 using chain rule δδ jj = Differentiating gives zz kk +1 zz jj kk zz kk +1 zz jj δδ kk +1 = ww +1 kkkk σσ (zz jj ) δδ jj = kk ww +1 kkkk δδ +1 kk σσ (zz jj )

37 Proof of the 3 rd equation Use multivariate chain rule to obtain: bb = zz jj jj zz jj bb jj zz jj bb jj = 1 bb jj = δδ jj

38 Proof of the 4 th equation Use multivariate chain rule to obtain: = zz jj zz jj ww jjkk ww jjkk zz jj ww jjjj = aa kk 1 ww jjjj = aa kk 1 δδ jj

39 The backpropagation algorithm CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation

40 The backpropagation algorithm Backpropagation equations provide a way for computing the gradient of the cost function 1. Input xx: Set the activation aa 1 for the input layer 2. Feedforward: For each = 2,3,, LL, compute zz = ww aa 1 + bb and aa = σσ zz 3. Output error δδ LL : Compute δδ LL = aa CC σσ zz LL 4. Backpropagate the error: For each = LL 1, LL 2,, 2 compute δδ = ww +1 TT δδ +1 σσ (zz ) 5. Output: The cost function gradient is and bb jj = δδ jj ww jjjj = aa 1 δδ jj

41 Backpropagation with SGD Backpropagation computes the gradient of the cost function for a single training example CC = CC xx Typicay, backpropagation is combined with a learning algorithm such as stochastic gradient descent

42 Backpropagation with SGD 1. Input a set of training examples 2. For each training example xx: Set the input activation aa xx,1 and do the foowing: Feedforward: For each = 2,3,, LL compute zz xx, = ww aa xx, 1 + bb and aa xx, = σσ zz xx, Output error δδ xx,ll : Compute δδ xx,ll = aa CC σσ zz xx,ll Backpropagate the error: For each = LL 1, LL 2,, 2 compute δδ xx, = ww +1 TT δδ xx,+1 σσ (zz xx, ) 3. Gradient descent: for each = LL, LL 1,, 2 update weights ww ww ηη mm xx δδ xx, aa xx, 1 TT and the biases bb bb ηη mm xx δδ xx,

43 Is backpropagation fast? CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Backpropagation

44 Is backpropagation fast? Consider an alternative approach Suppose you try to not use the chain rule and regard the cost as a function of the weights directly CC = CC(ww) Could use the approximation: CC ww + εεee jj CC(ww) ww jj εε > 0 is a sma positive number ee jj = unit vector in jjth direction I.e., we re estimating the derivatives directly Same idea applies to biases Advantage: very easy to implement Disadvantage: very slow εε

45 Is backpropagation fast? Could use the approximation: CC ww + εεee jj ww jj εε Why is it slow? CC(ww) Suppose we have a miion weights in our network For each weight ww jj we compute CC ww + εεee jj Thus we need to compute the cost function a miion times, requiring a miion forward passes through the network per training sample In contrast, backpropagation computes a the partial derivatives using one forward and backward pass ww jj Roughly equivalent to two forward passes miion passes

46 Backpropagation: the big picture Can we build more intuition? How could someone have discovered backpropagation?

47 Improved intuition Suppose we make a sma change ww jjjj to weight ww jjjj

48 Improved intuition Suppose we make a sma change ww jjjj to weight ww jjjj This causes a change in the output activation of the corresponding neuron

49 Improved intuition Suppose we make a sma change ww jjjj to weight ww jjjj This causes a change in the output activation of the corresponding neuron This causes a change in a activations in the next layer

50 Improved intuition Suppose we make a sma change ww jjjj to weight ww jjjj This causes a change in the output activation of the corresponding neuron This causes a change in a activations in the next layer And so on until the final layer

51 Improved intuition Change in cost CC is related to the change ww jjjj : CC ww jjjj Possible approach to calculate ww jjjj ww jjjj change in ww jjjj propagates to change CC Use easily computable quantities along the way is to track how a sma

52 Improved intuition Relate change in weight ww jjjj aa jj aa jj ww jjjj to change in activation aa jj ww jjjj Change in activation aa jj causes changes in a activations of the ( + 1)th layer Focus on aa qq +1 :

53 Improved intuition Focus on aa qq +1 : aa qq +1 aa qq +1 aa jj aa qq +1 aa qq +1 aa jj aa jj aa jj ww jjjj ww jjjj

54 Improved Intuition Extending this to multiple layers gives: CC aall mm LL LL 1 aa mm aa aa +1 qq nn aa jj aa jj ww jjjj ww jjjj Represents the change in CC due to a change in ww jjjj through one path in the network A paths: CC mmmm qq aa mm LL aa mm LL aa nn LL 1 aa qq +1 aa jj aa jj ww jjjj ww jjjj

55 Improved Intuition = ww jjjj Interpretation mmmm qq aa mm LL aa mm LL aa nn LL 1 aa qq +1 aa jj aa jj ww jjjj Every edge between two neurons is associated with a rate factor (the partial derivative of one neuron s activation wrt the other neuron s activation) The rate factor for a path is the product of rate factors along the path Total rate of change is the sum of the rate factors of a paths from the initial weight to final cost

56 Improved Intuition Single path 1. Could derive expressions for each partial derivative Use calculus 2. Write sums as matrix multiplications 3. Simplify Result is backpropagation

57 Discovering backpropagation 1. Foow the long approach just described 2. Discover there are some obvious simplifications 3. Make those simplifications to get a shorter proof 4. Repeat until you get the nice proof we did in class

58 Further reading Nielsen book, chapter 2 Goodfeow et al., section 6.5

WRITTEN PRELIMINARY Ph.D. EXAMINATION. Department of Applied Economics. January 28, Consumer Behavior and Household Economics.

WRITTEN PRELIMINARY Ph.D. EXAMINATION. Department of Applied Economics. January 28, Consumer Behavior and Household Economics. WRITTEN PRELIMINARY Ph.D. EXAMINATION Department of Applied Economics January 28, 2016 Consumer Behavior and Household Economics Instructions Identify yourself by your code letter, not your name, on each

More information

Financial Market Models. Lecture 1. One-period model of financial markets & hedging problems. Imperial College Business School

Financial Market Models. Lecture 1. One-period model of financial markets & hedging problems. Imperial College Business School Financial Market Models Lecture One-period model of financial markets & hedging problems One-period model of financial markets a 4 2a 3 3a 3 a 3 -a 4 2 Aims of section Introduce one-period model with finite

More information

Alg2A Factoring and Equations Review Packet

Alg2A Factoring and Equations Review Packet 1 Factoring using GCF: Take the greatest common factor (GCF) for the numerical coefficient. When choosing the GCF for the variables, if all the terms have a common variable, take the one with the lowest

More information

ECONS 424 STRATEGY AND GAME THEORY MIDTERM EXAM #2 ANSWER KEY

ECONS 424 STRATEGY AND GAME THEORY MIDTERM EXAM #2 ANSWER KEY ECONS 44 STRATEGY AND GAE THEORY IDTER EXA # ANSWER KEY Exercise #1. Hawk-Dove game. Consider the following payoff matrix representing the Hawk-Dove game. Intuitively, Players 1 and compete for a resource,

More information

Alg2A Factoring and Equations Review Packet

Alg2A Factoring and Equations Review Packet 1 Multiplying binomials: We have a special way of remembering how to multiply binomials called FOIL: F: first x x = x 2 (x + 7)(x + 5) O: outer x 5 = 5x I: inner 7 x = 7x x 2 + 5x +7x + 35 (then simplify)

More information

FRTB Marginal Back-Allocation

FRTB Marginal Back-Allocation JUNE 2018 MODELING METHODOLOGY FRTB Marginal Back-Allocation Authors Lorenzo Boldrini Tiago Pinheiro Acknowledgements We thank Adam Balogh, Pieris Christofi, Christopher Crossen, Jelena Ivanovic, Sunny

More information

Equilibrium with Production and Labor Supply

Equilibrium with Production and Labor Supply Equilibrium with Production and Labor Supply ECON 30020: Intermediate Macroeconomics Prof. Eric Sims University of Notre Dame Fall 2016 1 / 20 Production and Labor Supply We continue working with a two

More information

REQUIRED NOTES TO THE FINANCIAL STATEMENTS

REQUIRED NOTES TO THE FINANCIAL STATEMENTS REQUIRED NOTES TO THE FINANCIAL STATEMENTS Notes to the financial statements essential to fair presentation in the basic financial statements include the following. a. Summary of significant accounting

More information

Advanced Microeconomic Theory. Chapter 3: Demand Theory Applications

Advanced Microeconomic Theory. Chapter 3: Demand Theory Applications Advanced Microeconomic Theory Chapter 3: Demand Theory Applications Outline Welfare evaluation Compensating variation Equivalent variation Quasilinear preferences Slutsky equation revisited Income and

More information

F.2 Factoring Trinomials

F.2 Factoring Trinomials 1 F.2 Factoring Trinomials In this section, we discuss factoring trinomials. We start with factoring quadratic trinomials of the form 2 + bbbb + cc, then quadratic trinomials of the form aa 2 + bbbb +

More information

assumption. Use these two equations and your earlier result to derive an expression for consumption per worker in steady state.

assumption. Use these two equations and your earlier result to derive an expression for consumption per worker in steady state. Tutorial sheet 2 for UBC Macroeconomics Martin Ellison, 2018 Exercise on consumption in the Solow growth model The Solow growth model is in steady-state when investment ss YY tt is exactly offset by depreciation

More information

Aggregated Fractional Regression Estimation: Some Monte Carlo Evidence

Aggregated Fractional Regression Estimation: Some Monte Carlo Evidence Aggregated Fractional Regression Estimation: Some Monte Carlo Evidence Jingyu Song song173@purdue.edu Michael S. Delgado delgado2@purdue.edu Paul V. Preckel preckel@purdue.edu Department of Agricultural

More information

Tests for the Difference Between Two Linear Regression Intercepts

Tests for the Difference Between Two Linear Regression Intercepts Chapter 853 Tests for the Difference Between Two Linear Regression Intercepts Introduction Linear regression is a commonly used procedure in statistical analysis. One of the main objectives in linear regression

More information

EconS 424 Strategy and Game Theory. Homework #5 Answer Key

EconS 424 Strategy and Game Theory. Homework #5 Answer Key EconS 44 Strategy and Game Theory Homework #5 Answer Key Exercise #1 Collusion among N doctors Consider an infinitely repeated game, in which there are nn 3 doctors, who have created a partnership. In

More information

ECONS 424 STRATEGY AND GAME THEORY HOMEWORK #7 ANSWER KEY

ECONS 424 STRATEGY AND GAME THEORY HOMEWORK #7 ANSWER KEY ECONS STRATEGY AND GAME THEORY HOMEWORK #7 ANSWER KEY Exercise 5-Chapter 8-Watson (Signaling between a judge and a defendant) a. This game has a unique PBE. Find and report it. After EE, the judge chooses

More information

State Government Finance Committee. MMB Department Overview. State Employee Group Insurance Program (SEGIP)

State Government Finance Committee. MMB Department Overview. State Employee Group Insurance Program (SEGIP) State Government Finance Committee MMB Department Overview State Employee Group Insurance Program (SEGIP) January 25 th, 2011 State Employee Group Insurance Program (SEGIP) 120,000 lives insured covering

More information

8. Model independent pricing relations: forwards, futures and swaps

8. Model independent pricing relations: forwards, futures and swaps Pricing Options with Mathematical Models 8. Model independent pricing relations: forwards, futures and swaps Some of the content of these slides is based on material from the book Introduction to the Economics

More information

APPENDIX A: Mathematical Formulation of MDCEV Models. We provide a brief formulation of the econometric structure of the traditional MDCEV model and

APPENDIX A: Mathematical Formulation of MDCEV Models. We provide a brief formulation of the econometric structure of the traditional MDCEV model and APPENDIX A: Mathematical Formulation of MDCEV Models We provide a brief formulation of the econometric structure of the traditional MDCEV model and then extend the discussion to the formulation for MMDCEV

More information

5.9: The Binomial Theorem

5.9: The Binomial Theorem 5.9: The Binomial Theorem Pascal s Triangle 1. Show that zz = 1 + ii is a solution to the fourth degree polynomial equation zz 4 zz 3 + 3zz 2 4zz + 6 = 0. 2. Show that zz = 1 ii is a solution to the fourth

More information

HIGH ORDER DISCONTINUOUS GALERKIN METHODS FOR 1D PARABOLIC EQUATIONS. Ahmet İzmirlioğlu. BS, University of Pittsburgh, 2004

HIGH ORDER DISCONTINUOUS GALERKIN METHODS FOR 1D PARABOLIC EQUATIONS. Ahmet İzmirlioğlu. BS, University of Pittsburgh, 2004 HIGH ORDER DISCONTINUOUS GALERKIN METHODS FOR D PARABOLIC EQUATIONS by Ahmet İzmirlioğlu BS, University of Pittsburgh, 24 Submitted to the Graduate Faculty of Art and Sciences in partial fulfillment of

More information

Math 1311 Final Test Review When: Wednesday, Dec. 16, 8A.M. Where: F 160 Time: 1.5 hours What is covered? Chapters 1-6 Number of questions: 20 Format: Multiple-choice What you need to bring: 1. Cougar

More information

Volatility and Growth: Credit Constraints and the Composition of Investment

Volatility and Growth: Credit Constraints and the Composition of Investment Volatility and Growth: Credit Constraints and the Composition of Investment Journal of Monetary Economics 57 (2010), p.246-265. Philippe Aghion Harvard and NBER George-Marios Angeletos MIT and NBER Abhijit

More information

Occasional Paper. Dynamic Methods for Analyzing Hedge-Fund Performance: A Note Using Texas Energy-Related Funds. Jiaqi Chen and Michael L.

Occasional Paper. Dynamic Methods for Analyzing Hedge-Fund Performance: A Note Using Texas Energy-Related Funds. Jiaqi Chen and Michael L. DALLASFED Occasional Paper Dynamic Methods for Analyzing Hedge-Fund Performance: A Note Using Texas Energy-Related Funds Jiaqi Chen and Michael L. Tindall Federal Reserve Bank of Dallas Financial Industry

More information

Of Rocket Science, Finance, and Nuclear Data: REWIND (Ranking Experiments by Weighting for Improved Nuclear Data)

Of Rocket Science, Finance, and Nuclear Data: REWIND (Ranking Experiments by Weighting for Improved Nuclear Data) Of Rocket Science, Finance, and Nuclear Data: REWIND (Ranking Experiments by Weighting for Improved Nuclear Data) G. Palmiotti Idaho National Laboratory May 20, 2015 December 2012 SG39, Paris, France Introduction

More information

1. A standard open-economy model

1. A standard open-economy model Online Appendix to The Shocks Maer: Improving our Estimates of Exchange Rate Pass-Through Shock dependent exchange rate pass-through in an open economy model In this appendix we develop a standard open-economy

More information

CO 2 -free electricity producer

CO 2 -free electricity producer Generation Division Best-in-class CO 2 -free electricity producer Tiina Tuomela, EVP Generation Division 13 November 2018 Generation Division a balanced Nordic portfolio of CO 2 -free hydro and nuclear

More information

Economics 230a, Fall 2017 Lecture Note 6: Basic Tax Incidence

Economics 230a, Fall 2017 Lecture Note 6: Basic Tax Incidence Economics 230a, Fall 2017 Lecture Note 6: Basic Tax Incidence Tax incidence refers to where the burden of taxation actually falls, as distinguished from who has the legal liability to pay taxes. As with

More information

Modelling Household Consumption: a long-term forecasting approach. Rossella Bardazzi University of Florence

Modelling Household Consumption: a long-term forecasting approach. Rossella Bardazzi University of Florence Modelling Household Consumption: a long-term forecasting approach Rossella Bardazzi University of Florence A Multi-Sectoral Approach to model Household Consumption Cross-section Analysis (Income and Demographic

More information

CHAPTER 4. The Theory of Individual Behavior

CHAPTER 4. The Theory of Individual Behavior CHAPTER 4 The Theory of Individual Behavior Copyright 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the prior written consent of McGraw-Hill Education. Chapter

More information

Dynamic Programming: An overview. 1 Preliminaries: The basic principle underlying dynamic programming

Dynamic Programming: An overview. 1 Preliminaries: The basic principle underlying dynamic programming Dynamic Programming: An overview These notes summarize some key properties of the Dynamic Programming principle to optimize a function or cost that depends on an interval or stages. This plays a key role

More information

Forecasting Real Estate Prices

Forecasting Real Estate Prices Forecasting Real Estate Prices Stefano Pastore Advanced Financial Econometrics III Winter/Spring 2018 Overview Peculiarities of Forecasting Real Estate Prices Real Estate Indices Serial Dependence in Real

More information

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

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

More information

Homework solutions, Chapter 8

Homework solutions, Chapter 8 Homework solutions, Chapter 8 NOTE: We might think of 8.1 as being a section devoted to setting up the networks and 8.2 as solving them, but only 8.2 has a homework section. Section 8.2 2. Use Dijkstra

More information

Overview. Specifications. Performance Data SAVANA LAB IJ DISC DISPOSABLE FILTER. Black PP shell small disc disposable filter for UV blocking

Overview. Specifications. Performance Data SAVANA LAB IJ DISC DISPOSABLE FILTER. Black PP shell small disc disposable filter for UV blocking CONTAMINATION CONTROL SOLUTIONS SAVANA LAB IJ DISC DISPOSABLE FILTER Black PP shell small disc disposable filter for UV blocking Overview Savana Lab IJ Disc Disposable Filter has been specially designed

More information

The Neo-Ricardian Trade Theory and the New Theory of International Values

The Neo-Ricardian Trade Theory and the New Theory of International Values The Neo-Ricardian Trade Theory and the New Theory of International Values Akira Takamasu Kansai University Abstract Ricardo s (1817) theory of comparative advantage is the first rigorous theory that demonstrates

More information

Money Demand. ECON 30020: Intermediate Macroeconomics. Prof. Eric Sims. Spring University of Notre Dame

Money Demand. ECON 30020: Intermediate Macroeconomics. Prof. Eric Sims. Spring University of Notre Dame Money Demand ECON 30020: Intermediate Macroeconomics Prof. Eric Sims University of Notre Dame Spring 2018 1 / 26 Readings GLS Ch. 13 2 / 26 What is Money? Might seem like an obvious question but really

More information

International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18, ISSN

International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18,   ISSN Volume XII, Issue II, Feb. 18, www.ijcea.com ISSN 31-3469 AN INVESTIGATION OF FINANCIAL TIME SERIES PREDICTION USING BACK PROPAGATION NEURAL NETWORKS K. Jayanthi, Dr. K. Suresh 1 Department of Computer

More information

Extra Practice Chapter 3. Topics Include: Exponents Algebra Terms Simplify Polynomials Distributive Property

Extra Practice Chapter 3. Topics Include: Exponents Algebra Terms Simplify Polynomials Distributive Property Extra Practice Chapter Topics Include: Exponents Algebra Terms Simplify Polynomials Distributive Property Practice: Work With Exponents BLM..1... 1. What is the base of each power? a) 5 b) c) ( ) d) e)

More information

NORTHERN TRUST EUROPE FUNDAMENTAL INDEX FUND. a Sub-Fund of NORTHERN TRUST UCITS COMMON CONTRACTUAL FUND

NORTHERN TRUST EUROPE FUNDAMENTAL INDEX FUND. a Sub-Fund of NORTHERN TRUST UCITS COMMON CONTRACTUAL FUND NORTHERN TRUST EUROPE FUNDAMENTAL INDEX FUND a Sub-Fund of NORTHERN TRUST UCITS COMMON CONTRACTUAL FUND Supplement dated 18 December 2017 to the Prospectus dated 23 June 2017 For Northern Trust UCITS Common

More information

Income Inclusion for Corporations that are Members of Single-Tier Partnerships (2011 and later tax years)

Income Inclusion for Corporations that are Members of Single-Tier Partnerships (2011 and later tax years) Income Inclusion for Corporations that are Members of Single-Tier Partnerships (2011 and later tax years) Schedule 71 Protected B when completed Corporation's name Business Number Tax year-end If the corporation

More information

The Solow Growth Model. Martin Ellison, Hilary Term 2017

The Solow Growth Model. Martin Ellison, Hilary Term 2017 The Solow Growth Model Martin Ellison, Hilary Term 2017 Solow growth model 2 Builds on the production model by adding a theory of capital accumulation Was developed in the mid-1950s by Robert Solow of

More information

COMPARING NEURAL NETWORK AND REGRESSION MODELS IN ASSET PRICING MODEL WITH HETEROGENEOUS BELIEFS

COMPARING NEURAL NETWORK AND REGRESSION MODELS IN ASSET PRICING MODEL WITH HETEROGENEOUS BELIEFS Akademie ved Leske republiky Ustav teorie informace a automatizace Academy of Sciences of the Czech Republic Institute of Information Theory and Automation RESEARCH REPORT JIRI KRTEK COMPARING NEURAL NETWORK

More information

EconS 424 Strategy and Game Theory. Homework #5 Answer Key

EconS 424 Strategy and Game Theory. Homework #5 Answer Key EconS 44 Strategy and Game Theory Homework #5 Answer Key Exercise #1 Collusion among N doctors Consider an infinitely repeated game, in which there are nn 3 doctors, who have created a partnership. In

More information

Monetary Policy. ECON 30020: Intermediate Macroeconomics. Prof. Eric Sims. Spring University of Notre Dame

Monetary Policy. ECON 30020: Intermediate Macroeconomics. Prof. Eric Sims. Spring University of Notre Dame Monetary Policy ECON 30020: Intermediate Macroeconomics Prof. Eric Sims University of Notre Dame Spring 2018 1 / 19 Inefficiency in the New Keynesian Model Backbone of the New Keynesian model is the neoclassical

More information

LECTURE 3 The Effects of Monetary Changes: Vector Autoregressions. September 7, 2016

LECTURE 3 The Effects of Monetary Changes: Vector Autoregressions. September 7, 2016 Economics 210c/236a Fall 2016 Christina Romer David Romer LECTURE 3 The Effects of Monetary Changes: Vector Autoregressions September 7, 2016 I. SOME BACKGROUND ON VARS A Two-Variable VAR Suppose the true

More information

car, in years 0 (new car)

car, in years 0 (new car) Chapter 2.4: Applications of Linear Equations In this section, we discuss applications of linear equations how we can use linear equations to model situations in our lives. We already saw some examples

More information

Real Business Cycle (RBC) Theory

Real Business Cycle (RBC) Theory Real Business Cycle (RBC) Theory ECON 30020: Intermediate Macroeconomics Prof. Eric Sims University of Notre Dame Spring 2018 1 / 17 Readings GLS Ch. 17 GLS Ch. 19 2 / 17 The Neoclassical Model and RBC

More information

Ricardo. The Model. Ricardo s model has several assumptions:

Ricardo. The Model. Ricardo s model has several assumptions: Ricardo Ricardo as you will have read was a very smart man. He developed the first model of trade that affected the discussion of international trade from 1820 to the present day. Crucial predictions of

More information

ESCoE Research Seminar

ESCoE Research Seminar ESCoE Research Seminar A Democratic Measure of Income Growth Presented by Martin Weale, Economic Statistics Centre of Excellence, Centre for Macroeconomics and King s College, London 01 May 2018 A Democratic

More information

ECON 3010 Intermediate Macroeconomics Exam #2

ECON 3010 Intermediate Macroeconomics Exam #2 ECON 3010 Intermediate Macroeconomics Exam #2 Multiple Choice Questions. (25 points; 2.5 pts each) #1. In a 100-percent-reserve banking system, banks: A) can increase the money supply. B) can decrease

More information

DIG Floor Pivots - PRO

DIG Floor Pivots - PRO DIG Floor Pivots - PRO Product Manual Full name in TradeStation: _DIG_Floor_Pivots - PRO 1) Parameters a) FloorPivotType(1) : Controls the type of calculation for the floor pivots. (a) Value = 1 : Standard

More information

International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18, ISSN

International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18,   ISSN International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18, www.ijcea.com ISSN 31-3469 AN INVESTIGATION OF FINANCIAL TIME SERIES PREDICTION USING BACK PROPAGATION NEURAL

More information

NORTHERN TRUST U.S. FUNDAMENTAL INDEX FUND. a Sub-Fund of NORTHERN TRUST UCITS COMMON CONTRACTUAL FUND

NORTHERN TRUST U.S. FUNDAMENTAL INDEX FUND. a Sub-Fund of NORTHERN TRUST UCITS COMMON CONTRACTUAL FUND NORTHERN TRUST U.S. FUNDAMENTAL INDEX FUND a Sub-Fund of NORTHERN TRUST UCITS COMMON CONTRACTUAL FUND Supplement dated 16 April 2018 to the Prospectus dated 23 June 2017 For Northern Trust UCITS Common

More information

1 Answers to the Sept 08 macro prelim - Long Questions

1 Answers to the Sept 08 macro prelim - Long Questions Answers to the Sept 08 macro prelim - Long Questions. Suppose that a representative consumer receives an endowment of a non-storable consumption good. The endowment evolves exogenously according to ln

More information

Developmental Math An Open Program Unit 12 Factoring First Edition

Developmental Math An Open Program Unit 12 Factoring First Edition Developmental Math An Open Program Unit 12 Factoring First Edition Lesson 1 Introduction to Factoring TOPICS 12.1.1 Greatest Common Factor 1 Find the greatest common factor (GCF) of monomials. 2 Factor

More information

Chapter 6.1: Introduction to parabolas and solving equations by factoring

Chapter 6.1: Introduction to parabolas and solving equations by factoring Chapter 6 Solving Quadratic Equations and Factoring Chapter 6.1: Introduction to parabolas and solving equations by factoring If you push a pen off a table, how does it fall? Does it fall like this? Or

More information

Ph.D. MICROECONOMICS CORE EXAM August 2018

Ph.D. MICROECONOMICS CORE EXAM August 2018 Ph.D. MICROECONOMICS CORE EXAM August 2018 This exam is designed to test your broad knowledge of microeconomics. There are three sections: one required and two choice sections. You must complete both problems

More information

THE EFFECTS OF FISCAL POLICY ON EMERGING ECONOMIES. A TVP-VAR APPROACH

THE EFFECTS OF FISCAL POLICY ON EMERGING ECONOMIES. A TVP-VAR APPROACH South-Eastern Europe Journal of Economics 1 (2015) 75-84 THE EFFECTS OF FISCAL POLICY ON EMERGING ECONOMIES. A TVP-VAR APPROACH IOANA BOICIUC * Bucharest University of Economics, Romania Abstract This

More information

Add and Subtract Rational Expressions *

Add and Subtract Rational Expressions * OpenStax-CNX module: m63368 1 Add and Subtract Rational Expressions * OpenStax This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0 By the end of this section,

More information

Characterization of the Optimum

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

More information

The Aggregate and Distributional Effects of Financial Globalization: Evidence from Macro and Sectoral Data

The Aggregate and Distributional Effects of Financial Globalization: Evidence from Macro and Sectoral Data The Aggregate and Distributional Effects of Financial Globalization: Evidence from Macro and Sectoral Data Davide Furceri, Prakash Loungani and Jonathan D. Ostry International Monetary Fund IMF Annual

More information

Global Tax Structures and the Marginal Cost of Funds

Global Tax Structures and the Marginal Cost of Funds Clemson University TigerPrints All Theses Theses 8-2016 Global Tax Structures and the Marginal Cost of Funds William Ensor Clemson University, wensor@clemson.edu Follow this and additional works at: https://tigerprints.clemson.edu/all_theses

More information

Based on BP Neural Network Stock Prediction

Based on BP Neural Network Stock Prediction Based on BP Neural Network Stock Prediction Xiangwei Liu Foundation Department, PLA University of Foreign Languages Luoyang 471003, China Tel:86-158-2490-9625 E-mail: liuxwletter@163.com Xin Ma Foundation

More information

Multiple regression - a brief introduction

Multiple regression - a brief introduction Multiple regression - a brief introduction Multiple regression is an extension to regular (simple) regression. Instead of one X, we now have several. Suppose, for example, that you are trying to predict

More information

Machine Learning (CSE 446): Pratical issues: optimization and learning

Machine Learning (CSE 446): Pratical issues: optimization and learning Machine Learning (CSE 446): Pratical issues: optimization and learning John Thickstun guest lecture c 2018 University of Washington cse446-staff@cs.washington.edu 1 / 10 Review 1 / 10 Our running example

More information

Barapatre Omprakash et.al; International Journal of Advance Research, Ideas and Innovations in Technology

Barapatre Omprakash et.al; International Journal of Advance Research, Ideas and Innovations in Technology ISSN: 2454-132X Impact factor: 4.295 (Volume 4, Issue 2) Available online at: www.ijariit.com Stock Price Prediction using Artificial Neural Network Omprakash Barapatre omprakashbarapatre@bitraipur.ac.in

More information

One-Sample Cure Model Tests

One-Sample Cure Model Tests Chapter 713 One-Sample Cure Model Tests Introduction This module computes the sample size and power of the one-sample parametric cure model proposed by Wu (2015). This technique is useful when working

More information

Game Theory Notes: Examples of Games with Dominant Strategy Equilibrium or Nash Equilibrium

Game Theory Notes: Examples of Games with Dominant Strategy Equilibrium or Nash Equilibrium Game Theory Notes: Examples of Games with Dominant Strategy Equilibrium or Nash Equilibrium Below are two different games. The first game has a dominant strategy equilibrium. The second game has two Nash

More information

Mixed Models Tests for the Slope Difference in a 3-Level Hierarchical Design with Random Slopes (Level-3 Randomization)

Mixed Models Tests for the Slope Difference in a 3-Level Hierarchical Design with Random Slopes (Level-3 Randomization) Chapter 375 Mixed Models Tests for the Slope Difference in a 3-Level Hierarchical Design with Random Slopes (Level-3 Randomization) Introduction This procedure calculates power and sample size for a three-level

More information

Predictive Model Learning of Stochastic Simulations. John Hegstrom, FSA, MAAA

Predictive Model Learning of Stochastic Simulations. John Hegstrom, FSA, MAAA Predictive Model Learning of Stochastic Simulations John Hegstrom, FSA, MAAA Table of Contents Executive Summary... 3 Choice of Predictive Modeling Techniques... 4 Neural Network Basics... 4 Financial

More information

Quantifying Sentiment for the Japanese Economy and Stock Price Prediction

Quantifying Sentiment for the Japanese Economy and Stock Price Prediction Quantifying Sentiment for the Japanese Economy and Stock Price Prediction Hiroshi Ishijima 1, Takuro Kazumi 2, and Akira Maeda 3 1 Graduate School of International Accounting, Chuo University, Shinjuku,

More information

Reinforcement Learning. Slides based on those used in Berkeley's AI class taught by Dan Klein

Reinforcement Learning. Slides based on those used in Berkeley's AI class taught by Dan Klein Reinforcement Learning Slides based on those used in Berkeley's AI class taught by Dan Klein Reinforcement Learning Basic idea: Receive feedback in the form of rewards Agent s utility is defined by the

More information

The Performance of Smile-Implied Delta Hedging

The Performance of Smile-Implied Delta Hedging The Institute have the financial support of l Autorité des marchés financiers and the Ministère des Finances du Québec Technical note TN 17-01 The Performance of Delta Hedging January 2017 This technical

More information

Mixed Strategies. Samuel Alizon and Daniel Cownden February 4, 2009

Mixed Strategies. Samuel Alizon and Daniel Cownden February 4, 2009 Mixed Strategies Samuel Alizon and Daniel Cownden February 4, 009 1 What are Mixed Strategies In the previous sections we have looked at games where players face uncertainty, and concluded that they choose

More information

( 0) ,...,S N ,S 2 ( 0)... S N S 2. N and a portfolio is created that way, the value of the portfolio at time 0 is: (0) N S N ( 1, ) +...

( 0) ,...,S N ,S 2 ( 0)... S N S 2. N and a portfolio is created that way, the value of the portfolio at time 0 is: (0) N S N ( 1, ) +... No-Arbitrage Pricing Theory Single-Period odel There are N securities denoted ( S,S,...,S N ), they can be stocks, bonds, or any securities, we assume they are all traded, and have prices available. Ω

More information

ECON 459 Game Theory. Lecture Notes Auctions. Luca Anderlini Spring 2017

ECON 459 Game Theory. Lecture Notes Auctions. Luca Anderlini Spring 2017 ECON 459 Game Theory Lecture Notes Auctions Luca Anderlini Spring 2017 These notes have been used and commented on before. If you can still spot any errors or have any suggestions for improvement, please

More information

Tests for Two Means in a Multicenter Randomized Design

Tests for Two Means in a Multicenter Randomized Design Chapter 481 Tests for Two Means in a Multicenter Randomized Design Introduction In a multicenter design with a continuous outcome, a number of centers (e.g. hospitals or clinics) are selected at random

More information

The Use of Artificial Neural Network for Forecasting of FTSE Bursa Malaysia KLCI Stock Price Index

The Use of Artificial Neural Network for Forecasting of FTSE Bursa Malaysia KLCI Stock Price Index The Use of Artificial Neural Network for Forecasting of FTSE Bursa Malaysia KLCI Stock Price Index Soleh Ardiansyah 1, Mazlina Abdul Majid 2, JasniMohamad Zain 2 Faculty of Computer System and Software

More information

Decomposition of growth in real disposable income

Decomposition of growth in real disposable income Notater Documents 2016/26 Nini Barth, Thomas Von Brasch Decomposition of growth in real disposable income Documents 2016/26 Nini Barth, Thomas Von Brasch Decomposition of growth in real disposable income

More information

COMP417 Introduction to Robotics and Intelligent Systems. Reinforcement Learning - 2

COMP417 Introduction to Robotics and Intelligent Systems. Reinforcement Learning - 2 COMP417 Introduction to Robotics and Intelligent Systems Reinforcement Learning - 2 Speaker: Sandeep Manjanna Acklowledgement: These slides use material from Pieter Abbeel s, Dan Klein s and John Schulman

More information

Midterm 2 Review. ECON 30020: Intermediate Macroeconomics Professor Sims University of Notre Dame, Spring 2018

Midterm 2 Review. ECON 30020: Intermediate Macroeconomics Professor Sims University of Notre Dame, Spring 2018 Midterm 2 Review ECON 30020: Intermediate Macroeconomics Professor Sims University of Notre Dame, Spring 2018 The second midterm will take place on Thursday, March 29. In terms of the order of coverage,

More information

Iteration. The Cake Eating Problem. Discount Factors

Iteration. The Cake Eating Problem. Discount Factors 18 Value Function Iteration Lab Objective: Many questions have optimal answers that change over time. Sequential decision making problems are among this classification. In this lab you we learn how to

More information

Understanding Differential Cycle Sensitivity for Loan Portfolios

Understanding Differential Cycle Sensitivity for Loan Portfolios Understanding Differential Cycle Sensitivity for Loan Portfolios James O Donnell jodonnell@westpac.com.au Context & Background At Westpac we have recently conducted a revision of our Probability of Default

More information

Matt Morgan Assistant Superintendent of Support Services. Severin Castro Director of Purchasing. June 6, Date: Re:

Matt Morgan Assistant Superintendent of Support Services. Severin Castro Director of Purchasing. June 6, Date: Re: To: From: Date: Re: Matt Morgan Assistant Superintendent of Support Services Severin Castro Director of Purchasing June 6, 2018 Fencing and Wire Mesh Partitions Annual Contract #18-06-5175R-RFP The following

More information

Chapter 4 Money and Inflation

Chapter 4 Money and Inflation Chapter 4 Money and Inflation Zhengyu Cai Ph.D. Institute of Development Southwestern University of Finance and Economics All rights reserved http://www.escience.cn/people/zhengyucai/index.html Refresh

More information

Game Theory. Lecture Notes By Y. Narahari. Department of Computer Science and Automation Indian Institute of Science Bangalore, India August 2012

Game Theory. Lecture Notes By Y. Narahari. Department of Computer Science and Automation Indian Institute of Science Bangalore, India August 2012 Game Theory Lecture Notes By Y. Narahari Department of Computer Science and Automation Indian Institute of Science Bangalore, India August 01 Chapter 5: Pure Strategy Nash Equilibrium Note: This is a only

More information

The Crown Oil and Gas Royalty Regulations, 2012

The Crown Oil and Gas Royalty Regulations, 2012 CROWN OIL AND GAS ROYALTY, 2012 C-50.2 REG 28 1 The Crown Oil and Gas Royalty Regulations, 2012 being Chapter C-50.2 Reg 28 (effective April 1, 2012) as amended by Saskatchewan Regulations 17/2013, 81/2013,

More information

Forecasting Currency Exchange Rates via Feedforward Backpropagation Neural Network

Forecasting Currency Exchange Rates via Feedforward Backpropagation Neural Network Universal Journal of Mechanical Engineering 5(3): 77-86, 2017 DOI: 10.13189/ujme.2017.050302 http://www.hrpub.org Forecasting Currency Exchange Rates via Feedforward Backpropagation Neural Network Joseph

More information

Quasi-Monte Carlo for Finance

Quasi-Monte Carlo for Finance Quasi-Monte Carlo for Finance Peter Kritzer Johann Radon Institute for Computational and Applied Mathematics (RICAM) Austrian Academy of Sciences Linz, Austria NCTS, Taipei, November 2016 Peter Kritzer

More information

The Assessment of Financial Leasing Risk in Grid Corporation Zhu Guorong1, a, Feng Hao1, a, Qin Honghao2, a, Zhu Guodong2, a and Niu Dongxiao2, a

The Assessment of Financial Leasing Risk in Grid Corporation Zhu Guorong1, a, Feng Hao1, a, Qin Honghao2, a, Zhu Guodong2, a and Niu Dongxiao2, a International Conference on Management Science, Education Technology, Arts, Social Science and Economics (MSETASSE 2015) The Assessment of Financial Leasing Risk in Grid Corporation Zhu Guorong1, a, Feng

More information

The Delta Method. j =.

The Delta Method. j =. The Delta Method Often one has one or more MLEs ( 3 and their estimated, conditional sampling variancecovariance matrix. However, there is interest in some function of these estimates. The question is,

More information

Is Greedy Coordinate Descent a Terrible Algorithm?

Is Greedy Coordinate Descent a Terrible Algorithm? Is Greedy Coordinate Descent a Terrible Algorithm? Julie Nutini, Mark Schmidt, Issam Laradji, Michael Friedlander, Hoyt Koepke University of British Columbia Optimization and Big Data, 2015 Context: Random

More information

As Introduced. 132nd General Assembly Regular Session H. B. No

As Introduced. 132nd General Assembly Regular Session H. B. No 132nd General Assembly Regular Session H. B. No. 486 2017-2018 Representative Antonio Cosponsors: Representatives Ashford, Howse, Kent, Rogers, Smith, K., West A B I L L To amend section 145.01 and to

More information

Resource Allocation and Decision Analysis (ECON 8010) Spring 2014 Foundations of Decision Analysis

Resource Allocation and Decision Analysis (ECON 8010) Spring 2014 Foundations of Decision Analysis Resource Allocation and Decision Analysis (ECON 800) Spring 04 Foundations of Decision Analysis Reading: Decision Analysis (ECON 800 Coursepak, Page 5) Definitions and Concepts: Decision Analysis a logical

More information

Credit Constraints, Heterogeneous Firms, and International Trade

Credit Constraints, Heterogeneous Firms, and International Trade Credit Constraints, Heterogeneous Firms, and International Trade Review of Economic Studies 80 (2013), p.711-744. Kalina Manova University of Oxford, NBER and CEPR Links: Kalina Manova s webpage and research

More information

Support Vector Machines: Training with Stochastic Gradient Descent

Support Vector Machines: Training with Stochastic Gradient Descent Support Vector Machines: Training with Stochastic Gradient Descent Machine Learning Spring 2018 The slides are mainly from Vivek Srikumar 1 Support vector machines Training by maximizing margin The SVM

More information

************************

************************ Derivative Securities Options on interest-based instruments: pricing of bond options, caps, floors, and swaptions. The most widely-used approach to pricing options on caps, floors, swaptions, and similar

More information

Reinforcement Learning

Reinforcement Learning Reinforcement Learning Basic idea: Receive feedback in the form of rewards Agent s utility is defined by the reward function Must (learn to) act so as to maximize expected rewards Grid World The agent

More information

Replicator Dynamics 1

Replicator Dynamics 1 Replicator Dynamics 1 Nash makes sense (arguably) if -Uber-rational -Calculating 2 Such as Auctions 3 Or Oligopolies Image courtesy of afagen on Flickr. CC BY NC-SA Image courtesy of longislandwins on

More information

Final Exam. Friday, July 7. 1 hour, 30 minutes

Final Exam. Friday, July 7. 1 hour, 30 minutes San Francisco State University Michael Bar ECON 102 Summer 2017 Final Exam Friday, July 7 1 hour, 30 minutes Name: Student ID: Instructions 1. This is closed book, closed notes exam. 2. No calculators

More information