L Modeling and Simulating Social Systems with MATLAB

Size: px
Start display at page:

Download "L Modeling and Simulating Social Systems with MATLAB"

Transcription

1 L Modeling and Simulating Social Systems with MATLAB Lecture 5 Agent-based Modeling / Game Theory Karsten Donnay and Stefano Balietti Chair of Sociology, in particular of Modeling and Simulation ETH Zürich

2 Schedule of the course Introduction to MATLAB Research Plan is due TODAY Working on projects (seminar thesis) Introduction to social-science modeling and simulations Handing in seminar thesis and giving a presentation 2

3 Goals of Lecture 5: students will 1. Consolidate their knowledge of cellular automata, through brief repetition of the main concepts introduced in the previous session. 2. Understand the important concept of Agent-based Modeling (ABM) as a powerful tool to capture complex system dynamics. 3. Get a brief introduction to Game Theory as a mean to formalize complex interaction dynamics such as human cooperation and coordination. 4. Build the basic structure of a simple agent-based simulator 3

4 Repetition Cellular automata (CA) are abstract representations of interaction dynamics in discrete space and time Reduce complexity of interaction to simple microscopic interaction rules; canonical way to formalize interaction range are Neighborhoods (Moore, van Neuman) Approaches using cellular automata have a few natural limitations: only discrete time space and time; results depend on updating scheme (simultaneous vs. sequential); system dynamics can not always easily be reduced to microscopic interaction rules Can be abstract test bed for complex systems: same results from CA and dynamical systems approach (Ex. 2) 4

5 Motivation for microscopic modeling A number of real world processes may be reduced to simple local interaction rules (e.g. Swarm Intelligence) Key for correctly capturing complex system dynamics with local individual interactions is that dynamic components of system are atomizable in the context under consideration (e.g. pedestrians behave like particles) Represents reductionist (or mechanistic) point of view in contrast to a systemic (or holistic) approach; in line with the tradition that has fueled the success of natural science research in the past 200 years! Game Theory provides great framework to formalize and reduce complex (strategic) interactions 5

6 Swarm Intelligence (1989) Ant colonies, bird flocking, animal herding, bacterial growth, fish schooling 6

7 Swarm Intelligence Key Concepts: decentralized control interaction and learning self-organization 7

8 Boids (Reynolds,1986) A boid is a simulated individual particle or object moving about in a virtual space. 8

9 More information: Separation: steer to avoid crowding local flockmates Alignment: steer towards the average heading of local flockmates Cohesion: steer to move toward the average position of local flockmates 9

10 Game Theory Mathematical framework for strategic interactions of individuals Formalizes the notion of finding a best strategy (keyword: Nash equilibrium) when facing a well-defined decision situation; conceptualization through games Underlying assumption is that individuals optimize their payoffs (or more precisely: utility ) when faced with strategic decisions NOTE: huge difference between game theoretic results for one-shot games vs. repeated interactions! 10

11 Game Theory: assumptions Game: (definition in class, or in any of the references) Rationality: alignment between preferences, belief, and actions Players prefer is to maximize its payoff function Players belief can be summarized with the saying I am rational, you are rational. I know that you are rational, and you know that I know that you rational. Everybody knows that I know that you are rational, and you know Players act accordingly: best response. 11

12 Nash Equilibrium 12

13 Nash Equilibrium It is the strategy that players always play with no regrets: best response. No players has an incentive to deviate from a Nash equilibrium Can be not unique Some questions Is Nash an optimal strategy? What is the difference between a Paretoefficient equilibrium and a Nash Equilibrium? Why do players play Nash? Do they? 13

14 Game Theory - Human Cooperation Prisoner s dilemma 15,15 20,0 0,20 19,19 14

15 The Evolution of Cooperation (Axelrod,1984) Tit for tat being nice (cooperate first) pay back immediately easy to be recognized Shadow of the future (discount parameter) if the probability of meeting again is large enough, it is better to be nice 15

16 Game Theory - Coordination Games 1,1 0,0 0,0 1,1 Game Examples: Stag-hunt Assurance game Chicken game Hawk-dove game 16

17 Evolutionary Game Theory Classical Game Theory suffers from a number of conceptual weaknesses (hyper-rational players, selection problem of strategy, static theory) Evolutionary Game Theory introduces evolutionary dynamics for strategy selection, i.e. the evolutionary most stable strategy dominates the system dynamics Players are rational about their own decisions but do not need to know the strategies (and reasoning) of all other players! Very suited for agent-based modeling approaches as it allows for learning and adaption of agents! 17

18 Evolutionary Learning The main assumption underlying evolutionary thinking is that the entities which are more successful at a particular time will have the best chance of being present in the future. Selection Replication Mutation 18

19 Evolutionary Learning Selection is a discriminating force that favors some specific entities rather than others. Replication ensures that the entities (or their properties) are preserved, replicated or inherited from one generation to another Selection and replication work closely together, and in general tend to reduce diversity the generation of new diversity is the job of the mutation mechanism 19

20 How agents can learn Imitation : People copy the behavior of others, especially behavior that is popular or appears to yield high payoffs. Reinforcement : People tend to adopt actions that yielded a high payoff in the past, and to avoid actions that yielded a low payoff. Best reply : People adopt actions that optimize their expected payoff given what they expect others to do. Subjects choose best replies to the empirical frequency distribution of their opponents previous actions, i.e. Fictitious Play. Agents may also update their beliefs about others behavior. 20

21 From Factors to Actors (Macy,2002) Simple and predictable local interactions can generate familiar but enigmatic global patterns, such as the diffusion of information, emergence of norms, coordination of conventions, or participation in collective action 21

22 From Factors to Actors (Macy,2002) Simple and predictable local interactions can generate familiar but enigmatic global patterns, such as the diffusion of information, emergence of norms, coordination of conventions, or participation in collective action Agents are autonomous Agents are interdependent Agents follow simple rules Agents are adaptive and backward-looking 22

23 From Factors to Actors (Macy,2002) Simple and predictable local interactions can generate familiar but enigmatic global patterns, such as the diffusion of information, emergence of norms, coordination of conventions, or participation in collective action Agents are autonomous Agents are interdependent Agents follow simple rules reduction/ atomization problem! Agents are adaptive and backward-looking can be a very problematic assumption!! 23

24 Programming a simulator Agent-based simulations the models simulate the simultaneous operations of multiple agents, in an attempt to re-create and predict the actions of complex phenomena. agents can be pedestrians, animals, customers, internet users, etc 24

25 Programming a simulator Agent-based simulations State update According to set of behavioral rules Time line Time t Characterized by a state (or states) (location, dead/alive, color, level of excitation) T1 dt Time t + dt New state T2 25

26 Programming a simulator Agent-based simulations State update According to set of behavioral rules, including neighborhood Time t Characterized by a state (location, dead/alive, level of excitation) Time t + dt New state Time line T1 T2 26

27 Programming a simulator Programming an agent-based simulator often goes in five steps Initialization - Initial state; parameters; environment Time loop - Processing each time steps Agents loop - Processing each agents Update - Updating agent i at time t Save data - For further analysis Initialization Time loop 27 end Agents loop end Save data Update state

28 Programming a simulator Efficient Structure define and initialize all variables in a script file that serves as the main of your program execute the actual simulation as function with the pre-defined variables as inputs automated analysis, visualization etc. of the simulation output may then be implemented in the main file using the outputs of the function that runs the actual program 28

29 Programming a simulator Step 1: Defining the initial state & parameters % Initial state t 0 =0; %begining of the time line dt=1 ; %time step T=100; %number of time steps %Initial state of the agents State1 = [ ]; State2 = [ ]; etc 29

30 Programming a simulator Step 1: Defining the initial state & parameters % Initial state t 0 =0; %begining of the time line dt=1 ; %time step T=100; %number of time steps %Initial state of the agents State1 = zeros(1,50); State2 = rand(1,50); 30

31 Programming a simulator Step 2: Covering each time step % time loop For t=t 0 :dt:t end What happen at each time step? - Update environment - Update agents 31

32 Programming a simulator Step 3: Covering each agent % agent loop For i=1:length(states) What happen for each agent? end 32

33 Programming a simulator Step 4: Updating agent i at time t % update % Each agent has 60% chance to switch to state 1 randomvalue=rand(); if (randomvalue<0.6) State(i)=1; else State(i)=0; end Use sub-functions for better organization!! 33

34 Programming a simulator Step 4: Updating agent i at time t % update % Each agent has proba chance to switch to state 1 randomvalue=rand(); if (randomvalue<proba) State(i)=1; else State(i)=0; end Define parameters in the first part!! 34

35 Programming a simulator Step 4: Updating agent i at time t % Initial state t 0 =0; %begining of the time line dt=1 ; %time step T=100; %number of time steps proba=0.6; %probability to switch state Define parameters in the first part!! 35

36 Programming a simulator Step 5: Final processing % Outputs and final processing propalive = sum(states)/length(states); And return propalive as the output of the simulation. 36

37 Programming a simulator Running simulation >> p=simulation() p = 0.54 >> p=simulation() p = 0.72

38 Programming a simulator Alternatively : a framework for the simulator % Running N simulations N=1000 %number of simulation for n=1:n p(n)=simulation(); end Use a framework to run N successive simulation and store the result each time. 38

39 Programming a simulator Alternatively : a framework for the simulator >> hist(p) 39

40 Exercise 1 There is some additional material on the iterated prisoner s dilemma available on the course website If you are not familiar with the game, the readyto-use implementation of the game will help you get a better understanding of its dynamics 40

41 Exercise 2 Start thinking about how to adapt the general simulation engine shown today for your project Problems: Workspace organization (files, functions, data) Parameters initialization Number of agents Organization of loops Which data to save, how frequently, in which format What kind of interactions are relevant 41

42 References Fudenberg & Tirole, Game Theory, MIT Press (2000) Meyerson, Game Theory, Harvard University Press (1997) Herbert Gintis, Game Theory Evolving, Princeton Univ. Press, 2 nd Edition (2009) Uhrmacher, Weyns (Editors), Multi-Agent Systems Simulation and Applications, CRC Press (2009) A step by step guide to compute the Nash equilibrium:

6.254 : Game Theory with Engineering Applications Lecture 1: Introduction

6.254 : Game Theory with Engineering Applications Lecture 1: Introduction 6.254 : Game Theory with Engineering Applications Lecture 1: Introduction Asu Ozdaglar MIT February 2, 2010 1 Introduction Optimization Theory: Optimize a single objective over a decision variable x R

More information

6.207/14.15: Networks Lecture 15: Repeated Games and Cooperation

6.207/14.15: Networks Lecture 15: Repeated Games and Cooperation 6.207/14.15: Networks Lecture 15: Repeated Games and Cooperation Daron Acemoglu and Asu Ozdaglar MIT November 2, 2009 1 Introduction Outline The problem of cooperation Finitely-repeated prisoner s dilemma

More information

ECO 199 B GAMES OF STRATEGY Spring Term 2004 PROBLEM SET 4 B DRAFT ANSWER KEY 100-3 90-99 21 80-89 14 70-79 4 0-69 11

ECO 199 B GAMES OF STRATEGY Spring Term 2004 PROBLEM SET 4 B DRAFT ANSWER KEY 100-3 90-99 21 80-89 14 70-79 4 0-69 11 The distribution of grades was as follows. ECO 199 B GAMES OF STRATEGY Spring Term 2004 PROBLEM SET 4 B DRAFT ANSWER KEY Range Numbers 100-3 90-99 21 80-89 14 70-79 4 0-69 11 Question 1: 30 points Games

More information

10 Evolutionarily Stable Strategies

10 Evolutionarily Stable Strategies 10 Evolutionarily Stable Strategies There is but a step between the sublime and the ridiculous. Leo Tolstoy In 1973 the biologist John Maynard Smith and the mathematician G. R. Price wrote an article in

More information

The Basics of Game Theory

The Basics of Game Theory Sloan School of Management 15.010/15.011 Massachusetts Institute of Technology RECITATION NOTES #7 The Basics of Game Theory Friday - November 5, 2004 OUTLINE OF TODAY S RECITATION 1. Game theory definitions:

More information

6.254 : Game Theory with Engineering Applications Lecture 2: Strategic Form Games

6.254 : Game Theory with Engineering Applications Lecture 2: Strategic Form Games 6.254 : Game Theory with Engineering Applications Lecture 2: Strategic Form Games Asu Ozdaglar MIT February 4, 2009 1 Introduction Outline Decisions, utility maximization Strategic form games Best responses

More information

14.10.2014. Overview. Swarms in nature. Fish, birds, ants, termites, Introduction to swarm intelligence principles Particle Swarm Optimization (PSO)

14.10.2014. Overview. Swarms in nature. Fish, birds, ants, termites, Introduction to swarm intelligence principles Particle Swarm Optimization (PSO) Overview Kyrre Glette kyrrehg@ifi INF3490 Swarm Intelligence Particle Swarm Optimization Introduction to swarm intelligence principles Particle Swarm Optimization (PSO) 3 Swarms in nature Fish, birds,

More information

Particles, Flocks, Herds, Schools

Particles, Flocks, Herds, Schools CS 4732: Computer Animation Particles, Flocks, Herds, Schools Robert W. Lindeman Associate Professor Department of Computer Science Worcester Polytechnic Institute gogo@wpi.edu Control vs. Automation Director's

More information

6.1 What is a Game? 156 CHAPTER 6. GAMES

6.1 What is a Game? 156 CHAPTER 6. GAMES From the book Networks, Crowds, and Markets: Reasoning about a Highly Connected World. By David Easley and Jon Kleinberg. Cambridge University Press, 2010. Complete preprint on-line at http://www.cs.cornell.edu/home/kleinber/networks-book/

More information

Computational Learning Theory Spring Semester, 2003/4. Lecture 1: March 2

Computational Learning Theory Spring Semester, 2003/4. Lecture 1: March 2 Computational Learning Theory Spring Semester, 2003/4 Lecture 1: March 2 Lecturer: Yishay Mansour Scribe: Gur Yaari, Idan Szpektor 1.1 Introduction Several fields in computer science and economics are

More information

Game Theory and Algorithms Lecture 10: Extensive Games: Critiques and Extensions

Game Theory and Algorithms Lecture 10: Extensive Games: Critiques and Extensions Game Theory and Algorithms Lecture 0: Extensive Games: Critiques and Extensions March 3, 0 Summary: We discuss a game called the centipede game, a simple extensive game where the prediction made by backwards

More information

Flocking and Steering Behaviors. 15-462: Computer Graphics April 08, 2010

Flocking and Steering Behaviors. 15-462: Computer Graphics April 08, 2010 Flocking and Steering Behaviors 15-462: Computer Graphics April 08, 2010 Outline Real Flocks Our Foreflocks Particle Systems to Modified Models Flocking Behaviors Separation Cohesion Alignment Additional

More information

I d Rather Stay Stupid: The Advantage of Having Low Utility

I d Rather Stay Stupid: The Advantage of Having Low Utility I d Rather Stay Stupid: The Advantage of Having Low Utility Lior Seeman Department of Computer Science Cornell University lseeman@cs.cornell.edu Abstract Motivated by cost of computation in game theory,

More information

Chapter 7. Sealed-bid Auctions

Chapter 7. Sealed-bid Auctions Chapter 7 Sealed-bid Auctions An auction is a procedure used for selling and buying items by offering them up for bid. Auctions are often used to sell objects that have a variable price (for example oil)

More information

0.0.2 Pareto Efficiency (Sec. 4, Ch. 1 of text)

0.0.2 Pareto Efficiency (Sec. 4, Ch. 1 of text) September 2 Exercises: Problem 2 (p. 21) Efficiency: p. 28-29: 1, 4, 5, 6 0.0.2 Pareto Efficiency (Sec. 4, Ch. 1 of text) We discuss here a notion of efficiency that is rooted in the individual preferences

More information

Price competition with homogenous products: The Bertrand duopoly model [Simultaneous move price setting duopoly]

Price competition with homogenous products: The Bertrand duopoly model [Simultaneous move price setting duopoly] ECON9 (Spring 0) & 350 (Tutorial ) Chapter Monopolistic Competition and Oligopoly (Part ) Price competition with homogenous products: The Bertrand duopoly model [Simultaneous move price setting duopoly]

More information

Introduction. Bargaining - whether over arms control, the terms of a peace settlement, exchange rate

Introduction. Bargaining - whether over arms control, the terms of a peace settlement, exchange rate Bargaining in International Relations Introduction Bargaining - whether over arms control, the terms of a peace settlement, exchange rate coordination, alliances, or trade agreements - is a central feature

More information

Game Theory & Oligopoly Market. Decision making environments may be classified into four types:-

Game Theory & Oligopoly Market. Decision making environments may be classified into four types:- Game Theory & Oligopoly Market Prof. Rupesh R. Dahake. DMIETR, Wardha. Introduction:- Today this competitive business environment effective decision making play a vital role in such competitive business

More information

Competition and Regulation. Lecture 2: Background on imperfect competition

Competition and Regulation. Lecture 2: Background on imperfect competition Competition and Regulation Lecture 2: Background on imperfect competition Monopoly A monopolist maximizes its profits, choosing simultaneously quantity and prices, taking the Demand as a contraint; The

More information

Behavioral Animation Simulation of Flocking Birds

Behavioral Animation Simulation of Flocking Birds Behavioral Animation Simulation of Flocking Birds Autonomous characters determine their actions Simulating the paths of individuals in: flocks of birds, schools of fish, herds of animals crowd scenes 1.

More information

Extraction of Satellite Image using Particle Swarm Optimization

Extraction of Satellite Image using Particle Swarm Optimization Extraction of Satellite Image using Particle Swarm Optimization Er.Harish Kundra Assistant Professor & Head Rayat Institute of Engineering & IT, Railmajra, Punjab,India. Dr. V.K.Panchal Director, DTRL,DRDO,

More information

When Machine Learning Meets AI and Game Theory

When Machine Learning Meets AI and Game Theory 1 When Machine Learning Meets AI and Game Theory Anurag Agrawal, Deepak Jaiswal Abstract We study the problem of development of intelligent machine learning applications to exploit the problems of adaptation

More information

Integrating Cue Reading and Decision-Making into Skill Development

Integrating Cue Reading and Decision-Making into Skill Development Integrating Cue Reading and Decision-Making into Skill Development STAGES of PLAYER LEARNING/DEVELOPMENT Initiation Acquisition What it is, and what to expect as a coach CUE READING & DECISION-MAKING PROGRESSIONS

More information

Théorie de la décision et théorie des jeux Stefano Moretti

Théorie de la décision et théorie des jeux Stefano Moretti héorie de la décision et théorie des jeux Stefano Moretti UMR 7243 CNRS Laboratoire d'analyse et Modélisation de Systèmes pour l'aide à la décision (LAMSADE) Université Paris-Dauphine email: Stefano.MOREI@dauphine.fr

More information

Minimax Strategies. Minimax Strategies. Zero Sum Games. Why Zero Sum Games? An Example. An Example

Minimax Strategies. Minimax Strategies. Zero Sum Games. Why Zero Sum Games? An Example. An Example Everyone who has studied a game like poker knows the importance of mixing strategies With a bad hand, you often fold But you must bluff sometimes Lectures in Microeconomics-Charles W Upton Zero Sum Games

More information

How to Solve Strategic Games? Dominant Strategies

How to Solve Strategic Games? Dominant Strategies How to Solve Strategic Games? There are three main concepts to solve strategic games: 1. Dominant Strategies & Dominant Strategy Equilibrium 2. Dominated Strategies & Iterative Elimination of Dominated

More information

Topology Control and Mobility Strategy for UAV Ad-hoc Networks: A Survey

Topology Control and Mobility Strategy for UAV Ad-hoc Networks: A Survey Topology Control and Mobility Strategy for UAV Ad-hoc Networks: A Survey Zhongliang Zhao, Torsten Braun Institute of Computer Science and Applied Mathematics, University of Bern Neubrückstrasse 10, 3012

More information

9.916 Altruism and Cooperation

9.916 Altruism and Cooperation 9.916 Altruism and Cooperation Today s Lecture I give everyone $10 Anonymous pairs Chance to send $0-$10 Anything you send, x3 How much do you send Puzzle of altruism: How could it evolve free-riders should

More information

Bayesian Nash Equilibrium

Bayesian Nash Equilibrium . Bayesian Nash Equilibrium . In the final two weeks: Goals Understand what a game of incomplete information (Bayesian game) is Understand how to model static Bayesian games Be able to apply Bayes Nash

More information

AN INTRODUCTION TO GAME THEORY

AN INTRODUCTION TO GAME THEORY AN INTRODUCTION TO GAME THEORY 2008 AGI-Information Management Consultants May be used for personal purporses only or by libraries associated to dandelon.com network. MARTIN J. OSBORNE University of Toronto

More information

Game Theory 1. Introduction

Game Theory 1. Introduction Game Theory 1. Introduction Dmitry Potapov CERN What is Game Theory? Game theory is about interactions among agents that are self-interested I ll use agent and player synonymously Self-interested: Each

More information

Lab 11. Simulations. The Concept

Lab 11. Simulations. The Concept Lab 11 Simulations In this lab you ll learn how to create simulations to provide approximate answers to probability questions. We ll make use of a particular kind of structure, called a box model, that

More information

1 Nonzero sum games and Nash equilibria

1 Nonzero sum games and Nash equilibria princeton univ. F 14 cos 521: Advanced Algorithm Design Lecture 19: Equilibria and algorithms Lecturer: Sanjeev Arora Scribe: Economic and game-theoretic reasoning specifically, how agents respond to economic

More information

Quotes from Object-Oriented Software Construction

Quotes from Object-Oriented Software Construction Quotes from Object-Oriented Software Construction Bertrand Meyer Prentice-Hall, 1988 Preface, p. xiv We study the object-oriented approach as a set of principles, methods and tools which can be instrumental

More information

14.74 Lecture 12 Inside the household: Is the household an efficient unit?

14.74 Lecture 12 Inside the household: Is the household an efficient unit? 14.74 Lecture 12 Inside the household: Is the household an efficient unit? Prof. Esther Duflo March 17, 2004 Last lecture, we saw that if we test the unitary model against a slightly more general model

More information

Simple Channel-Change Games for Spectrum- Agile Wireless Networks

Simple Channel-Change Games for Spectrum- Agile Wireless Networks Simple Channel-Change Games for Spectrum- Agile Wireless Networks Roli G. Wendorf and Howard Blum Seidenberg School of Computer Science and Information Systems Pace University White Plains, New York, USA

More information

Lecture 28 Economics 181 International Trade

Lecture 28 Economics 181 International Trade Lecture 28 Economics 181 International Trade I. Introduction to Strategic Trade Policy If much of world trade is in differentiated products (ie manufactures) characterized by increasing returns to scale,

More information

Summary of Doctoral Dissertation: Voluntary Participation Games in Public Good Mechanisms: Coalitional Deviations and Efficiency

Summary of Doctoral Dissertation: Voluntary Participation Games in Public Good Mechanisms: Coalitional Deviations and Efficiency Summary of Doctoral Dissertation: Voluntary Participation Games in Public Good Mechanisms: Coalitional Deviations and Efficiency Ryusuke Shinohara 1. Motivation The purpose of this dissertation is to examine

More information

Web Appendix for Reference-Dependent Consumption Plans by Botond Kőszegi and Matthew Rabin

Web Appendix for Reference-Dependent Consumption Plans by Botond Kőszegi and Matthew Rabin Web Appendix for Reference-Dependent Consumption Plans by Botond Kőszegi and Matthew Rabin Appendix A: Modeling Rational Reference-Dependent Behavior Throughout the paper, we have used the PPE solution

More information

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

ECON 459 Game Theory. Lecture Notes Auctions. Luca Anderlini Spring 2015 ECON 459 Game Theory Lecture Notes Auctions Luca Anderlini Spring 2015 These notes have been used before. If you can still spot any errors or have any suggestions for improvement, please let me know. 1

More information

LESSON 7: LEARNING MODELS

LESSON 7: LEARNING MODELS LESSON 7: LEARNING MODELS INTRODUCTION mobility motivation persistence sociological Think about your favorite class. Does the teacher lecture? Do you do experiments or go on field trips? Does the teacher

More information

Week 7 - Game Theory and Industrial Organisation

Week 7 - Game Theory and Industrial Organisation Week 7 - Game Theory and Industrial Organisation The Cournot and Bertrand models are the two basic templates for models of oligopoly; industry structures with a small number of firms. There are a number

More information

Dynamics and Equilibria

Dynamics and Equilibria Dynamics and Equilibria Sergiu Hart Presidential Address, GAMES 2008 (July 2008) Revised and Expanded (November 2009) Revised (2010, 2011, 2012, 2013) SERGIU HART c 2008 p. 1 DYNAMICS AND EQUILIBRIA Sergiu

More information

Using Software Agents to Simulate How Investors Greed and Fear Emotions Explain the Behavior of a Financial Market

Using Software Agents to Simulate How Investors Greed and Fear Emotions Explain the Behavior of a Financial Market Using Software Agents to Simulate How Investors Greed and Fear Emotions Explain the Behavior of a Financial Market FILIPPO NERI University of Naples Department of Computer Science 80100 Napoli ITALY filipponeri@yahoo.com

More information

Operations and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology Madras

Operations and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology Madras Operations and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology Madras Lecture - 41 Value of Information In this lecture, we look at the Value

More information

Applying for Economics Graduate School. Signaling. What Program Should I Apply? Questions. What Program Should I Apply? Most Important Factor

Applying for Economics Graduate School. Signaling. What Program Should I Apply? Questions. What Program Should I Apply? Most Important Factor Signaling Joseph Tao-yi Wang Applying for Economics Graduate School An Example of Signaling 10/27/2010 Questions What should I apply? MBA or Econ PhD? What s the most important factor if I apply? Are foreigners/females

More information

21. Unverifiable Investment, Hold Up, Options and Ownership

21. Unverifiable Investment, Hold Up, Options and Ownership 21. Unverifiable Investment, Hold Up, Options and Ownership This chapter applies the tools of games with joint decisions and negotiation equilibrium to study the hold up problem in economics. We first

More information

Chapter 7. Evolutionary Game Theory

Chapter 7. Evolutionary Game Theory From the book Networks, Crowds, and Markets: Reasoning about a Highly Connected World. By David Easley and Jon Kleinberg. Cambridge University Press, 2010. Complete preprint on-line at http://www.cs.cornell.edu/home/kleinber/networks-book/

More information

Oligopoly and Strategic Pricing

Oligopoly and Strategic Pricing R.E.Marks 1998 Oligopoly 1 R.E.Marks 1998 Oligopoly Oligopoly and Strategic Pricing In this section we consider how firms compete when there are few sellers an oligopolistic market (from the Greek). Small

More information

Towards a compliance audit of SLAs for data replication in Cloud storage

Towards a compliance audit of SLAs for data replication in Cloud storage Towards a compliance audit of SLAs for data replication in Cloud storage J. Leneutre B. Djebaili, C. Kiennert, J. Leneutre, L. Chen, Data Integrity and Availability Verification Game in Untrusted Cloud

More information

ECON101 STUDY GUIDE 7 CHAPTER 14

ECON101 STUDY GUIDE 7 CHAPTER 14 ECON101 STUDY GUIDE 7 CHAPTER 14 MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) An oligopoly firm is similar to a monopolistically competitive

More information

Optimization in ICT and Physical Systems

Optimization in ICT and Physical Systems 27. OKTOBER 2010 in ICT and Physical Systems @ Aarhus University, Course outline, formal stuff Prerequisite Lectures Homework Textbook, Homepage and CampusNet, http://kurser.iha.dk/ee-ict-master/tiopti/

More information

Chapter 7 Monopoly, Oligopoly and Strategy

Chapter 7 Monopoly, Oligopoly and Strategy Chapter 7 Monopoly, Oligopoly and Strategy After reading Chapter 7, MONOPOLY, OLIGOPOLY AND STRATEGY, you should be able to: Define the characteristics of Monopoly and Oligopoly, and explain why the are

More information

MobLab Game Catalog For Business Schools Fall, 2015

MobLab Game Catalog For Business Schools Fall, 2015 MobLab Game Catalog For Business Schools Fall, 2015 CORE COURSE COVERAGE Economics For Business Principles of Business Microeconomic Analysis Decisions Game Theory Negotiation Strategy Managerial Economics

More information

ASTRATEGIC GAME is a model of interacting decision-makers. In recognition. Equilibrium: Theory

ASTRATEGIC GAME is a model of interacting decision-makers. In recognition. Equilibrium: Theory Draft chapter from An introduction to game theory by Martin J. Osborne. Version: 2002/7/23. Martin.Osborne@utoronto.ca http://www.economics.utoronto.ca/osborne Copyright 1995 2002 by Martin J. Osborne.

More information

What Is Mathematical Modeling?

What Is Mathematical Modeling? 1 What Is Mathematical Modeling? We begin this book with a dictionary definition of the word model: model (n): a miniature representation of something; a pattern of something to be made; an example for

More information

Transaction Cost Approach & Organizational Structure

Transaction Cost Approach & Organizational Structure Transaction Cost Approach & Organizational Structure! Origins! Similarities and Differences with Information Economics Approach! Coase! Nature of the Firm! Problem of Social Cost! Agency Theory Origins!

More information

ECON 40050 Game Theory Exam 1 - Answer Key. 4) All exams must be turned in by 1:45 pm. No extensions will be granted.

ECON 40050 Game Theory Exam 1 - Answer Key. 4) All exams must be turned in by 1:45 pm. No extensions will be granted. 1 ECON 40050 Game Theory Exam 1 - Answer Key Instructions: 1) You may use a pen or pencil, a hand-held nonprogrammable calculator, and a ruler. No other materials may be at or near your desk. Books, coats,

More information

Psychology and Economics (Lecture 17)

Psychology and Economics (Lecture 17) Psychology and Economics (Lecture 17) Xavier Gabaix April 13, 2004 Vast body of experimental evidence, demonstrates that discount rates are higher in the short-run than in the long-run. Consider a final

More information

Perfect Bayesian Equilibrium

Perfect Bayesian Equilibrium Perfect Bayesian Equilibrium When players move sequentially and have private information, some of the Bayesian Nash equilibria may involve strategies that are not sequentially rational. The problem is

More information

Chapter 7: Market Structures Section 1

Chapter 7: Market Structures Section 1 Chapter 7: Market Structures Section 1 Key Terms perfect competition: a market structure in which a large number of firms all produce the same product and no single seller controls supply or prices commodity:

More information

Introducing Social Psychology

Introducing Social Psychology Introducing Social Psychology Theories and Methods in Social Psychology 27 Feb 2012, Banu Cingöz Ulu What is social psychology? A field within psychology that strives to understand the social dynamics

More information

Liz Myers. From Front Porch to Back Seat: Courtship in Twentieth-Century America. Secondary Resource Paper. HIST 215A: American History

Liz Myers. From Front Porch to Back Seat: Courtship in Twentieth-Century America. Secondary Resource Paper. HIST 215A: American History Front Porch to Back Seat 1 Liz Myers From Front Porch to Back Seat: Courtship in Twentieth-Century America Secondary Resource Paper HIST 215A: American History Professor Katherine Tinsley March 24, 2008

More information

Internal Evolution for Agent Cognition Agent-Based Modelling of an Artificial Stock Market

Internal Evolution for Agent Cognition Agent-Based Modelling of an Artificial Stock Market Internal Evolution for Agent Cognition Agent-Based Modelling of an Artificial Stock Market Master of Science Thesis in Complex Adaptive Systems MORTEZA HASSANZADEH Department of Energy and Environment

More information

Cournot s model of oligopoly

Cournot s model of oligopoly Cournot s model of oligopoly Single good produced by n firms Cost to firm i of producing q i units: C i (q i ), where C i is nonnegative and increasing If firms total output is Q then market price is P(Q),

More information

Oligopoly. Oligopoly is a market structure in which the number of sellers is small.

Oligopoly. Oligopoly is a market structure in which the number of sellers is small. Oligopoly Oligopoly is a market structure in which the number of sellers is small. Oligopoly requires strategic thinking, unlike perfect competition, monopoly, and monopolistic competition. Under perfect

More information

Seminar in Software and Service Engineering: Software Ecosystems and Infrastructures Lecture 1: Background to the topic area

Seminar in Software and Service Engineering: Software Ecosystems and Infrastructures Lecture 1: Background to the topic area Seminar in Software and Service Engineering: Software Ecosystems and Infrastructures Lecture 1: Background to the topic area Kari Smolander kari.smolander@aalto.fi Course details Topic area Objectives

More information

Online Appendix to Stochastic Imitative Game Dynamics with Committed Agents

Online Appendix to Stochastic Imitative Game Dynamics with Committed Agents Online Appendix to Stochastic Imitative Game Dynamics with Committed Agents William H. Sandholm January 6, 22 O.. Imitative protocols, mean dynamics, and equilibrium selection In this section, we consider

More information

6.080 / 6.089 Great Ideas in Theoretical Computer Science Spring 2008

6.080 / 6.089 Great Ideas in Theoretical Computer Science Spring 2008 MIT OpenCourseWare http://ocw.mit.edu 6.080 / 6.089 Great Ideas in Theoretical Computer Science Spring 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

Games of Incomplete Information

Games of Incomplete Information Games of Incomplete Information Jonathan Levin February 00 Introduction We now start to explore models of incomplete information. Informally, a game of incomplete information is a game where the players

More information

CHAPTER 12 MARKETS WITH MARKET POWER Microeconomics in Context (Goodwin, et al.), 2 nd Edition

CHAPTER 12 MARKETS WITH MARKET POWER Microeconomics in Context (Goodwin, et al.), 2 nd Edition CHAPTER 12 MARKETS WITH MARKET POWER Microeconomics in Context (Goodwin, et al.), 2 nd Edition Chapter Summary Now that you understand the model of a perfectly competitive market, this chapter complicates

More information

Iterated Mutual Observation with Genetic Programming

Iterated Mutual Observation with Genetic Programming Iterated Mutual Observation with Genetic Programming Peter Dittrich (), Thomas Kron (2), Christian Kuck (), Wolfgang Banzhaf () () University of Dortmund (2) University of Hagen Department of Computer

More information

Formal Languages and Automata Theory - Regular Expressions and Finite Automata -

Formal Languages and Automata Theory - Regular Expressions and Finite Automata - Formal Languages and Automata Theory - Regular Expressions and Finite Automata - Samarjit Chakraborty Computer Engineering and Networks Laboratory Swiss Federal Institute of Technology (ETH) Zürich March

More information

Nash Equilibria and. Related Observations in One-Stage Poker

Nash Equilibria and. Related Observations in One-Stage Poker Nash Equilibria and Related Observations in One-Stage Poker Zach Puller MMSS Thesis Advisor: Todd Sarver Northwestern University June 4, 2013 Contents 1 Abstract 2 2 Acknowledgements 3 3 Literature Review

More information

Creating a NL Texas Hold em Bot

Creating a NL Texas Hold em Bot Creating a NL Texas Hold em Bot Introduction Poker is an easy game to learn by very tough to master. One of the things that is hard to do is controlling emotions. Due to frustration, many have made the

More information

Chapter 1 Introduction. 1.1 Introduction

Chapter 1 Introduction. 1.1 Introduction Chapter 1 Introduction 1.1 Introduction 1 1.2 What Is a Monte Carlo Study? 2 1.2.1 Simulating the Rolling of Two Dice 2 1.3 Why Is Monte Carlo Simulation Often Necessary? 4 1.4 What Are Some Typical Situations

More information

Competition, Collusion and Regulation in Dynamic Spectrum Markets

Competition, Collusion and Regulation in Dynamic Spectrum Markets Competition, Collusion and Regulation in Dynamic Spectrum Markets George Iosifidis giosifid@uth.gr www.georgeiosifidis.net CERTH and University of Thessaly, Volos, Greece Outline 1 Introduction 2 Double

More information

9 Repeated Games. Tomorrow, and tomorrow, and tomorrow, Creeps in this petty pace from day to day To the last syllable of recorded time Shakespeare

9 Repeated Games. Tomorrow, and tomorrow, and tomorrow, Creeps in this petty pace from day to day To the last syllable of recorded time Shakespeare 9 Repeated Games Tomorrow, and tomorrow, and tomorrow, Creeps in this petty pace from day to day To the last syllable of recorded time Shakespeare When a game G is repeated an indefinite number of times

More information

1. Implementation of a testbed for testing Energy Efficiency by server consolidation using Vmware

1. Implementation of a testbed for testing Energy Efficiency by server consolidation using Vmware 1. Implementation of a testbed for testing Energy Efficiency by server consolidation using Vmware Cloud Data centers used by service providers for offering Cloud Computing services are one of the major

More information

Specialisation Psychology

Specialisation Psychology Specialisation Psychology Semester 1 Semester 2 An Introduction to Doing Research Politics, Power and Governance I Philosophy of the Social Sciences Economics, Markets and Organisations I Rhetoric Law,

More information

Department of Economics The Ohio State University Economics 817: Game Theory

Department of Economics The Ohio State University Economics 817: Game Theory Department of Economics The Ohio State University Economics 817: Game Theory Syllabus and Reading List James Peck M-W 11:30-1:18 Autumn 2011 Arps Hall 177 www.econ.ohio-state.edu/jpeck/econ817.htm Office

More information

That s Not Fair! ASSESSMENT #HSMA20. Benchmark Grades: 9-12

That s Not Fair! ASSESSMENT #HSMA20. Benchmark Grades: 9-12 That s Not Fair! ASSESSMENT # Benchmark Grades: 9-12 Summary: Students consider the difference between fair and unfair games, using probability to analyze games. The probability will be used to find ways

More information

Economics Instructor Miller Oligopoly Practice Problems

Economics Instructor Miller Oligopoly Practice Problems Economics Instructor Miller Oligopoly Practice Problems 1. An oligopolistic industry is characterized by all of the following except A) existence of entry barriers. B) the possibility of reaping long run

More information

Evaluating the Lead Time Demand Distribution for (r, Q) Policies Under Intermittent Demand

Evaluating the Lead Time Demand Distribution for (r, Q) Policies Under Intermittent Demand Proceedings of the 2009 Industrial Engineering Research Conference Evaluating the Lead Time Demand Distribution for (r, Q) Policies Under Intermittent Demand Yasin Unlu, Manuel D. Rossetti Department of

More information

Game Theory Syllabus

Game Theory Syllabus Game Theory Syllabus Course Description Many events in life are competitive in one way or another, and Game Theory in the past few decades has revolutionized what to look for and how to act when engaged

More information

When other firms see these potential profits they will enter the industry, causing a downward shift in the demand for a given firm s product.

When other firms see these potential profits they will enter the industry, causing a downward shift in the demand for a given firm s product. Characteristics of Monopolistic Competition large number of firms differentiated products (ie. substitutes) freedom of entry and exit Examples Upholstered furniture: firms; HHI* = 395 Jewelry and Silverware:

More information

Self-Management and the Many Facets of Non-Self

Self-Management and the Many Facets of Non-Self Self-Management and the Many Facets of Non-Self Franco Zambonelli Dipartimento di Scienze e Metodi dell Ingegneria Università di Modena e Reggio Emilia franco.zambonelli@unimore.it The difficulties in

More information

Games Manipulators Play

Games Manipulators Play Games Manipulators Play Umberto Grandi Department of Mathematics University of Padova 23 January 2014 [Joint work with Edith Elkind, Francesca Rossi and Arkadii Slinko] Gibbard-Satterthwaite Theorem All

More information

Capital Structure. Itay Goldstein. Wharton School, University of Pennsylvania

Capital Structure. Itay Goldstein. Wharton School, University of Pennsylvania Capital Structure Itay Goldstein Wharton School, University of Pennsylvania 1 Debt and Equity There are two main types of financing: debt and equity. Consider a two-period world with dates 0 and 1. At

More information

Discrete Mathematics and Probability Theory Fall 2009 Satish Rao, David Tse Note 10

Discrete Mathematics and Probability Theory Fall 2009 Satish Rao, David Tse Note 10 CS 70 Discrete Mathematics and Probability Theory Fall 2009 Satish Rao, David Tse Note 10 Introduction to Discrete Probability Probability theory has its origins in gambling analyzing card games, dice,

More information

Internet Advertising and the Generalized Second-Price Auction: Selling Billions of Dollars Worth of Keywords

Internet Advertising and the Generalized Second-Price Auction: Selling Billions of Dollars Worth of Keywords Internet Advertising and the Generalized Second-Price Auction: Selling Billions of Dollars Worth of Keywords by Benjamin Edelman, Michael Ostrovsky, and Michael Schwarz (EOS) presented by Scott Brinker

More information

CHAOS, COMPLEXITY, AND FLOCKING BEHAVIOR: METAPHORS FOR LEARNING

CHAOS, COMPLEXITY, AND FLOCKING BEHAVIOR: METAPHORS FOR LEARNING GIVING WINGS TO NEW IDEAS Wingspread Journal, Summer 1996 CHAOS, COMPLEXITY, AND FLOCKING BEHAVIOR: METAPHORS FOR LEARNING by Stephanie Pace Marshall Sir Isaac Newton saw the universe as an orderly clock.

More information

6 Scalar, Stochastic, Discrete Dynamic Systems

6 Scalar, Stochastic, Discrete Dynamic Systems 47 6 Scalar, Stochastic, Discrete Dynamic Systems Consider modeling a population of sand-hill cranes in year n by the first-order, deterministic recurrence equation y(n + 1) = Ry(n) where R = 1 + r = 1

More information

A Beautiful Mind Meets Free Software: Game Theory, Competition and Cooperation

A Beautiful Mind Meets Free Software: Game Theory, Competition and Cooperation A Beautiful Mind Meets Free Software: Game Theory, Competition and Cooperation Alexandre Oliva oliva@lsd.ic.unicamp.br, lxoliva@fsfla.org, aoliva@redhat.com Summary Russel Crowe, playing John Nash in Ron

More information

Principled Negotiation and the Negotiator s Dilemma is the Getting to Yes -approach too soft?

Principled Negotiation and the Negotiator s Dilemma is the Getting to Yes -approach too soft? Principled Negotiation and the Negotiator s Dilemma is the Getting to Yes -approach too soft? Paper presented at the Interdisciplinary Research Seminar on Negotiation, Harvard University, May 2001 by Rasmus

More information

6. Budget Deficits and Fiscal Policy

6. Budget Deficits and Fiscal Policy Prof. Dr. Thomas Steger Advanced Macroeconomics II Lecture SS 2012 6. Budget Deficits and Fiscal Policy Introduction Ricardian equivalence Distorting taxes Debt crises Introduction (1) Ricardian equivalence

More information

Christmas Gift Exchange Games

Christmas Gift Exchange Games Christmas Gift Exchange Games Arpita Ghosh 1 and Mohammad Mahdian 1 Yahoo! Research Santa Clara, CA, USA. Email: arpita@yahoo-inc.com, mahdian@alum.mit.edu Abstract. The Christmas gift exchange is a popular

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Chap 13 Monopolistic Competition and Oligopoly These questions may include topics that were not covered in class and may not be on the exam. MULTIPLE CHOICE. Choose the one alternative that best completes

More information

ECON 202: Principles of Microeconomics. Chapter 13 Oligopoly

ECON 202: Principles of Microeconomics. Chapter 13 Oligopoly ECON 202: Principles of Microeconomics Chapter 13 Oligopoly Oligopoly 1. Oligopoly and Barriers to Entry. 2. Using Game Theory to Analyze Oligopoly. 3. Sequential Games and Business Strategy. 4. The Five

More information

Laboratory work in AI: First steps in Poker Playing Agents and Opponent Modeling

Laboratory work in AI: First steps in Poker Playing Agents and Opponent Modeling Laboratory work in AI: First steps in Poker Playing Agents and Opponent Modeling Avram Golbert 01574669 agolbert@gmail.com Abstract: While Artificial Intelligence research has shown great success in deterministic

More information