DATA MINING FOR OPTIMAL GAMBLING.

Size: px
Start display at page:

Download "DATA MINING FOR OPTIMAL GAMBLING."

Transcription

1 DATA MINING FOR OPTIMAL GAMBLING. Gabriele Torre 1 and Fabrizio Malfanti 2 1 Dipartimento di Matematica, Università degli Studi di Genova, via Dodecaneso 35, 16146, Genova, Italy. ( torre@dima.unige.it) 2 Intelligrate s.r.l, Via XII Ottobre 2 / 92, 16121, Genova, Italy. ( fabrizio.malfanti@intelligrate.it) ABSTRACT: The main objective of this abstract is to provide an application of Data Mining on Gambling in sport, presenting a new methodology, based on the real information made available from hundreds of online bookmakers, to improve the real probability estimation for a given sportive match outcome. Moreover, the formal equivalence between the AdaBoost method and the Optimal Betting strategies is utilized to explore the application of boosting methods on the different classifiers utilized by online bookmakers. In conclusion, the main aim of the presented method is to change the gambling perspective from betting on the match outcome to betting on the best performer bookmaker. KEYWORDS: AdaBoost, optimal betting, online bookmakers. 1 Introduction Nowadays, the massive presence of online bookmakers, supplying the probability estimations for a given sport outcome, represents an accessible big database for gamblers to draw upon to. In particular, the existing variety between the estimations provided by different bookmakers, represents an opportunity for the development of new strategies for the probability estimation. Let s define as Doubling rate as: W = D(p r) D(p b) (1) where D(p r) represents the error, in the Kullback-Leibler divergence sense, committed by the bookmaker estimating the true probability distribution p as r, while D(p b) represents the error committed by the gambler, which estimate p as b. According to Kelly s criterion (Kelly, 1956), the optimal situation for gambling occurs when the Doubling rate is maximum. An hypothetic gambler, convinced about the truthfulness of b, will adopt as naive gambling strategy the one of choosing the online bookmaker whose probability estimation r maximize D(p r) in Eq.1. This strategy will lead the gambler to an almost sure

2 ruin, caused by the more reliability of the bookmakers estimates with respect to the gambler s one. From a mathematical perspective this aspect can be represented by the inequality D(p r) < D(p b) which holds true for any bookmaker. Nowadays, the role of experienced analyst in modern bookmaking is fulfilled by an extensive employment of data mining tools. Our purpose is none other than to utilize these bookmakers predictions to build a virtual bookmaker as a combination of the best performers for each sport event. This virtual bookmaker can be interpreted, from the data mining point-of-view, as an AdaBoost, i.e. a boosting method that combines weak learners (single bookmaker estimators) to build a strong classifier. The complexity of the environment and the data involved can make of AdaBoost not the best tool for building our virtual bookmaker; for this reason a comparative analysis between different boosting methods present in literature can be done, in order to find which method fits better with the real context. 2 Data A big database of the final result odds, estimated by different bookmakers for a specified sportive event, is needed in order to develop our virtual bookmaker. A suitable candidate should have the following characteristics: data have to be easily available in big volumes to better instruct the classifier and, for simpler implementation, they have to be classified just in two classes. Data regarding Football matches are easily available in big volumes from online sites, but unfortunately their classification is based in three different classes. A good compromise consists of the transformation of the three possible results Home, Draw and Away (known in Italy as 1,X,2) in Home and not Home (not good for a real implementation of the algorithm). A good database for this kind of results is the website where the odds and results are archived for the major european football leagues matches over the past fifteen years. An example of the data available in the considered database is given in table 1, where the classification is given in terms of Odds, which represent the profit factor in case of a winning bet. These quantities are inversely proportional to the occurrence probability of the respective results. In addition, we need to introduce the concept of the Book as the bookmaking percentage, i.e. the profits of the bookmaker. For this reason the sum of probabilities b in table 1 is greater that 100. A reliable comparison between different values of b onto the dataset, can be achieved normalizing the single values of b in such a way that the summation over the possible results of the relative probabilities must

3 Odds b (%) b (%) H D A H D A Team A - Team B Team C - Team D Team E - Team F Table 1. Bookmaker s odds for three sample football matches ( column 1-3 ), the resulting probabilities, for H, D and A respectively, given by Odd 100 ( b in column 4-6 ) and the summation over each the possible results of the corresponding probabilities ( b). be 1. To reduce the problem to a two class classification scheme, we highlight only the Home result assigning the value 1 if the Home probability is greater than the Draw and Away ones and 1 otherwise. The multidimensional data points, shown in table 1, are then reduced to: b N (%) Red. Data Points x H D A y Team A - Team B Team C - Team D Team E - Team F Table 2. In column 1-3 the normalized probabilities for the match outcomes b N are listed while the last column shows the corresponding reduced data points. The value 1 is set if the probability associated to the Home result is bigger then the other two (Draw and Away), 1 elsewhere. The reduced data points y in table 2, represent the optimal configuration for scouting the AdaBoost algorithm, which will be described in the following section. 3 AdaBoost and other boosting methods The first candidate algorithm for our virtual bookmaker is AdaBoost, a well known and largely used meta classifier (Freund & Shapire, 1995). The implementation adopted for this paper is not the one presented by Freund & Shapire, 1995 but the one in Rojas, 2009: in fact, the former one involves a single weak-learner instructed on differently weighted data, while the latter employs different already instructed classifiers to build a strong classifier. In order to build our virtual bookmaker, we have to implement the following three steps: a) scouting prospective weak-classifiers b) drafting them, and c) assigning a

4 weight to their contribution. Scouting is done by testing the classifiers using a training set T of N multidimensional reduced data points x i as described in table 2 with labels y i = 1 or y i = 1. We test and rank all the classifiers by charging a cost e β any time a classifier fails a result, and a cost e β every time a classifier provides the right result. With β > 0, misses are penalized more heavily than hits. This kind of error function is called as exponential loss function and it is used by AdaBoost as error criterion. When we test the L classifiers, we build a matrix S in which we record the misses (with a 1) and hits (with a zero) of each classifier. Row i in the matrix refers to the data point x i. Column j is reserved for the j-th classifier (bookmaker in our application): 1 2 L x x x x N (2) The main idea of AdaBoost is to proceed systematically by extracting one classifier in each of M iterations. The elements in the data set are weighted according to their current relevance at each iteration. At the beginning, the same weight 1/N are assigned to all elements. As the drafting progresses, the more difficult examples (those where the majority of classifiers still performs badly) are assigned larger and larger weights. The drafting process concentrates in selecting new classifiers focusing on those which can help with the still misclassified examples. Neglecting the Drafting and Weighting steps, well described in Rojas, 2009, at iteration M we obtain a virtual bookmaker given by: M V B(x i ) = α j B j (x i ). (3) j=1 4 Preliminary considerations Several improvement can be implemented in further development of the presented method. The first of them, will include the implementation of a classification algorithm that considers, as data for the scouting and drafting procedure, both the final result estimates and their statistical confidence. With this implementation the method will take advantage of the probability with which a particular outcome is expected, reflecting the goodness of the bookmaker as

5 a weak classifier, without limiting data as a mere global performance and considering information about bookmaker s different estimate strategies. Moreover, the reduced data list described in section 2 contains only the information about the Home result disregarding the probabilities estimations for Draw and Away results, which will be included in future. In conclusion, because of the complexity of the involved environment and data, an extensive study upon all the possible boosting methods is needed in order to define the one performing better with respect to the other in building our virtual bookmaker. References FREUND, YOAV, & SHAPIRE, ROBERT A decision-theoretic generalization of on-line learning and an application to boosting KELLY, JL A new interpretation of information rate. Information Theory, IRE Transactions on, 2(3), ROJAS, RAÚL AdaBoost and the super bowl of classifiers a tutorial introduction to adaptive boosting. Freie University, Berlin, Tech. Rep.

FURTHER ASPECTS OF GAMBLING WITH THE KELLY CRITERION. We consider two aspects of gambling with the Kelly criterion. First, we show that for

FURTHER ASPECTS OF GAMBLING WITH THE KELLY CRITERION. We consider two aspects of gambling with the Kelly criterion. First, we show that for FURTHER ASPECTS OF GAMBLING WITH THE KELLY CRITERION RAVI PHATARFOD *, Monash University Abstract We consider two aspects of gambling with the Kelly criterion. First, we show that for a wide range of final

More information

/ /

/ / 2018 Prospectus Page 3 4 5 6 7 8 9 10 11 12 13 About Us Apex Syndicate Strategy Liquidity Risk Operational Beat The Bookies Revenue Streams Track Record Investment Examples Disclaimer Page 2 The basic

More information

8 June Re: FEE Comments on IASB/FASB Phase B Discussion Paper Preliminary Views on Financial Statement Presentation

8 June Re: FEE Comments on IASB/FASB Phase B Discussion Paper Preliminary Views on Financial Statement Presentation 8 June 2009 Sir David Tweedie Chairman International Accounting Standards Board 30 Cannon Street London EC4M 6XH United Kingdom E-mail: commentletters@iasb.org Ref.: ACC/HvD/LF/SR Dear Sir David, Re: FEE

More information

Minimizing Timing Luck with Portfolio Tranching The Difference Between Hired and Fired

Minimizing Timing Luck with Portfolio Tranching The Difference Between Hired and Fired Minimizing Timing Luck with Portfolio Tranching The Difference Between Hired and Fired February 2015 Newfound Research LLC 425 Boylston Street 3 rd Floor Boston, MA 02116 www.thinknewfound.com info@thinknewfound.com

More information

Assessment on Credit Risk of Real Estate Based on Logistic Regression Model

Assessment on Credit Risk of Real Estate Based on Logistic Regression Model Assessment on Credit Risk of Real Estate Based on Logistic Regression Model Li Hongli 1, a, Song Liwei 2,b 1 Chongqing Engineering Polytechnic College, Chongqing400037, China 2 Division of Planning and

More information

The Loans_processed.csv file is the dataset we obtained after the pre-processing part where the clean-up python code was used.

The Loans_processed.csv file is the dataset we obtained after the pre-processing part where the clean-up python code was used. Machine Learning Group Homework 3 MSc Business Analytics Team 9 Alexander Romanenko, Artemis Tomadaki, Justin Leiendecker, Zijun Wei, Reza Brianca Widodo The Loans_processed.csv file is the dataset we

More information

Applying Risk Theory to Game Theory Tristan Barnett. Abstract

Applying Risk Theory to Game Theory Tristan Barnett. Abstract Applying Risk Theory to Game Theory Tristan Barnett Abstract The Minimax Theorem is the most recognized theorem for determining strategies in a two person zerosum game. Other common strategies exist such

More information

COS 511: Theoretical Machine Learning. Lecturer: Rob Schapire Lecture #24 Scribe: Jordan Ash May 1, 2014

COS 511: Theoretical Machine Learning. Lecturer: Rob Schapire Lecture #24 Scribe: Jordan Ash May 1, 2014 COS 5: heoretical Machine Learning Lecturer: Rob Schapire Lecture #24 Scribe: Jordan Ash May, 204 Review of Game heory: Let M be a matrix with all elements in [0, ]. Mindy (called the row player) chooses

More information

Gamma Distribution Fitting

Gamma Distribution Fitting Chapter 552 Gamma Distribution Fitting Introduction This module fits the gamma probability distributions to a complete or censored set of individual or grouped data values. It outputs various statistics

More information

Monotone, Convex and Extrema

Monotone, Convex and Extrema Monotone Functions Function f is called monotonically increasing, if Chapter 8 Monotone, Convex and Extrema x x 2 f (x ) f (x 2 ) It is called strictly monotonically increasing, if f (x 2) f (x ) x < x

More information

On a Manufacturing Capacity Problem in High-Tech Industry

On a Manufacturing Capacity Problem in High-Tech Industry Applied Mathematical Sciences, Vol. 11, 217, no. 2, 975-983 HIKARI Ltd, www.m-hikari.com https://doi.org/1.12988/ams.217.7275 On a Manufacturing Capacity Problem in High-Tech Industry Luca Grosset and

More information

The Determinants of Bank Mergers: A Revealed Preference Analysis

The Determinants of Bank Mergers: A Revealed Preference Analysis The Determinants of Bank Mergers: A Revealed Preference Analysis Oktay Akkus Department of Economics University of Chicago Ali Hortacsu Department of Economics University of Chicago VERY Preliminary Draft:

More information

1/42. Wirtschaftsuniversität Wien, Nicola Loperfido, Urbino University

1/42. Wirtschaftsuniversität Wien, Nicola Loperfido, Urbino University Nicola Loperfido Università degli Studi di Urbino "Carlo Bo, Dipartimento di Economia, Società e Politica Via Saffi 42, Urbino (PU), ITALY e-mail: nicola.loperfido@uniurb.it 1/42 Outline Finite mixtures

More information

Prediction Market Prices as Martingales: Theory and Analysis. David Klein Statistics 157

Prediction Market Prices as Martingales: Theory and Analysis. David Klein Statistics 157 Prediction Market Prices as Martingales: Theory and Analysis David Klein Statistics 157 Introduction With prediction markets growing in number and in prominence in various domains, the construction of

More information

INTRODUCTION DEFINITION OF FINANCE

INTRODUCTION DEFINITION OF FINANCE INTRODUCTION Business concern needs finance to meet their requirements in the economic world. Any kind of business activity depends on the finance. Hence, it is called as lifeblood of business organization.

More information

Economics of Sport (ECNM 10068)

Economics of Sport (ECNM 10068) Economics of Sport (ECNM 10068) Lecture 2: Demand, in theory Carl Singleton 1 The University of Edinburgh 23rd January 2018 1 Carl.Singleton@ed.ac.uk 1 / 30 2 / 30 Demand, in theory Issues covered: - What

More information

AS RĪGAS KUĢU BŪVĒTAVA CORPORATE GOVERNANCE REPORT 2017 RĪGA

AS RĪGAS KUĢU BŪVĒTAVA CORPORATE GOVERNANCE REPORT 2017 RĪGA AS RĪGAS KUĢU BŪVĒTAVA CORPORATE GOVERNANCE REPORT 2017 Prepared based on the NASDAQ RIGA AS 2010 issued on corporate governance principles and recommendations on their implementation and the principle

More information

Obtaining a fair arbitration outcome

Obtaining a fair arbitration outcome Law, Probability and Risk Advance Access published March 16, 2011 Law, Probability and Risk Page 1 of 9 doi:10.1093/lpr/mgr003 Obtaining a fair arbitration outcome TRISTAN BARNETT School of Mathematics

More information

Iterated Dominance and Nash Equilibrium

Iterated Dominance and Nash Equilibrium Chapter 11 Iterated Dominance and Nash Equilibrium In the previous chapter we examined simultaneous move games in which each player had a dominant strategy; the Prisoner s Dilemma game was one example.

More information

How quantitative methods influence and shape finance industry

How quantitative methods influence and shape finance industry How quantitative methods influence and shape finance industry Marek Musiela UNSW December 2017 Non-quantitative talk about the role quantitative methods play in finance industry. Focus on investment banking,

More information

GEK1544 The Mathematics of Games Suggested Solutions to Tutorial 3

GEK1544 The Mathematics of Games Suggested Solutions to Tutorial 3 GEK544 The Mathematics of Games Suggested Solutions to Tutorial 3. Consider a Las Vegas roulette wheel with a bet of $5 on black (payoff = : ) and a bet of $ on the specific group of 4 (e.g. 3, 4, 6, 7

More information

Laws of probabilities in efficient markets

Laws of probabilities in efficient markets Laws of probabilities in efficient markets Vladimir Vovk Department of Computer Science Royal Holloway, University of London Fifth Workshop on Game-Theoretic Probability and Related Topics 15 November

More information

Outcome uncertainty and attendance demand in sport: the case of English soccer

Outcome uncertainty and attendance demand in sport: the case of English soccer Outcome uncertainty and attendance demand in sport: the case of English soccer Forrest, D, & Simmons, R (2002) Journal of the Royal Statistical Society Presenter: Sarah Kim 20190125 Introduction Uncertainty

More information

Budget Setting Strategies for the Company s Divisions

Budget Setting Strategies for the Company s Divisions Budget Setting Strategies for the Company s Divisions Menachem Berg Ruud Brekelmans Anja De Waegenaere November 14, 1997 Abstract The paper deals with the issue of budget setting to the divisions of a

More information

ECS171: Machine Learning

ECS171: Machine Learning ECS171: Machine Learning Lecture 15: Tree-based Algorithms Cho-Jui Hsieh UC Davis March 7, 2018 Outline Decision Tree Random Forest Gradient Boosted Decision Tree (GBDT) Decision Tree Each node checks

More information

CHOICE THEORY, UTILITY FUNCTIONS AND RISK AVERSION

CHOICE THEORY, UTILITY FUNCTIONS AND RISK AVERSION CHOICE THEORY, UTILITY FUNCTIONS AND RISK AVERSION Szabolcs Sebestyén szabolcs.sebestyen@iscte.pt Master in Finance INVESTMENTS Sebestyén (ISCTE-IUL) Choice Theory Investments 1 / 65 Outline 1 An Introduction

More information

Chilton Investment Seminar

Chilton Investment Seminar Chilton Investment Seminar Palm Beach, Florida - March 30, 2006 Applied Mathematics and Statistics, Stony Brook University Robert J. Frey, Ph.D. Director, Program in Quantitative Finance Objectives Be

More information

Properties of IRR Equation with Regard to Ambiguity of Calculating of Rate of Return and a Maximum Number of Solutions

Properties of IRR Equation with Regard to Ambiguity of Calculating of Rate of Return and a Maximum Number of Solutions Properties of IRR Equation with Regard to Ambiguity of Calculating of Rate of Return and a Maximum Number of Solutions IRR equation is widely used in financial mathematics for different purposes, such

More information

Extortion, firm s size and the sectoral allocation of capital

Extortion, firm s size and the sectoral allocation of capital Extortion, firm s size and the sectoral allocation of capital Luigi Balletta Mario Lavezzi June 29, 2013 Abstract In this paper we provide a theoretical and empirical analysis of extortion, which represents

More information

CS 798: Homework Assignment 4 (Game Theory)

CS 798: Homework Assignment 4 (Game Theory) 0 5 CS 798: Homework Assignment 4 (Game Theory) 1.0 Preferences Assigned: October 28, 2009 Suppose that you equally like a banana and a lottery that gives you an apple 30% of the time and a carrot 70%

More information

TTIC An Introduction to the Theory of Machine Learning. Learning and Game Theory. Avrim Blum 5/7/18, 5/9/18

TTIC An Introduction to the Theory of Machine Learning. Learning and Game Theory. Avrim Blum 5/7/18, 5/9/18 TTIC 31250 An Introduction to the Theory of Machine Learning Learning and Game Theory Avrim Blum 5/7/18, 5/9/18 Zero-sum games, Minimax Optimality & Minimax Thm; Connection to Boosting & Regret Minimization

More information

Managed Futures and Hedge Funds: A Match Made in Heaven

Managed Futures and Hedge Funds: A Match Made in Heaven The University of Reading THE BUSINESS SCHOOL FOR FINANCIAL MARKETS Managed Futures and Hedge Funds: A Match Made in Heaven ISMA Centre Discussion Papers in Finance 02-25 This version: 1 November 02 Harry

More information

The Comovements Along the Term Structure of Oil Forwards in Periods of High and Low Volatility: How Tight Are They?

The Comovements Along the Term Structure of Oil Forwards in Periods of High and Low Volatility: How Tight Are They? The Comovements Along the Term Structure of Oil Forwards in Periods of High and Low Volatility: How Tight Are They? Massimiliano Marzo and Paolo Zagaglia This version: January 6, 29 Preliminary: comments

More information

Ph.D. Preliminary Examination MICROECONOMIC THEORY Applied Economics Graduate Program June 2017

Ph.D. Preliminary Examination MICROECONOMIC THEORY Applied Economics Graduate Program June 2017 Ph.D. Preliminary Examination MICROECONOMIC THEORY Applied Economics Graduate Program June 2017 The time limit for this exam is four hours. The exam has four sections. Each section includes two questions.

More information

Martingale Pricing Applied to Dynamic Portfolio Optimization and Real Options

Martingale Pricing Applied to Dynamic Portfolio Optimization and Real Options IEOR E476: Financial Engineering: Discrete-Time Asset Pricing c 21 by Martin Haugh Martingale Pricing Applied to Dynamic Portfolio Optimization and Real Options We consider some further applications of

More information

Game-Theoretic Risk Analysis in Decision-Theoretic Rough Sets

Game-Theoretic Risk Analysis in Decision-Theoretic Rough Sets Game-Theoretic Risk Analysis in Decision-Theoretic Rough Sets Joseph P. Herbert JingTao Yao Department of Computer Science, University of Regina Regina, Saskatchewan, Canada S4S 0A2 E-mail: [herbertj,jtyao]@cs.uregina.ca

More information

Casino gambling problem under probability weighting

Casino gambling problem under probability weighting Casino gambling problem under probability weighting Sang Hu National University of Singapore Mathematical Finance Colloquium University of Southern California Jan 25, 2016 Based on joint work with Xue

More information

Anomalies and monotonicity in net present value calculations

Anomalies and monotonicity in net present value calculations Anomalies and monotonicity in net present value calculations Marco Lonzi and Samuele Riccarelli * Dipartimento di Metodi Quantitativi Università degli Studi di Siena P.zza San Francesco 14 53100 Siena

More information

The Role of Industry Affiliation in the Underpricing of U.S. IPOs

The Role of Industry Affiliation in the Underpricing of U.S. IPOs The Role of Industry Affiliation in the Underpricing of U.S. IPOs Bryan Henrick ABSTRACT: Haverford College Department of Economics Spring 2012 This paper examines the significance of a firm s industry

More information

Algorithmic Game Theory (a primer) Depth Qualifying Exam for Ashish Rastogi (Ph.D. candidate)

Algorithmic Game Theory (a primer) Depth Qualifying Exam for Ashish Rastogi (Ph.D. candidate) Algorithmic Game Theory (a primer) Depth Qualifying Exam for Ashish Rastogi (Ph.D. candidate) 1 Game Theory Theory of strategic behavior among rational players. Typical game has several players. Each player

More information

CS364A: Algorithmic Game Theory Lecture #3: Myerson s Lemma

CS364A: Algorithmic Game Theory Lecture #3: Myerson s Lemma CS364A: Algorithmic Game Theory Lecture #3: Myerson s Lemma Tim Roughgarden September 3, 23 The Story So Far Last time, we introduced the Vickrey auction and proved that it enjoys three desirable and different

More information

Exercise List: Proving convergence of the (Stochastic) Gradient Descent Method for the Least Squares Problem.

Exercise List: Proving convergence of the (Stochastic) Gradient Descent Method for the Least Squares Problem. Exercise List: Proving convergence of the (Stochastic) Gradient Descent Method for the Least Squares Problem. Robert M. Gower. October 3, 07 Introduction This is an exercise in proving the convergence

More information

Modeling of Claim Counts with k fold Cross-validation

Modeling of Claim Counts with k fold Cross-validation Modeling of Claim Counts with k fold Cross-validation Alicja Wolny Dominiak 1 Abstract In the ratemaking process the ranking, which takes into account the number of claims generated by a policy in a given

More information

An introduction to game-theoretic probability from statistical viewpoint

An introduction to game-theoretic probability from statistical viewpoint .. An introduction to game-theoretic probability from statistical viewpoint Akimichi Takemura (joint with M.Kumon, K.Takeuchi and K.Miyabe) University of Tokyo May 14, 2013 RPTC2013 Takemura (Univ. of

More information

Volume Title: Bank Stock Prices and the Bank Capital Problem. Volume URL:

Volume Title: Bank Stock Prices and the Bank Capital Problem. Volume URL: This PDF is a selection from an out-of-print volume from the National Bureau of Economic Research Volume Title: Bank Stock Prices and the Bank Capital Problem Volume Author/Editor: David Durand Volume

More information

Harnessing Traditional and Alternative Credit Data: Credit Optics 5.0

Harnessing Traditional and Alternative Credit Data: Credit Optics 5.0 Harnessing Traditional and Alternative Credit Data: Credit Optics 5.0 March 1, 2013 Introduction Lenders and service providers are once again focusing on controlled growth and adjusting to a lending environment

More information

Problem Set 2. Theory of Banking - Academic Year Maria Bachelet March 2, 2017

Problem Set 2. Theory of Banking - Academic Year Maria Bachelet March 2, 2017 Problem Set Theory of Banking - Academic Year 06-7 Maria Bachelet maria.jua.bachelet@gmai.com March, 07 Exercise Consider an agency relationship in which the principal contracts the agent, whose effort

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

[D7] PROBABILITY DISTRIBUTION OF OUTSTANDING LIABILITY FROM INDIVIDUAL PAYMENTS DATA Contributed by T S Wright

[D7] PROBABILITY DISTRIBUTION OF OUTSTANDING LIABILITY FROM INDIVIDUAL PAYMENTS DATA Contributed by T S Wright Faculty and Institute of Actuaries Claims Reserving Manual v.2 (09/1997) Section D7 [D7] PROBABILITY DISTRIBUTION OF OUTSTANDING LIABILITY FROM INDIVIDUAL PAYMENTS DATA Contributed by T S Wright 1. Introduction

More information

JOINT STOCK COMPANY GROBINA 2017 COORPORATE GOVERNANCE PRINCIPLES

JOINT STOCK COMPANY GROBINA 2017 COORPORATE GOVERNANCE PRINCIPLES JOINT STOCK COMPANY GROBINA 2017 COORPORATE GOVERNANCE PRINCIPLES TABLE OF CONTENTS I INTRODUCTION... 3 1. General Provisions... 3 2. Objective of the Recommendations... 3 3. Implementation of the principles

More information

Chrysalis (CWH) Adaptive Youth Sports Charity. on the Blockchain

Chrysalis (CWH) Adaptive Youth Sports Charity. on the Blockchain Chrysalis (CWH) Adaptive Youth Sports Charity on the Blockchain 1 Abstract Chrysalis Is The Development Transformation Of A Caterpillar Into A Butterfly. It Is Our Goal To Help Bring Children With Special

More information

Financial Mathematics III Theory summary

Financial Mathematics III Theory summary Financial Mathematics III Theory summary Table of Contents Lecture 1... 7 1. State the objective of modern portfolio theory... 7 2. Define the return of an asset... 7 3. How is expected return defined?...

More information

Supplementary Material for Combinatorial Partial Monitoring Game with Linear Feedback and Its Application. A. Full proof for Theorems 4.1 and 4.

Supplementary Material for Combinatorial Partial Monitoring Game with Linear Feedback and Its Application. A. Full proof for Theorems 4.1 and 4. Supplementary Material for Combinatorial Partial Monitoring Game with Linear Feedback and Its Application. A. Full proof for Theorems 4.1 and 4. If the reader will recall, we have the following problem-specific

More information

Lecture 9: Prediction markets, fair games and martingales..

Lecture 9: Prediction markets, fair games and martingales.. Lecture 9: Prediction markets, fair games and martingales.. David Aldous March 2, 2016 The previous slide shows Intrade prediction market price for Romney to win the 2012 Republican Presidential Nomination

More information

Can Rare Events Explain the Equity Premium Puzzle?

Can Rare Events Explain the Equity Premium Puzzle? Can Rare Events Explain the Equity Premium Puzzle? Christian Julliard and Anisha Ghosh Working Paper 2008 P t d b J L i f NYU A t P i i Presented by Jason Levine for NYU Asset Pricing Seminar, Fall 2009

More information

DIVIDEND POLICY AND THE LIFE CYCLE HYPOTHESIS: EVIDENCE FROM TAIWAN

DIVIDEND POLICY AND THE LIFE CYCLE HYPOTHESIS: EVIDENCE FROM TAIWAN The International Journal of Business and Finance Research Volume 5 Number 1 2011 DIVIDEND POLICY AND THE LIFE CYCLE HYPOTHESIS: EVIDENCE FROM TAIWAN Ming-Hui Wang, Taiwan University of Science and Technology

More information

ELEMENTS OF MONTE CARLO SIMULATION

ELEMENTS OF MONTE CARLO SIMULATION APPENDIX B ELEMENTS OF MONTE CARLO SIMULATION B. GENERAL CONCEPT The basic idea of Monte Carlo simulation is to create a series of experimental samples using a random number sequence. According to the

More information

University of Economics, Prague. Analysis of Financial Condition of the Czech Professional Football Clubs. David Procházka

University of Economics, Prague. Analysis of Financial Condition of the Czech Professional Football Clubs. David Procházka University of Economics, Prague Faculty of Finance and Accounting Department of Financial Accounting and Auditing Analysis of Financial Condition of the Czech Professional Football Clubs David Procházka

More information

The Optimization Process: An example of portfolio optimization

The Optimization Process: An example of portfolio optimization ISyE 6669: Deterministic Optimization The Optimization Process: An example of portfolio optimization Shabbir Ahmed Fall 2002 1 Introduction Optimization can be roughly defined as a quantitative approach

More information

Optimal Debt-to-Equity Ratios and Stock Returns

Optimal Debt-to-Equity Ratios and Stock Returns Utah State University DigitalCommons@USU All Graduate Plan B and other Reports Graduate Studies 5-2014 Optimal Debt-to-Equity Ratios and Stock Returns Courtney D. Winn Utah State University Follow this

More information

SCHOOL OF BUSINESS, ECONOMICS AND MANAGEMENT. BF360 Operations Research

SCHOOL OF BUSINESS, ECONOMICS AND MANAGEMENT. BF360 Operations Research SCHOOL OF BUSINESS, ECONOMICS AND MANAGEMENT BF360 Operations Research Unit 3 Moses Mwale e-mail: moses.mwale@ictar.ac.zm BF360 Operations Research Contents Unit 3: Sensitivity and Duality 3 3.1 Sensitivity

More information

A Preference Foundation for Fehr and Schmidt s Model. of Inequity Aversion 1

A Preference Foundation for Fehr and Schmidt s Model. of Inequity Aversion 1 A Preference Foundation for Fehr and Schmidt s Model of Inequity Aversion 1 Kirsten I.M. Rohde 2 January 12, 2009 1 The author would like to thank Itzhak Gilboa, Ingrid M.T. Rohde, Klaus M. Schmidt, and

More information

Automated Options Trading Using Machine Learning

Automated Options Trading Using Machine Learning 1 Automated Options Trading Using Machine Learning Peter Anselmo and Karen Hovsepian and Carlos Ulibarri and Michael Kozloski Department of Management, New Mexico Tech, Socorro, NM 87801, U.S.A. We summarize

More information

INTELLECTUAL SUPPORT OF INVESTMENT DECISIONS BASED ON A CLUSTERING OF THE CORRELATION GRAPH OF SECURITIES

INTELLECTUAL SUPPORT OF INVESTMENT DECISIONS BASED ON A CLUSTERING OF THE CORRELATION GRAPH OF SECURITIES INTELLECTUAL SUPPORT OF INVESTMENT DECISIONS BASED ON A CLUSTERING OF THE CORRELATION GRAPH OF SECURITIES Izabella V. Lokshina Division of Economics and Business State University of New York Ravine Parkway

More information

Some developments about a new nonparametric test based on Gini s mean difference

Some developments about a new nonparametric test based on Gini s mean difference Some developments about a new nonparametric test based on Gini s mean difference Claudio Giovanni Borroni and Manuela Cazzaro Dipartimento di Metodi Quantitativi per le Scienze Economiche ed Aziendali

More information

Maximum Likelihood Estimation

Maximum Likelihood Estimation Maximum Likelihood Estimation The likelihood and log-likelihood functions are the basis for deriving estimators for parameters, given data. While the shapes of these two functions are different, they have

More information

These notes essentially correspond to chapter 13 of the text.

These notes essentially correspond to chapter 13 of the text. These notes essentially correspond to chapter 13 of the text. 1 Oligopoly The key feature of the oligopoly (and to some extent, the monopolistically competitive market) market structure is that one rm

More information

models Dipartimento di studi per l economia e l impresa University of Piemonte Orientale Faculty of Finance Cass Business School

models Dipartimento di studi per l economia e l impresa University of Piemonte Orientale Faculty of Finance Cass Business School A.M. Gambaro R. G. Fusai Dipartimento di studi per l economia e l impresa University of Piemonte Orientale Faculty of Finance Cass Business School Dipartimento di Statistica e Metodi Quantitativi University

More information

NEW I-O TABLE AND SAMs FOR POLAND

NEW I-O TABLE AND SAMs FOR POLAND Łucja Tomasewic University of Lod Institute of Econometrics and Statistics 41 Rewolucji 195 r, 9-214 Łódź Poland, tel. (4842) 6355187 e-mail: tiase@krysia. uni.lod.pl Draft NEW I-O TABLE AND SAMs FOR POLAND

More information

The Accrual Anomaly in the Game-Theoretic Setting

The Accrual Anomaly in the Game-Theoretic Setting The Accrual Anomaly in the Game-Theoretic Setting Khrystyna Bochkay Academic adviser: Glenn Shafer Rutgers Business School Summer 2010 Abstract This paper proposes an alternative analysis of the accrual

More information

Predicting and Preventing Credit Card Default

Predicting and Preventing Credit Card Default Predicting and Preventing Credit Card Default Project Plan MS-E2177: Seminar on Case Studies in Operations Research Client: McKinsey Finland Ari Viitala Max Merikoski (Project Manager) Nourhan Shafik 21.2.2018

More information

Prediction of Stock Price Movements Using Options Data

Prediction of Stock Price Movements Using Options Data Prediction of Stock Price Movements Using Options Data Charmaine Chia cchia@stanford.edu Abstract This study investigates the relationship between time series data of a daily stock returns and features

More information

Market Variables and Financial Distress. Giovanni Fernandez Stetson University

Market Variables and Financial Distress. Giovanni Fernandez Stetson University Market Variables and Financial Distress Giovanni Fernandez Stetson University In this paper, I investigate the predictive ability of market variables in correctly predicting and distinguishing going concern

More information

Cross-section Study on Return of Stocks to. Future-expectation Theorem

Cross-section Study on Return of Stocks to. Future-expectation Theorem Cross-section Study on Return of Stocks to Future-expectation Theorem Yiqiao Yin B.A. Mathematics 14 and M.S. Finance 16 University of Rochester - Simon Business School Fall of 2015 Abstract This paper

More information

Game Theory I. Author: Neil Bendle Marketing Metrics Reference: Chapter Neil Bendle and Management by the Numbers, Inc.

Game Theory I. Author: Neil Bendle Marketing Metrics Reference: Chapter Neil Bendle and Management by the Numbers, Inc. Game Theory I This module provides an introduction to game theory for managers and includes the following topics: matrix basics, zero and non-zero sum games, and dominant strategies. Author: Neil Bendle

More information

Risk management. VaR and Expected Shortfall. Christian Groll. VaR and Expected Shortfall Risk management Christian Groll 1 / 56

Risk management. VaR and Expected Shortfall. Christian Groll. VaR and Expected Shortfall Risk management Christian Groll 1 / 56 Risk management VaR and Expected Shortfall Christian Groll VaR and Expected Shortfall Risk management Christian Groll 1 / 56 Introduction Introduction VaR and Expected Shortfall Risk management Christian

More information

Likelihood-based Optimization of Threat Operation Timeline Estimation

Likelihood-based Optimization of Threat Operation Timeline Estimation 12th International Conference on Information Fusion Seattle, WA, USA, July 6-9, 2009 Likelihood-based Optimization of Threat Operation Timeline Estimation Gregory A. Godfrey Advanced Mathematics Applications

More information

Dynamic vs. static decision strategies in adversarial reasoning

Dynamic vs. static decision strategies in adversarial reasoning Dynamic vs. static decision strategies in adversarial reasoning David A. Pelta 1 Ronald R. Yager 2 1. Models of Decision and Optimization Research Group Department of Computer Science and A.I., University

More information

Market Value of the Firm, Market Value of Equity, Return Rate on Capital and the Optimal Capital Structure

Market Value of the Firm, Market Value of Equity, Return Rate on Capital and the Optimal Capital Structure Market Value of the Firm, Market Value of Equity, Return Rate on Capital and the Optimal Capital Structure Chao Chiung Ting Michigan State University, USA E-mail: tingtch7ti@aol.com Received: September

More information

Probability without Measure!

Probability without Measure! Probability without Measure! Mark Saroufim University of California San Diego msaroufi@cs.ucsd.edu February 18, 2014 Mark Saroufim (UCSD) It s only a Game! February 18, 2014 1 / 25 Overview 1 History of

More information

The Impact of Liquidity Ratios on Profitability (With special reference to Listed Manufacturing Companies in Sri Lanka)

The Impact of Liquidity Ratios on Profitability (With special reference to Listed Manufacturing Companies in Sri Lanka) The Impact of Liquidity Ratios on Profitability (With special reference to Listed Manufacturing Companies in Sri Lanka) K. H. I. Madushanka 1, M. Jathurika 2 1, 2 Department of Business and Management

More information

SuperFund Up 40% Since Release!

SuperFund Up 40% Since Release! March 2018 1 SuperFund Up 40% Since Release! Up 40% Since Release (5/17) Weekly Aggressive OmniFund chart from www.myomnifunds.com OmniFunds, our Asset-Switching Platform, was developed and released in

More information

Return on Assets and Financial Soundness Analysis: Case Study of Grain Industry Companies in Uzbekistan

Return on Assets and Financial Soundness Analysis: Case Study of Grain Industry Companies in Uzbekistan International Journal of Management Science and Business Adminis tration Volume 4, Issue 6, September 2018, Pages 52-56 DOI: 10.18775/ijmsba.1849-5664-5419.2014.46.1006 URL: http://dx.doi.org/10.18775/ijmsba.1849-5664-5419.2014.46.1006

More information

Testing for Convergence from the Micro-Level

Testing for Convergence from the Micro-Level Testing for Convergence from the Micro-Level Giorgio Fazio Università degli Studi di Palermo Davide Piacentino Università di Napoli "Parthenope" University of Glasgow May 6, 2011 Abstract In the growth

More information

On exports stability: the role of product and geographical diversification

On exports stability: the role of product and geographical diversification On exports stability: the role of product and geographical diversification Marco Grazzi 1 and Daniele Moschella 2 1 Department of Economics - University of Bologna, Bologna, Italy. 2 LEM - Scuola Superiore

More information

Testing the significance of the RV coefficient

Testing the significance of the RV coefficient 1 / 19 Testing the significance of the RV coefficient Application to napping data Julie Josse, François Husson and Jérôme Pagès Applied Mathematics Department Agrocampus Rennes, IRMAR CNRS UMR 6625 Agrostat

More information

A No-Arbitrage Theorem for Uncertain Stock Model

A No-Arbitrage Theorem for Uncertain Stock Model Fuzzy Optim Decis Making manuscript No (will be inserted by the editor) A No-Arbitrage Theorem for Uncertain Stock Model Kai Yao Received: date / Accepted: date Abstract Stock model is used to describe

More information

Behavioral patterns of long term saving : Predictive analysis of adverse behaviors on a savings portfolio

Behavioral patterns of long term saving : Predictive analysis of adverse behaviors on a savings portfolio Behavioral patterns of long term saving : Predictive analysis of adverse behaviors on a savings portfolio Introduction What is the context of this case study and what about the underlying challenges? Introduction

More information

International Conference on Information Systems for Business Competitiveness (ICISBC 2013) 211

International Conference on Information Systems for Business Competitiveness (ICISBC 2013) 211 International Conference on Information Systems for Business Competitiveness (ICISBC 2013) 211 Decision Support System for Evaluation Procurement of Goods with Simple Additive Weighting Method (SAW) Fajar

More information

Stock-Split Announcement Effect. The interesting event study [1] deals with stock-split announcements.

Stock-Split Announcement Effect. The interesting event study [1] deals with stock-split announcements. Event Study An event study tests market efficiency: one investigates whether the occurrence of a certain event creates an opportunity for economic profit. 1 Ex Dividend Date An example of an event study

More information

Yale ICF Working Paper No First Draft: February 21, 1992 This Draft: June 29, Safety First Portfolio Insurance

Yale ICF Working Paper No First Draft: February 21, 1992 This Draft: June 29, Safety First Portfolio Insurance Yale ICF Working Paper No. 08 11 First Draft: February 21, 1992 This Draft: June 29, 1992 Safety First Portfolio Insurance William N. Goetzmann, International Center for Finance, Yale School of Management,

More information

Martingale Pricing Theory in Discrete-Time and Discrete-Space Models

Martingale Pricing Theory in Discrete-Time and Discrete-Space Models IEOR E4707: Foundations of Financial Engineering c 206 by Martin Haugh Martingale Pricing Theory in Discrete-Time and Discrete-Space Models These notes develop the theory of martingale pricing in a discrete-time,

More information

Measuring Sustainability in the UN System of Environmental-Economic Accounting

Measuring Sustainability in the UN System of Environmental-Economic Accounting Measuring Sustainability in the UN System of Environmental-Economic Accounting Kirk Hamilton April 2014 Grantham Research Institute on Climate Change and the Environment Working Paper No. 154 The Grantham

More information

Test 1. ECON3161, Game Theory. Tuesday, September 25 th

Test 1. ECON3161, Game Theory. Tuesday, September 25 th Test 1 ECON3161, Game Theory Tuesday, September 2 th Directions: Answer each question completely. If you cannot determine the answer, explaining how you would arrive at the answer may earn you some points.

More information

Does Naive Not Mean Optimal? The Case for the 1/N Strategy in Brazilian Equities

Does Naive Not Mean Optimal? The Case for the 1/N Strategy in Brazilian Equities Does Naive Not Mean Optimal? GV INVEST 05 The Case for the 1/N Strategy in Brazilian Equities December, 2016 Vinicius Esposito i The development of optimal approaches to portfolio construction has rendered

More information

Policy modeling: Definition, classification and evaluation

Policy modeling: Definition, classification and evaluation Available online at www.sciencedirect.com Journal of Policy Modeling 33 (2011) 523 536 Policy modeling: Definition, classification and evaluation Mario Arturo Ruiz Estrada Faculty of Economics and Administration

More information

A Genetic Algorithm improving tariff variables reclassification for risk segmentation in Motor Third Party Liability Insurance.

A Genetic Algorithm improving tariff variables reclassification for risk segmentation in Motor Third Party Liability Insurance. A Genetic Algorithm improving tariff variables reclassification for risk segmentation in Motor Third Party Liability Insurance. Alberto Busetto, Andrea Costa RAS Insurance, Italy SAS European Users Group

More information

FE670 Algorithmic Trading Strategies. Stevens Institute of Technology

FE670 Algorithmic Trading Strategies. Stevens Institute of Technology FE670 Algorithmic Trading Strategies Lecture 4. Cross-Sectional Models and Trading Strategies Steve Yang Stevens Institute of Technology 09/26/2013 Outline 1 Cross-Sectional Methods for Evaluation of Factor

More information

UC Berkeley Haas School of Business Economic Analysis for Business Decisions (EWMBA 201A)

UC Berkeley Haas School of Business Economic Analysis for Business Decisions (EWMBA 201A) UC Berkeley Haas School of Business Economic Analysis for Business Decisions (EWMBA 201A) Competitive markets and economic efficiency (PR 8.1-8.6 and 9.1-9.6) Maximizing short- and long-run profits Lectures

More information

Math489/889 Stochastic Processes and Advanced Mathematical Finance Homework 4

Math489/889 Stochastic Processes and Advanced Mathematical Finance Homework 4 Math489/889 Stochastic Processes and Advanced Mathematical Finance Homework 4 Steve Dunbar Due Mon, October 5, 2009 1. (a) For T 0 = 10 and a = 20, draw a graph of the probability of ruin as a function

More information