ORF 307: Lecture 12. Linear Programming: Chapter 11: Game Theory

Size: px
Start display at page:

Download "ORF 307: Lecture 12. Linear Programming: Chapter 11: Game Theory"

Transcription

1 ORF 307: Lecture 12 Linear Programming: Chapter 11: Game Theory Robert J. Vanderbei April 3, 2018 Slides last edited on April 3, rvdb

2 Game Theory John Nash = A Beautiful Mind 1

3 Game Theory The other John Nash 2

4 Rock-Paper-Scissors A two person game. Rules. At the count of three declare one of: Rock Paper Scissors Winner Selection. Identical selection is a draw. Otherwise: Rock dulls Scissors Paper covers Rock Scissors cuts Paper Check out Sam Kass version: Rock, Paper, Scissors, Lizard, Spock It was featured on The Big Bang Theory. 3

5 Payoff Matrix Payoffs are from row player to column player: A = R P S R P S Note: Any deterministic strategy employed by either player can be defeated systematically by the other player. 4

6 Two-Person Zero-Sum Games Given: m n matrix A. Row player selects a strategy i {1,..., m}. Column player selects a strategy j {1,..., n}. Row player pays column player a ij dollars. Note: The rows of A represent deterministic strategies for row player, while columns of A represent deterministic strategies for column player. Deterministic strategies can be (and usually are) bad. 5

7 Randomized Strategies. Suppose row player picks i with probability y i. Suppose column player picks j with probability x j. Throughout, x = [ x 1 x 2 ] T x n and y = [ y 1 y 2 ] T y m will denote stochastic vectors: x j 0, j = 1, 2,..., n x j = 1 j y i 0, i = 1, 2,..., m y i = 1 i If row player uses random strategy y and column player uses x, then expected payoff from row player to column player is y i a ij x j = y T Ax i j 6

8 Column Player s Analysis Suppose column player were to adopt strategy x. Then, row player s best defense is to use strategy y that minimizes y T Ax: min y y T Ax And so column player should choose that x which maximizes these possibilities: max x min y y T Ax 7

9 Quiz What s the solution to this problem: minimize 3y 1 + 6y 2 + 2y y 4 + 7y 5 subject to: y 1 + y 2 + y 3 + y 4 + y 5 = 1 y i 0, i = 1, 2, 3, 4, 5 8

10 Solving Max-Min Problems as LPs Inner optimization is easy: min y y T Ax = min i e T i Ax (e i denotes the vector that s all zeros except for a one in the i-th position that is, deterministic strategy i). Note: Reduced a minimization over a continuum to one over a finite set. We have: max (min i x j = 1, j e T i Ax) x j 0, j = 1, 2,..., n. 9

11 Reduction to a Linear Programming Problem Introduce a scalar variable v representing the value of the inner minimization: max v v e T i Ax, i = 1, 2,..., m, x j = 1, j x j 0, j = 1, 2,..., n. Writing in pure matrix-vector notation: max v ve Ax 0 e T x = 1 x 0 (e without a subscript denotes the vector of all ones). 10

12 Finally, in Block Matrix Form [ ] T [ ] 0 x max 1 v [ A e e T 0 ] [ x v ] = [ 0 1 ] x 0 v free 11

13 Row Player s Perspective Similarly, row player seeks y attaining: min y max x y T Ax which is equivalent to: min u ue A T y 0 e T y = 1 y 0 12

14 Row Player s Problem in Block-Matrix Form [ ] T [ ] 0 y min 1 u [ A T e e T 0 ] [ y u ] = [ 0 1 ] y 0 u free Note: Row player s problem is dual to column player s: [ 0 max 1 ] T [ x v ] [ 0 min 1 ] T [ y u ] [ A e e T 0 ] [ x v ] = [ 0 1 ] [ A T e e T 0 ] [ y u ] = [ 0 1 ] x 0 v free y 0 u free 13

15 MiniMax Theorem Theorem. Let x denote column player s solution to her max min problem. Let y denote row player s solution to his min max problem. Then max x Proof. From Strong Duality Theorem, we have Also, y T Ax = min y y T Ax. u = v. v u = min i = max j e T i Ax = min y y T Ae j = max x y T Ax y T Ax QED 14

16 AMPL Model set ROWS; set COLS; param A {ROWS,COLS} default 0; var x{cols} >= 0; var v; maximize zot: v; subject to ineqs {i in ROWS}: sum{j in COLS} -A[i,j] * x[j] + v <= 0; subject to equal: sum{j in COLS} x[j] = 1; 15

17 AMPL Data data; set ROWS := P S R; set COLS := P S R; param A: P S R:= P S R ; solve; printf {j in COLS}: " %3s %10.7f \n", j, 102*x[j]; printf {i in ROWS}: " %3s %10.7f \n", i, 102*ineqs[i]; printf: "Value = %10.7f \n", 102*v; 16

18 AMPL Output ampl gamethy.mod LOQO: optimal solution (12 iterations) primal objective dual objective P S R P S R Value =

19 Dual of Problems in General Form (Review) Consider: max c T x Ax = b x 0 Rewrite equality constraints as pairs of inequalities: max c T x Ax b Ax b x 0 Put into block-matrix form: [ max ct ] x A x [ A x 0 b b ] Dual is: [ ] T [ ] b y + min b y [ ] [ ] A T A T y + y Which is equivalent to: c y +, y 0 min b T (y + y ) A T (y + y ) c y +, y 0 Finally, letting y = y + y, we get min b T y A T y c y free. 18

20 Summary Equality constraints = free variables in dual. Inequality constraints = nonnegative variables in dual. Corollary: Free variables = equality constraints in dual. Nonnegative variables = inequality constraints in dual. 19

21 A Real-World Example As before, we can let let R t,j = S j (t)/s j (t 1) and view R as a payoff matrix in a game 20 between Fate and the Investor. The Ultra-Conservative Investor Consider again some historical investment data (S j (t)): XLU-utilities XLB-materials XLI-industrials XLV-healthcare XLF-financial XLE-energy MDY-midcap XLK-technology XLY-discretionary XLP-staples QQQ SPY-S&P500 XLY QQQ XLV MDY XLK 2.5 XLI SPY XLP XLB Share Price 2 XLF XLU XLE Date

22 Fate s Conspiracy The columns represent pure strategies for our conservative investor. The rows represent how history might repeat itself. Of course, for tomorrow, Fate won t just repeat a previous day s outcome but, rather, will present some mixture of these previous days. Likewise, the investor won t put all of her money into one asset. Instead she will put a certain fraction into each. Using this data in the game-theory ampl model, we get the following mixed-strategy percentages for Fate and for the investor. Investor s Optimal Asset Mix: XLP 98.4 XLU 1.6 Mean Old Fate s Mix: = Black Monday (2011) The value of the game is the investor s expected return, 96.2%, which is actually a loss of 3.8%. The data can be download from here: Here, xlu is just one of the funds of interest. 21

23 Starting From To Ignore Black Monday (2011) XLU-utilities XLB-materials XLI-industrials XLV-healthcare XLF-financial XLE-energy MDY-midcap XLK-technology XLY-discretionary XLP-staples QQQ SPY-S&P500 XLV XLY XLF QQQ Share Price MDY XLI SPY XLK XLP XLB XLU 1.2 XLE Date 22

24 Fate s Conspiracy Investor s Optimal Asset Mix: XLK 75.5 XLV 15.9 XLU 6.2 XLB 2.2 XLI 0.2 Mean Old Fate s Mix: The value of the game is the investor s expected return, 97.7%, which is actually a loss of 2.3%. 23

25 Giving Fate Fewer Options Thousands seemed unfair How about XLU-utilities XLB-materials XLI-industrials XLV-healthcare XLF-financial XLE-energy MDY-midcap XLK-technology XLY-discretionary XLP-staples QQQ SPY-S&P500 XLV 1 XLU MDY Share Price 0.98 XLE XLY XLP XLF SPY 0.96 QQQ XLI XLK 0.94 XLB Day in March

26 Fate s Conspiracy Investor s Optimal Asset Mix: MDY 83.7 XLE 13.2 XLF 3.2 Mean Old Fate s Mix: The value of the game is the investor s expected return, 98.7%, which is actually a loss of 1.3%. 25

ORF 307 Lecture 3. Chapter 13, Section 1 Portfolio Optimization

ORF 307 Lecture 3. Chapter 13, Section 1 Portfolio Optimization ORF 307 Lecture 3 Chapter 13, Section 1 Portfolio Optimization Robert Vanderbei February 14, 2012 Operations Research and Financial Engineering, Princeton University http://www.princeton.edu/ rvdb Portfolio

More information

ORF 307: Lecture 3. Linear Programming: Chapter 13, Section 1 Portfolio Optimization. Robert Vanderbei. February 13, 2016

ORF 307: Lecture 3. Linear Programming: Chapter 13, Section 1 Portfolio Optimization. Robert Vanderbei. February 13, 2016 ORF 307: Lecture 3 Linear Programming: Chapter 13, Section 1 Portfolio Optimization Robert Vanderbei February 13, 2016 Slides last edited on February 14, 2018 http://www.princeton.edu/ rvdb Portfolio Optimization:

More information

LINEAR PROGRAMMING. Homework 7

LINEAR PROGRAMMING. Homework 7 LINEAR PROGRAMMING Homework 7 Fall 2014 Csci 628 Megan Rose Bryant 1. Your friend is taking a Linear Programming course at another university and for homework she is asked to solve the following LP: Primal:

More information

ORF 307: Lecture 19. Linear Programming: Chapter 13, Section 2 Pricing American Options. Robert Vanderbei. May 1, 2018

ORF 307: Lecture 19. Linear Programming: Chapter 13, Section 2 Pricing American Options. Robert Vanderbei. May 1, 2018 ORF 307: Lecture 19 Linear Programming: Chapter 13, Section 2 Pricing American Options Robert Vanderbei May 1, 2018 Slides last edited on April 30, 2018 http://www.princeton.edu/ rvdb American Options

More information

Game Theory Tutorial 3 Answers

Game Theory Tutorial 3 Answers Game Theory Tutorial 3 Answers Exercise 1 (Duality Theory) Find the dual problem of the following L.P. problem: max x 0 = 3x 1 + 2x 2 s.t. 5x 1 + 2x 2 10 4x 1 + 6x 2 24 x 1 + x 2 1 (1) x 1 + 3x 2 = 9 x

More information

Outline for today. Stat155 Game Theory Lecture 13: General-Sum Games. General-sum games. General-sum games. Dominated pure strategies

Outline for today. Stat155 Game Theory Lecture 13: General-Sum Games. General-sum games. General-sum games. Dominated pure strategies Outline for today Stat155 Game Theory Lecture 13: General-Sum Games Peter Bartlett October 11, 2016 Two-player general-sum games Definitions: payoff matrices, dominant strategies, safety strategies, Nash

More information

Zero-sum games of two players. Zero-sum games of two players. Zero-sum games of two players. Zero-sum games of two players

Zero-sum games of two players. Zero-sum games of two players. Zero-sum games of two players. Zero-sum games of two players Martin Branda Charles University Faculty of Mathematics and Physics Department of Probability and Mathematical Statistics Computational Aspects of Optimization A triplet {X, Y, K} is called a game of two

More information

TUFTS UNIVERSITY DEPARTMENT OF CIVIL AND ENVIRONMENTAL ENGINEERING ES 152 ENGINEERING SYSTEMS Spring Lesson 16 Introduction to Game Theory

TUFTS UNIVERSITY DEPARTMENT OF CIVIL AND ENVIRONMENTAL ENGINEERING ES 152 ENGINEERING SYSTEMS Spring Lesson 16 Introduction to Game Theory TUFTS UNIVERSITY DEPARTMENT OF CIVIL AND ENVIRONMENTAL ENGINEERING ES 52 ENGINEERING SYSTEMS Spring 20 Introduction: Lesson 6 Introduction to Game Theory We will look at the basic ideas of game theory.

More information

Chapter 10: Mixed strategies Nash equilibria, reaction curves and the equality of payoffs theorem

Chapter 10: Mixed strategies Nash equilibria, reaction curves and the equality of payoffs theorem Chapter 10: Mixed strategies Nash equilibria reaction curves and the equality of payoffs theorem Nash equilibrium: The concept of Nash equilibrium can be extended in a natural manner to the mixed strategies

More information

6.896 Topics in Algorithmic Game Theory February 10, Lecture 3

6.896 Topics in Algorithmic Game Theory February 10, Lecture 3 6.896 Topics in Algorithmic Game Theory February 0, 200 Lecture 3 Lecturer: Constantinos Daskalakis Scribe: Pablo Azar, Anthony Kim In the previous lecture we saw that there always exists a Nash equilibrium

More information

Strategy Lines and Optimal Mixed Strategy for R

Strategy Lines and Optimal Mixed Strategy for R Strategy Lines and Optimal Mixed Strategy for R Best counterstrategy for C for given mixed strategy by R In the previous lecture we saw that if R plays a particular mixed strategy, [p, p, and shows no

More information

MAT 4250: Lecture 1 Eric Chung

MAT 4250: Lecture 1 Eric Chung 1 MAT 4250: Lecture 1 Eric Chung 2Chapter 1: Impartial Combinatorial Games 3 Combinatorial games Combinatorial games are two-person games with perfect information and no chance moves, and with a win-or-lose

More information

m 11 m 12 Non-Zero Sum Games Matrix Form of Zero-Sum Games R&N Section 17.6

m 11 m 12 Non-Zero Sum Games Matrix Form of Zero-Sum Games R&N Section 17.6 Non-Zero Sum Games R&N Section 17.6 Matrix Form of Zero-Sum Games m 11 m 12 m 21 m 22 m ij = Player A s payoff if Player A follows pure strategy i and Player B follows pure strategy j 1 Results so far

More information

Yao s Minimax Principle

Yao s Minimax Principle Complexity of algorithms The complexity of an algorithm is usually measured with respect to the size of the input, where size may for example refer to the length of a binary word describing the input,

More information

Using the Maximin Principle

Using the Maximin Principle Using the Maximin Principle Under the maximin principle, it is easy to see that Rose should choose a, making her worst-case payoff 0. Colin s similar rationality as a player induces him to play (under

More information

Math 167: Mathematical Game Theory Instructor: Alpár R. Mészáros

Math 167: Mathematical Game Theory Instructor: Alpár R. Mészáros Math 167: Mathematical Game Theory Instructor: Alpár R. Mészáros Midterm #1, February 3, 2017 Name (use a pen): Student ID (use a pen): Signature (use a pen): Rules: Duration of the exam: 50 minutes. By

More information

Best counterstrategy for C

Best counterstrategy for C Best counterstrategy for C In the previous lecture we saw that if R plays a particular mixed strategy and shows no intention of changing it, the expected payoff for R (and hence C) varies as C varies her

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

Regret Minimization and Security Strategies

Regret Minimization and Security Strategies Chapter 5 Regret Minimization and Security Strategies Until now we implicitly adopted a view that a Nash equilibrium is a desirable outcome of a strategic game. In this chapter we consider two alternative

More information

15.053/8 February 28, person 0-sum (or constant sum) game theory

15.053/8 February 28, person 0-sum (or constant sum) game theory 15.053/8 February 28, 2013 2-person 0-sum (or constant sum) game theory 1 Quotes of the Day My work is a game, a very serious game. -- M. C. Escher (1898-1972) Conceal a flaw, and the world will imagine

More information

ECE 586GT: Problem Set 1: Problems and Solutions Analysis of static games

ECE 586GT: Problem Set 1: Problems and Solutions Analysis of static games University of Illinois Fall 2018 ECE 586GT: Problem Set 1: Problems and Solutions Analysis of static games Due: Tuesday, Sept. 11, at beginning of class Reading: Course notes, Sections 1.1-1.4 1. [A random

More information

1 Shapley-Shubik Model

1 Shapley-Shubik Model 1 Shapley-Shubik Model There is a set of buyers B and a set of sellers S each selling one unit of a good (could be divisible or not). Let v ij 0 be the monetary value that buyer j B assigns to seller i

More information

Thursday, March 3

Thursday, March 3 5.53 Thursday, March 3 -person -sum (or constant sum) game theory -dimensional multi-dimensional Comments on first midterm: practice test will be on line coverage: every lecture prior to game theory quiz

More information

Comparative Study between Linear and Graphical Methods in Solving Optimization Problems

Comparative Study between Linear and Graphical Methods in Solving Optimization Problems Comparative Study between Linear and Graphical Methods in Solving Optimization Problems Mona M Abd El-Kareem Abstract The main target of this paper is to establish a comparative study between the performance

More information

COMP331/557. Chapter 6: Optimisation in Finance: Cash-Flow. (Cornuejols & Tütüncü, Chapter 3)

COMP331/557. Chapter 6: Optimisation in Finance: Cash-Flow. (Cornuejols & Tütüncü, Chapter 3) COMP331/557 Chapter 6: Optimisation in Finance: Cash-Flow (Cornuejols & Tütüncü, Chapter 3) 159 Cash-Flow Management Problem A company has the following net cash flow requirements (in 1000 s of ): Month

More information

Strategy -1- Strategy

Strategy -1- Strategy Strategy -- Strategy A Duopoly, Cournot equilibrium 2 B Mixed strategies: Rock, Scissors, Paper, Nash equilibrium 5 C Games with private information 8 D Additional exercises 24 25 pages Strategy -2- A

More information

CS711 Game Theory and Mechanism Design

CS711 Game Theory and Mechanism Design CS711 Game Theory and Mechanism Design Problem Set 1 August 13, 2018 Que 1. [Easy] William and Henry are participants in a televised game show, seated in separate booths with no possibility of communicating

More information

ECE 586BH: Problem Set 5: Problems and Solutions Multistage games, including repeated games, with observed moves

ECE 586BH: Problem Set 5: Problems and Solutions Multistage games, including repeated games, with observed moves University of Illinois Spring 01 ECE 586BH: Problem Set 5: Problems and Solutions Multistage games, including repeated games, with observed moves Due: Reading: Thursday, April 11 at beginning of class

More information

CS 7180: Behavioral Modeling and Decision- making in AI

CS 7180: Behavioral Modeling and Decision- making in AI CS 7180: Behavioral Modeling and Decision- making in AI Algorithmic Game Theory Prof. Amy Sliva November 30, 2012 Prisoner s dilemma Two criminals are arrested, and each offered the same deal: If you defect

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

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

(a) Describe the game in plain english and find its equivalent strategic form.

(a) Describe the game in plain english and find its equivalent strategic form. Risk and Decision Making (Part II - Game Theory) Mock Exam MIT/Portugal pages Professor João Soares 2007/08 1 Consider the game defined by the Kuhn tree of Figure 1 (a) Describe the game in plain english

More information

Stochastic Games and Bayesian Games

Stochastic Games and Bayesian Games Stochastic Games and Bayesian Games CPSC 532L Lecture 10 Stochastic Games and Bayesian Games CPSC 532L Lecture 10, Slide 1 Lecture Overview 1 Recap 2 Stochastic Games 3 Bayesian Games Stochastic Games

More information

GAME THEORY. Game theory. The odds and evens game. Two person, zero sum game. Prototype example

GAME THEORY. Game theory. The odds and evens game. Two person, zero sum game. Prototype example Game theory GAME THEORY (Hillier & Lieberman Introduction to Operations Research, 8 th edition) Mathematical theory that deals, in an formal, abstract way, with the general features of competitive situations

More information

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

Game Theory. Lecture Notes By Y. Narahari. Department of Computer Science and Automation Indian Institute of Science Bangalore, India October 2012 Game Theory Lecture Notes By Y. Narahari Department of Computer Science and Automation Indian Institute of Science Bangalore, India October 22 COOPERATIVE GAME THEORY Correlated Strategies and Correlated

More information

Sharpe-optimal SPDR portfolios

Sharpe-optimal SPDR portfolios Sharpe-optimal SPDR portfolios or How to beat the market and sleep well at night by Vic Norton Bowling Green State University Bowling Green, Ohio 43402-2223 USA mailto:vic@norton.name http://vic.norton.name

More information

Commentary. CBOE Volatility Index (VIX) Brexit Election VIX

Commentary. CBOE Volatility Index (VIX) Brexit Election VIX LongRun Monthly Strategy Review Mar 2018 AR -0.7% AG -2.9% TMG -2.3% SP500-2.7% GDP 0.0% Commentary I finished last month s commentary with a caution that equity markets might retest the lows of February

More information

GAME THEORY. (Hillier & Lieberman Introduction to Operations Research, 8 th edition)

GAME THEORY. (Hillier & Lieberman Introduction to Operations Research, 8 th edition) GAME THEORY (Hillier & Lieberman Introduction to Operations Research, 8 th edition) Game theory Mathematical theory that deals, in an formal, abstract way, with the general features of competitive situations

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

Four Components Of A Successful Income Portfolio

Four Components Of A Successful Income Portfolio Four Components Of A Successful Income Portfolio Presented by: David Fabian Michael Fabian FMD Capital Management One Park Plaza, Suite 600 Irvine, CA 92614 Ph: 888-823-8111 F: 949-266-5788 www.fmdcapital.com

More information

The Defined Risk Strategy

The Defined Risk Strategy The Defined Risk Strategy Marc Odo, CFA, CAIA, CIPM, CFP Swan at a Glance FOR ADVISOR USE ONLY Swan is an independent advisory firm based in Durango, CO Founded in 1997 by Randy Swan An SEC-registered

More information

56:171 Operations Research Midterm Exam Solutions October 22, 1993

56:171 Operations Research Midterm Exam Solutions October 22, 1993 56:171 O.R. Midterm Exam Solutions page 1 56:171 Operations Research Midterm Exam Solutions October 22, 1993 (A.) /: Indicate by "+" ="true" or "o" ="false" : 1. A "dummy" activity in CPM has duration

More information

Stochastic Programming and Financial Analysis IE447. Midterm Review. Dr. Ted Ralphs

Stochastic Programming and Financial Analysis IE447. Midterm Review. Dr. Ted Ralphs Stochastic Programming and Financial Analysis IE447 Midterm Review Dr. Ted Ralphs IE447 Midterm Review 1 Forming a Mathematical Programming Model The general form of a mathematical programming model is:

More information

Head Traders, Technical Contacts, Compliance Officers, Heads of ETF Trading, Structured Products Traders. Exchange-Traded Fund Symbol CUSIP #

Head Traders, Technical Contacts, Compliance Officers, Heads of ETF Trading, Structured Products Traders. Exchange-Traded Fund Symbol CUSIP # Information Circular: PowerShares ETF Trust II To: From: Head Traders, Technical Contacts, Compliance Officers, Heads of ETF Trading, Structured Products Traders PHLX Listing Qualifications Department

More information

6.254 : Game Theory with Engineering Applications Lecture 3: Strategic Form Games - Solution Concepts

6.254 : Game Theory with Engineering Applications Lecture 3: Strategic Form Games - Solution Concepts 6.254 : Game Theory with Engineering Applications Lecture 3: Strategic Form Games - Solution Concepts Asu Ozdaglar MIT February 9, 2010 1 Introduction Outline Review Examples of Pure Strategy Nash Equilibria

More information

Week 8: Basic concepts in game theory

Week 8: Basic concepts in game theory Week 8: Basic concepts in game theory Part 1: Examples of games We introduce here the basic objects involved in game theory. To specify a game ones gives The players. The set of all possible strategies

More information

S&P Day A/D Line

S&P Day A/D Line Stocks Above 5-Day The S&P 5 experienced its first 1%+ move in either direction today for the first time in 58 trading days. The 1.4% drop left the index below its 5-day moving average as well. Market

More information

Case Study : Portfolio Theory

Case Study : Portfolio Theory Case Study : Portfolio Theory Dr. Kempthorne October 24, 2013 Contents 1 Simulation: Two-Asset Portfolios 2 2 US Sector ETFs: 2009-2013 4 2.1 Mean, Variance, Correlation Statistics............... 4 2.2

More information

Outline for today. Stat155 Game Theory Lecture 19: Price of anarchy. Cooperative games. Price of anarchy. Price of anarchy

Outline for today. Stat155 Game Theory Lecture 19: Price of anarchy. Cooperative games. Price of anarchy. Price of anarchy Outline for today Stat155 Game Theory Lecture 19:.. Peter Bartlett Recall: Linear and affine latencies Classes of latencies Pigou networks Transferable versus nontransferable utility November 1, 2016 1

More information

Solution to Tutorial 1

Solution to Tutorial 1 Solution to Tutorial 1 011/01 Semester I MA464 Game Theory Tutor: Xiang Sun August 4, 011 1 Review Static means one-shot, or simultaneous-move; Complete information means that the payoff functions are

More information

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

Game Theory. Lecture Notes By Y. Narahari. Department of Computer Science and Automation Indian Institute of Science Bangalore, India October 2012 Game Theory Lecture Notes By Y. Narahari Department of Computer Science and Automation Indian Institute of Science Bangalore, India October 2012 COOPERATIVE GAME THEORY The Core Note: This is a only a

More information

Stochastic Games and Bayesian Games

Stochastic Games and Bayesian Games Stochastic Games and Bayesian Games CPSC 532l Lecture 10 Stochastic Games and Bayesian Games CPSC 532l Lecture 10, Slide 1 Lecture Overview 1 Recap 2 Stochastic Games 3 Bayesian Games 4 Analyzing Bayesian

More information

Solution to Tutorial /2013 Semester I MA4264 Game Theory

Solution to Tutorial /2013 Semester I MA4264 Game Theory Solution to Tutorial 1 01/013 Semester I MA464 Game Theory Tutor: Xiang Sun August 30, 01 1 Review Static means one-shot, or simultaneous-move; Complete information means that the payoff functions are

More information

Lecture 5: Iterative Combinatorial Auctions

Lecture 5: Iterative Combinatorial Auctions COMS 6998-3: Algorithmic Game Theory October 6, 2008 Lecture 5: Iterative Combinatorial Auctions Lecturer: Sébastien Lahaie Scribe: Sébastien Lahaie In this lecture we examine a procedure that generalizes

More information

Commentary. Forecasts usually tell us more about the forecaster than about the future. - Warren Buffett

Commentary. Forecasts usually tell us more about the forecaster than about the future. - Warren Buffett LongRun Monthly Strategy Review Nov 2016 AR +1.70% AG +2.07% TMG +1.16% SP500 +3.68% R2000 +11.08% GDP +1.35% Commentary Forecasters and pollsters are having a rough year. First Brexit and now the US presidential

More information

MATH 210, PROBLEM SET 1 DUE IN LECTURE ON WEDNESDAY, JAN. 28

MATH 210, PROBLEM SET 1 DUE IN LECTURE ON WEDNESDAY, JAN. 28 MATH 210, PROBLEM SET 1 DUE IN LECTURE ON WEDNESDAY, JAN. 28 1. Frankfurt s theory of lying and bullshit. Read Frankfurt s book On Bullshit. In particular, see the description of the distinction he makes

More information

MATH 121 GAME THEORY REVIEW

MATH 121 GAME THEORY REVIEW MATH 121 GAME THEORY REVIEW ERIN PEARSE Contents 1. Definitions 2 1.1. Non-cooperative Games 2 1.2. Cooperative 2-person Games 4 1.3. Cooperative n-person Games (in coalitional form) 6 2. Theorems and

More information

Optimization in Finance

Optimization in Finance Research Reports on Mathematical and Computing Sciences Series B : Operations Research Department of Mathematical and Computing Sciences Tokyo Institute of Technology 2-12-1 Oh-Okayama, Meguro-ku, Tokyo

More information

Introduction to game theory LECTURE 2

Introduction to game theory LECTURE 2 Introduction to game theory LECTURE 2 Jörgen Weibull February 4, 2010 Two topics today: 1. Existence of Nash equilibria (Lecture notes Chapter 10 and Appendix A) 2. Relations between equilibrium and rationality

More information

Commentary. Our greatest weakness lies in giving up. The most certain way to succeed is always to try just one more time.

Commentary. Our greatest weakness lies in giving up. The most certain way to succeed is always to try just one more time. LongRun Monthly Strategy Review May 2018 AR +0.2% AG +1.0% TMG +3.0% SP500 +2.4% GDP +0.7% Commentary Last month s commentary led off with our Absolute Return strategy moving to 100% cash for the month

More information

Market Overview. Sector Overview

Market Overview. Sector Overview September 20, 2010 The Weekly ETF Report is based on ValuEngine Chief Market Strategist Richard Suttmeier's proprietary market analytics. Suttmeier combines his technical analysis expertise with ValuEngine's

More information

CSCI 1951-G Optimization Methods in Finance Part 00: Course Logistics Introduction to Finance Optimization Problems

CSCI 1951-G Optimization Methods in Finance Part 00: Course Logistics Introduction to Finance Optimization Problems CSCI 1951-G Optimization Methods in Finance Part 00: Course Logistics Introduction to Finance Optimization Problems January 26, 2018 1 / 24 Basic information All information is available in the syllabus

More information

Game Theory: Minimax, Maximin, and Iterated Removal Naima Hammoud

Game Theory: Minimax, Maximin, and Iterated Removal Naima Hammoud Game Theory: Minimax, Maximin, and Iterated Removal Naima Hammoud March 14, 17 Last Lecture: expected value principle Colin A B Rose A - - B - Suppose that Rose knows Colin will play ½ A + ½ B Rose s Expectations

More information

November 2006 LSE-CDAM

November 2006 LSE-CDAM NUMERICAL APPROACHES TO THE PRINCESS AND MONSTER GAME ON THE INTERVAL STEVE ALPERN, ROBBERT FOKKINK, ROY LINDELAUF, AND GEERT JAN OLSDER November 2006 LSE-CDAM-2006-18 London School of Economics, Houghton

More information

Econ 172A, W2002: Final Examination, Solutions

Econ 172A, W2002: Final Examination, Solutions Econ 172A, W2002: Final Examination, Solutions Comments. Naturally, the answers to the first question were perfect. I was impressed. On the second question, people did well on the first part, but had trouble

More information

Commentary. Just because the river is quiet doesn't mean the crocodiles have left. Malay proverb

Commentary. Just because the river is quiet doesn't mean the crocodiles have left. Malay proverb LongRun Monthly Strategy Review Mar 2016 AR -0.11% AG +8.52% TMG +1.91% SP500 +6.72% R2000 +8.02% GDP +9.17% Commentary Equity markets around the world registered impressive gains in March as follow-through

More information

CHAPTER 14: REPEATED PRISONER S DILEMMA

CHAPTER 14: REPEATED PRISONER S DILEMMA CHAPTER 4: REPEATED PRISONER S DILEMMA In this chapter, we consider infinitely repeated play of the Prisoner s Dilemma game. We denote the possible actions for P i by C i for cooperating with the other

More information

Can we have no Nash Equilibria? Can you have more than one Nash Equilibrium? CS 430: Artificial Intelligence Game Theory II (Nash Equilibria)

Can we have no Nash Equilibria? Can you have more than one Nash Equilibrium? CS 430: Artificial Intelligence Game Theory II (Nash Equilibria) CS 0: Artificial Intelligence Game Theory II (Nash Equilibria) ACME, a video game hardware manufacturer, has to decide whether its next game machine will use DVDs or CDs Best, a video game software producer,

More information

Introduction to Industrial Organization Professor: Caixia Shen Fall 2014 Lecture Note 5 Games and Strategy (Ch. 4)

Introduction to Industrial Organization Professor: Caixia Shen Fall 2014 Lecture Note 5 Games and Strategy (Ch. 4) Introduction to Industrial Organization Professor: Caixia Shen Fall 2014 Lecture Note 5 Games and Strategy (Ch. 4) Outline: Modeling by means of games Normal form games Dominant strategies; dominated strategies,

More information

CMPSCI 240: Reasoning about Uncertainty

CMPSCI 240: Reasoning about Uncertainty CMPSCI 240: Reasoning about Uncertainty Lecture 21: Game Theory Andrew McGregor University of Massachusetts Last Compiled: April 29, 2017 Outline 1 Game Theory 2 Example: Two-finger Morra Alice and Bob

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

Total Reward Stochastic Games and Sensitive Average Reward Strategies

Total Reward Stochastic Games and Sensitive Average Reward Strategies JOURNAL OF OPTIMIZATION THEORY AND APPLICATIONS: Vol. 98, No. 1, pp. 175-196, JULY 1998 Total Reward Stochastic Games and Sensitive Average Reward Strategies F. THUIJSMAN1 AND O, J. VaiEZE2 Communicated

More information

Commentary. Things turn out best for the people who make the best of the way things turn out. - John Wooden

Commentary. Things turn out best for the people who make the best of the way things turn out. - John Wooden LongRun Monthly Strategy Review Dec 2018 AR +0.1% AG -0.3% TMG -9.8% SP500-8.8% GDP -4.9% Commentary As noted last month, December got off to a bad start wiping out November s equity market gains in the

More information

BRIEF INTRODUCTION TO GAME THEORY

BRIEF INTRODUCTION TO GAME THEORY BRIEF INTRODUCTION TO GAME THEORY Game Theory Mathematical theory that deals with the general features of competitive situations. Examples: parlor games, military battles, political campaigns, advertising

More information

The Assignment Problem

The Assignment Problem The Assignment Problem E.A Dinic, M.A Kronrod Moscow State University Soviet Math.Dokl. 1969 January 30, 2012 1 Introduction Motivation Problem Definition 2 Motivation Problem Definition Outline 1 Introduction

More information

Commentary. Patience and perseverance have a magical effect before which difficulties disappear and obstacles vanish. - John Quincy Adams

Commentary. Patience and perseverance have a magical effect before which difficulties disappear and obstacles vanish. - John Quincy Adams LongRun Monthly Strategy Review Sep 2018 AR -2.0% AG-2.5% TMG -0.3% SP500 +0.6% GDP -0.04% Commentary Last month I pointed out that the S&P 500 large cap stock index had closed higher five months in a

More information

Interactive Brokers Webcast. Options on ETFs. February 13, 2013 Presented by Russell Rhoads, CFA

Interactive Brokers Webcast. Options on ETFs. February 13, 2013 Presented by Russell Rhoads, CFA Interactive Brokers Webcast Options on ETFs February 13, 2013 Presented by Russell Rhoads, CFA Disclosure CBOE Disclosure Statement Options involve risks and are not suitable for all investors. Prior to

More information

Introduction to Game Theory

Introduction to Game Theory Introduction to Game Theory 3a. More on Normal-Form Games Dana Nau University of Maryland Nau: Game Theory 1 More Solution Concepts Last time, we talked about several solution concepts Pareto optimality

More information

Best-Reply Sets. Jonathan Weinstein Washington University in St. Louis. This version: May 2015

Best-Reply Sets. Jonathan Weinstein Washington University in St. Louis. This version: May 2015 Best-Reply Sets Jonathan Weinstein Washington University in St. Louis This version: May 2015 Introduction The best-reply correspondence of a game the mapping from beliefs over one s opponents actions to

More information

Strategies and Nash Equilibrium. A Whirlwind Tour of Game Theory

Strategies and Nash Equilibrium. A Whirlwind Tour of Game Theory Strategies and Nash Equilibrium A Whirlwind Tour of Game Theory (Mostly from Fudenberg & Tirole) Players choose actions, receive rewards based on their own actions and those of the other players. Example,

More information

56:171 Operations Research Midterm Examination Solutions PART ONE

56:171 Operations Research Midterm Examination Solutions PART ONE 56:171 Operations Research Midterm Examination Solutions Fall 1997 Write your name on the first page, and initial the other pages. Answer both questions of Part One, and 4 (out of 5) problems from Part

More information

Integer Programming Models

Integer Programming Models Integer Programming Models Fabio Furini December 10, 2014 Integer Programming Models 1 Outline 1 Combinatorial Auctions 2 The Lockbox Problem 3 Constructing an Index Fund Integer Programming Models 2 Integer

More information

56:171 Operations Research Midterm Examination Solutions PART ONE

56:171 Operations Research Midterm Examination Solutions PART ONE 56:171 Operations Research Midterm Examination Solutions Fall 1997 Answer both questions of Part One, and 4 (out of 5) problems from Part Two. Possible Part One: 1. True/False 15 2. Sensitivity analysis

More information

Game theory for. Leonardo Badia.

Game theory for. Leonardo Badia. Game theory for information engineering Leonardo Badia leonardo.badia@gmail.com Zero-sum games A special class of games, easier to solve Zero-sum We speak of zero-sum game if u i (s) = -u -i (s). player

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

Econ 172A - Slides from Lecture 7

Econ 172A - Slides from Lecture 7 Econ 172A Sobel Econ 172A - Slides from Lecture 7 Joel Sobel October 18, 2012 Announcements Be prepared for midterm room/seating assignments. Quiz 2 on October 25, 2012. (Duality, up to, but not including

More information

February 23, An Application in Industrial Organization

February 23, An Application in Industrial Organization An Application in Industrial Organization February 23, 2015 One form of collusive behavior among firms is to restrict output in order to keep the price of the product high. This is a goal of the OPEC oil

More information

Expectations & Randomization Normal Form Games Dominance Iterated Dominance. Normal Form Games & Dominance

Expectations & Randomization Normal Form Games Dominance Iterated Dominance. Normal Form Games & Dominance Normal Form Games & Dominance Let s play the quarters game again We each have a quarter. Let s put them down on the desk at the same time. If they show the same side (HH or TT), you take my quarter. If

More information

Their opponent will play intelligently and wishes to maximize their own payoff.

Their opponent will play intelligently and wishes to maximize their own payoff. Two Person Games (Strictly Determined Games) We have already considered how probability and expected value can be used as decision making tools for choosing a strategy. We include two examples below for

More information

Chapter 2 Linear programming... 2 Chapter 3 Simplex... 4 Chapter 4 Sensitivity Analysis and duality... 5 Chapter 5 Network... 8 Chapter 6 Integer

Chapter 2 Linear programming... 2 Chapter 3 Simplex... 4 Chapter 4 Sensitivity Analysis and duality... 5 Chapter 5 Network... 8 Chapter 6 Integer 目录 Chapter 2 Linear programming... 2 Chapter 3 Simplex... 4 Chapter 4 Sensitivity Analysis and duality... 5 Chapter 5 Network... 8 Chapter 6 Integer Programming... 10 Chapter 7 Nonlinear Programming...

More information

CS 331: Artificial Intelligence Game Theory I. Prisoner s Dilemma

CS 331: Artificial Intelligence Game Theory I. Prisoner s Dilemma CS 331: Artificial Intelligence Game Theory I 1 Prisoner s Dilemma You and your partner have both been caught red handed near the scene of a burglary. Both of you have been brought to the police station,

More information

Commentary. Without deviation from the norm, progress is not possible. Frank Zappa

Commentary. Without deviation from the norm, progress is not possible. Frank Zappa LongRun Monthly Strategy Review Aug 2016 AR -0.71% AG -5.21% TMG -2.67% SP500 +0.12% R2000 +1.78% GDP -0.57% Commentary August was a quiet month in most markets with the major US equity indices making

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

56:171 Operations Research Midterm Examination October 28, 1997 PART ONE

56:171 Operations Research Midterm Examination October 28, 1997 PART ONE 56:171 Operations Research Midterm Examination October 28, 1997 Write your name on the first page, and initial the other pages. Answer both questions of Part One, and 4 (out of 5) problems from Part Two.

More information

Lecture 5 Leadership and Reputation

Lecture 5 Leadership and Reputation Lecture 5 Leadership and Reputation Reputations arise in situations where there is an element of repetition, and also where coordination between players is possible. One definition of leadership is that

More information

Optimization Models in Financial Mathematics

Optimization Models in Financial Mathematics Optimization Models in Financial Mathematics John R. Birge Northwestern University www.iems.northwestern.edu/~jrbirge Illinois Section MAA, April 3, 2004 1 Introduction Trends in financial mathematics

More information

Solutions of Bimatrix Coalitional Games

Solutions of Bimatrix Coalitional Games Applied Mathematical Sciences, Vol. 8, 2014, no. 169, 8435-8441 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ams.2014.410880 Solutions of Bimatrix Coalitional Games Xeniya Grigorieva St.Petersburg

More information

Math 135: Answers to Practice Problems

Math 135: Answers to Practice Problems Math 35: Answers to Practice Problems Answers to problems from the textbook: Many of the problems from the textbook have answers in the back of the book. Here are the answers to the problems that don t

More information

Robust Optimization Applied to a Currency Portfolio

Robust Optimization Applied to a Currency Portfolio Robust Optimization Applied to a Currency Portfolio R. Fonseca, S. Zymler, W. Wiesemann, B. Rustem Workshop on Numerical Methods and Optimization in Finance June, 2009 OUTLINE Introduction Motivation &

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