Intelligent Agents & Search Problem Formulation Outline for Today's

Total Page:16

File Type:pdf, Size:1020Kb

Intelligent Agents & Search Problem Formulation Outline for Today's 9/6/2017 Outline for today’s lecture • Intelligent Agents (AIMA 2.1-2) • Task Environments Intelligent Agents & Search Problem Formulation • Formulating Search Problems AIMA, Chapters 2, 3.1-3.2 CIS 421/521 - Intro to AI - Fall 2017 2 Thinking humanly Thinking rationally Review: Acting rationally: Thinking humanly Thinking rationally Acting humanly Acting rationally Acting humanly Acting rationally Review: What is AI? rational agents Views of AI fall into four categories: • Rational behavior: doing the right thing Thinking humanly Thinking rationally • The right thing: that which is expected to maximize goal achievement, given the available Acting humanly Acting rationally information • Rational agent: An agent is an entity that perceives and acts rationally We will focus on "acting rationally“ This course is about effective programming techniques for designing rational agents CIS 521 - Intro to AI - Fall 2017 3 CIS 521 - Intro to AI - Fall 2017 4 Agents and environments Agents • An agent is anything that can be viewed as • perceiving its environment through sensors and • acting upon that environment through actuators • Human agent: • Sensors: eyes, ears, ... • Actuators: hands, legs, mouth, … •An agent is specified by an agent function f:P a that maps a sequence of percept vectors P to an • Robotic agent: action a from a set A: • Sensors: cameras and infrared range finders • Actuators: various motors P=[p0, p1, … , pt] A={a0, a1, … , ak} • Agents include humans, robots, softbots, thermostats, … CIS 421/521 - Intro to AI - Fall 2017 5 CIS 421/521 - Intro to AI - Fall 2017 6 1 9/6/2017 Agent function & program Rational agents II • The agent program runs on the physical • Rational Agent: For each possible percept architecture to produce f sequence P, a rational agent selects an action a • agent = architecture + program expected to maximize its performance measure • “Easy” solution: table that maps every possible • Performance measure: An objective criterion for sequence P to an action a success of an agent's behavior, given the • One small problem: exponential in length of P evidence provided by the percept sequence. Revised: • Rational Agent: For each possible percept sequence P, a rational agent selects an action a that maximizes the expected value of its performance measure CIS 421/521 - Intro to AI - Fall 2017 7 CIS 421/521 - Intro to AI - Fall 2017 8 Performance measure - example Rationality is not omniscience • A performance measure for a vacuum-cleaner • Ideal agent: maximizes actual performance, but agent might include e.g. some subset of: needs to be omniscient. • +1 point for each clean square in time T • Usually impossible….. • +1 point for clean square, -1 for each move — But consider tic-tac-toe agent… • -1000 for more than k dirty squares • Rationality Guaranteed Success • Caveat: computational limitations make complete rationality unachievable design best program for given machine resources • In Economics: “Bounded Rationality” “Behavioral Economics” CIS 421/521 - Intro to AI - Fall 2017 9 CIS 421/521 - Intro to AI - Fall 2017 10 Outline for today’s lecture Task environments • Intelligent Agents • To design a rational agent we need to specify a task environment • Task Environments (AIMA 2.3) • a problem specification for which the agent is a solution : to specify a task environment • Formulating Search Problems • PEAS • Performance measure • Environment • Actuators • Sensors CIS 421/521 - Intro to AI - Fall 2017 11 CIS 421/521 - Intro to AI - Fall 2017 12 2 9/6/2017 PEAS: Specifying an automated taxi driver PEAS: Specifying an automated taxi driver Performance measure: Performance measure: • ? • safe, fast, legal, comfortable, maximize profits Environment: Environment: • ? • roads, other traffic, pedestrians, customers Actuators: Actuators: • ? • steering, accelerator, brake, signal, horn Sensors: Sensors: • ? • cameras, sonar, speedometer, GPS CIS 421/521 - Intro to AI - Fall 2017 13 CIS 421/521 - Intro to AI - Fall 2017 14 PEAS: Medical diagnosis system The rational agent designer’s goal • Performance measure: Healthy patient, minimize • Goal of AI practitioner who designs rational agents: costs, lawsuits given a PEAS task environment, • Environment: Patient, hospital, staff 1. Construct agent function f that maximizes the expected value of the performance measure, • Actuators: Screen display (form including: questions, tests, diagnoses, treatments, referrals) 2. Design an agent program that implements f on a From: The New Yorker April 2017 particular architecture • Sensors: Keyboard (entry of symptoms, findings, patient's answers) CIS 421/521 - Intro to AI - Fall 2017 15 CIS 421/521 - Intro to AI - Fall 2017 16 Environment types: Definitions I Environment types: Definitions II • Fully observable (vs. partially observable): An agent's • Static (vs. dynamic): The environment is unchanged while sensors give it access to the complete state of the an agent is deliberating. environment at each point in time. • The environment is semidynamic if the environment itself does not change with the passage of time but the agent's performance • Deterministic (vs. stochastic): The next state of the score does. environment is completely determined by the current state and the action executed by the agent. • If the environment is deterministic except for the actions of other • Discrete (vs. continuous): A limited number of distinct, agents, then the environment is strategic. clearly defined percepts and actions. • Episodic (vs. sequential): The agent's experience is • Single agent (vs. multiagent): An agent operating by divided into atomic "episodes" during which the agent itself in an environment. perceives and then performs a single action, and the choice of action in each episode does not depend on any previous action. (example: classification task) (See examples in AIMA, however I don’t agree with some of the judgments) CIS 421/521 - Intro to AI - Fall 2017 17 CIS 421/521 - Intro to AI - Fall 2017 18 3 9/6/2017 Environment Restrictions for Now • We will assume environment is • Static • Fully Observable Problem Solving Agents & • Deterministic • Discrete Problem Formulation AIMA 3.1-2 CIS 421/521 - Intro to AI - Fall 2017 19 CIS 421/521 - Intro to AI - Fall 2017 20 Outline for today’s lecture Example search problem: 8-puzzle • Intelligent Agents • Formulate goal • Task Environments • Pieces to end up in order • Formulating Search Problems (AIMA, 3.1-3.2) as shown… • Formulate search problem • States: configurations of the puzzle (9! configurations) • Actions: Move one of the movable pieces (≤4 possible) • Performance measure: minimize total moves • Find solution • Sequence of pieces moved: 3,1,6,3,1,… CIS 421/521 - Intro to AI - Fall 2017 21 CIS 421/521 - Intro to AI - Fall 2017 22 Example search problem: holiday in Romania Holiday in Romania II • On holiday in Romania; currently in Arad • Flight leaves tomorrow from Bucharest • Formulate goal • Be in Bucharest • Formulate search problem You are here • States: various cities • Actions: drive between cities • Performance measure: minimize distance • Find solution • Sequence of cities; e.g. Arad, Sibiu, Fagaras, Bucharest, … You need to be here CIS 421/521 - Intro to AI - Fall 2017 23 CIS 421/521 - Intro to AI - Fall 2017 24 4 9/6/2017 More formally, a problem is defined by: Solutions & Optimal Solutions 1. States: a set S • A solution is a sequence of actions from the 2. An initial state siS initial state to a goal state. 3. Actions: a set A — s Actions(s) = the set of actions that can be executed in s, that are applicable in s. • Optimal Solution: A solution is optimal if no solution has a lower path cost. 4. Transition Model: s aActions(s) Result(s, a) sr —sr is called a successor of s —{si } Successors(si )* = state space 5. Path cost (Performance Measure): Must be additive —e.g. sum of distances, number of actions executed, … —c(x,a,y) is the step cost, assumed ≥ 0 – (where action a goes from state x to state y) 6. Goal test: Goal(s) — Can be implicit, e.g. checkmate(s) — s is a goal state if Goal(s) is true CIS 421/521 - Intro to AI - Fall 2017 25 CIS 421/521 - Intro to AI - Fall 2017 26 Art: Formulating a Search Problem Example: 8-puzzle Decide: • Which properties matter & how to represent • Initial State, Goal State, Possible Intermediate States • Which actions are possible & how to represent • States?? • Operator Set: Actions and Transition Model • Initial state?? • Which action is next • Actions?? • Path Cost Function • Transition Model?? • Goal test?? Formulation greatly affects combinatorics of search • Path cost?? space and therefore speed of search CIS 421/521 - Intro to AI - Fall 2017 27 CIS 421/521 - Intro to AI - Fall 2017 28 Example: 8-puzzle Example: 8-puzzle • States?? List of 9 locations- e.g., [7,2,4,5,-,6,8,3,1] • States?? List of 9 locations- e.g., [7,2,4,5,-,6,8,3,1] • Initial state?? [7,2,4,5,-,6,8,3,1] • Initial state?? [7,2,4,5,-,6,8,3,1] • Actions?? {Left, Right, Up, Down} • Actions?? {Left, Right, Up, Down} • Transition Model?? ... • Transition Model?? ... • Goal test?? Check if goal configuration is reached • Goal test?? Check if goal configuration is reached • Path cost?? Number of actions to reach goal • Path cost?? Number of actions to reach goal CIS 421/521 - Intro to AI - Fall 2017 29 CIS 421/521 - Intro to AI - Fall 2017 30 5 9/6/2017 Hard subtask: Selecting a state space • Real world is absurdly complex State space must be abstracted for problem solving • (abstract) State = set (equivalence class) of real world states • (abstract)
Recommended publications
  • Kranton Duke University
    The Devil is in the Details – Implications of Samuel Bowles’ The Moral Economy for economics and policy research October 13 2017 Rachel Kranton Duke University The Moral Economy by Samuel Bowles should be required reading by all graduate students in economics. Indeed, all economists should buy a copy and read it. The book is a stunning, critical discussion of the interplay between economic incentives and preferences. It challenges basic premises of economic theory and questions policy recommendations based on these theories. The book proposes the path forward: designing policy that combines incentives and moral appeals. And, therefore, like such as book should, The Moral Economy leaves us with much work to do. The Moral Economy concerns individual choices and economic policy, particularly microeconomic policies with goals to enhance the collective good. The book takes aim at laws, policies, and business practices that are based on the classic Homo economicus model of individual choice. The book first argues in great detail that policies that follow from the Homo economicus paradigm can backfire. While most economists would now recognize that people are not purely selfish and self-interested, The Moral Economy goes one step further. Incentives can amplify the selfishness of individuals. People might act in more self-interested ways in a system based on incentives and rewards than they would in the absence of such inducements. The Moral Economy warns economists to be especially wary of incentives because social norms, like norms of trust and honesty, are critical to economic activity. The danger is not only of incentives backfiring in a single instance; monetary incentives can generally erode ethical and moral codes and social motivations people can have towards each other.
    [Show full text]
  • Correlated Equilibria and Communication in Games Françoise Forges
    Correlated equilibria and communication in games Françoise Forges To cite this version: Françoise Forges. Correlated equilibria and communication in games. Computational Complex- ity. Theory, Techniques, and Applications, pp.295-704, 2012, 10.1007/978-1-4614-1800-9_45. hal- 01519895 HAL Id: hal-01519895 https://hal.archives-ouvertes.fr/hal-01519895 Submitted on 9 May 2017 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Correlated Equilibrium and Communication in Games Françoise Forges, CEREMADE, Université Paris-Dauphine Article Outline Glossary I. De…nition of the Subject and its Importance II. Introduction III. Correlated Equilibrium: De…nition and Basic Properties IV. Correlated Equilibrium and Communication V. Correlated Equilibrium in Bayesian Games VI. Related Topics and Future Directions VII. Bibliography Acknowledgements The author wishes to thank Elchanan Ben-Porath, Frédéric Koessler, R. Vijay Krishna, Ehud Lehrer, Bob Nau, Indra Ray, Jérôme Renault, Eilon Solan, Sylvain Sorin, Bernhard von Stengel, Tristan Tomala, Amparo Ur- bano, Yannick Viossat and, especially, Olivier Gossner and Péter Vida, for useful comments and suggestions. Glossary Bayesian game: an interactive decision problem consisting of a set of n players, a set of types for every player, a probability distribution which ac- counts for the players’ beliefs over each others’ types, a set of actions for every player and a von Neumann-Morgenstern utility function de…ned over n-tuples of types and actions for every player.
    [Show full text]
  • Analyzing Just-In-Time Purchasing Strategy in Supply Chains Using an Evolutionary Game Approach
    Bulletin of the JSME Vol.14, No.5, 2020 Journal of Advanced Mechanical Design, Systems, and Manufacturing Analyzing just-in-time purchasing strategy in supply chains using an evolutionary game approach Ziang LIU* and Tatsushi NISHI** *Graduate School of Engineering Science, Osaka University 1-3 Machikaneyama-Cho, Toyonaka City, Osaka 560-8531, Japan E-mail: [email protected] **Graduate School of Natural Science and Technology, Okayama University 3-1-1 Tsushima-naka, Kita-ku, Okayama City, Okayama 700-8530, Japan Received: 18 December 2019; Revised: 30 March 2020; Accepted: 9 April 2020 Abstract Many researchers have focused on the comparison between the JIT model and the EOQ model. However, few of them studied this problem from an evolutionary perspective. In this paper, a JIT purchasing with the single- setup-multi-delivery model is introduced to compare the total costs of the JIT model and the EOQ model. Also, we extend the classical JIT-EOQ models to a two-echelon supply chain which consists of one manufacturer and one supplier. Considering the bounded rationality of players and the quickly changing market, an evolutionary game model is proposed to discuss how these factors impact the strategy selection of the companies. And the evolutionarily stable strategy of the proposed model is analyzed. Based on the analysis, we derive the conditions when the supply chain system will choose the JIT strategy and propose a contract method to ensure that the system converges to the JIT strategy. Several numerical experiments are provided to observe the JIT and EOQ purchasing strategy selection of the manufacturer and the supplier.
    [Show full text]
  • Kahneman's Thinking, Fast and Slow from the Standpoint of Old
    Kahneman’s Thinking, Fast and Slow from the Standpoint of Old Behavioural Economics (For the 2012 HETSA Conference) Peter E. Earl School of Economics, University of Queensland, St Lucia, Brisbane, QLD 4072, Australia, email: [email protected] Abstract Daniel Kahneman’s bestseller Thinking, Fast and Slow presents an account of his life’s work on judgment and decision-making (much of it conducted with Amos Tversky) that has been instrumental in the rise of what Sent (2004) calls ‘new behavioural economics’. This paper examines the relationship between Kahneman’s work and some key contributions within the ‘old behavioural’ literature that Kahneman fails to discuss. It show how closely aligned he is to economic orthodoxy, examining his selective use of Herbert Simon’s work in relation to his ‘two systems’ view of decision making and showing how Shackle’s model of choice under uncertainty provided an alternative way of dealing with some of the issues that Kahneman and Tversky sought to address, three decades after Shackle worked out his model, via their Prospect Theory. Aside from not including ‘loss aversion’, it was Shackle’s model that was the more original and philosophically well-founded. Keywords: Prospect Theory, satisficing, bounded rationality, choice under uncertainty JEL Classification Codes: B31, D03, D81 1. Introduction In his highly successful 2011 book Thinking, Fast and Slow Daniel Kahneman offers an excellent account of his career-long research on judgment and decision- making, much of it conducted with the late Amos Tversky. Kahneman was awarded the 2002 Bank of Sweden PriZe in Economic Sciences in Memory of Alfred Nobel for this work.
    [Show full text]
  • Dynamic Games Under Bounded Rationality
    Munich Personal RePEc Archive Dynamic Games under Bounded Rationality Zhao, Guo Southwest University for Nationalities 8 March 2015 Online at https://mpra.ub.uni-muenchen.de/62688/ MPRA Paper No. 62688, posted 09 Mar 2015 08:52 UTC Dynamic Games under Bounded Rationality By ZHAO GUO I propose a dynamic game model that is consistent with the paradigm of bounded rationality. Its main advantages over the traditional approach based on perfect rationality are that: (1) the strategy space is a chain-complete partially ordered set; (2) the response function is certain order-preserving map on strategy space; (3) the evolution of economic system can be described by the Dynamical System defined by the response function under iteration; (4) the existence of pure-strategy Nash equilibria can be guaranteed by fixed point theorems for ordered structures, rather than topological structures. This preference-response framework liberates economics from the utility concept, and constitutes a marriage of normal-form and extensive-form games. Among the common assumptions of classical existence theorems for competitive equilibrium, one is central. That is, individuals are assumed to have perfect rationality, so as to maximize their utilities (payoffs in game theoretic usage). With perfect rationality and perfect competition, the competitive equilibrium is completely determined, and the equilibrium depends only on their goals and their environments. With perfect rationality and perfect competition, the classical economic theory turns out to be deductive theory that requires almost no contact with empirical data once its assumptions are accepted as axioms (see Simon 1959). Zhao: Southwest University for Nationalities, Chengdu 610041, China (e-mail: [email protected]).
    [Show full text]
  • Arxiv:1512.06789V1 [Stat.ML] 21 Dec 2015
    Information-Theoretic Bounded Rationality Pedro A. Ortega [email protected] University of Pennsylvania Philadelphia, PA 19104, USA Daniel A. Braun [email protected] Max Planck Institute for Intelligent Systems Max Planck Institute for Biological Cybernetics 72076 T¨ubingen,Germany Justin Dyer [email protected] Google Inc. Mountain View, CA 94043, USA Kee-Eung Kim [email protected] Korea Advanced Institute of Science and Technology Daejeon, Korea 305-701 Naftali Tishby [email protected] The Hebrew University Jerusalem, 91904, Israel Abstract Bounded rationality, that is, decision-making and planning under resource limitations, is widely regarded as an important open problem in artificial intelligence, reinforcement learning, computational neuroscience and economics. This paper offers a consolidated pre- sentation of a theory of bounded rationality based on information-theoretic ideas. We provide a conceptual justification for using the free energy functional as the objective func- tion for characterizing bounded-rational decisions. This functional possesses three crucial properties: it controls the size of the solution space; it has Monte Carlo planners that are exact, yet bypass the need for exhaustive search; and it captures model uncertainty arising from lack of evidence or from interacting with other agents having unknown intentions. We discuss the single-step decision-making case, and show how to extend it to sequential decisions using equivalence transformations. This extension yields a very general class of decision problems that encompass classical decision rules (e.g. Expectimax and Minimax) as limit cases, as well as trust- and risk-sensitive planning. arXiv:1512.06789v1 [stat.ML] 21 Dec 2015 c December 2015 by the authors.
    [Show full text]
  • Imbalanced Collusive Security Games
    Imbalanced Collusive Security Games Han-Ching Ou, Milind Tambe, Bistra Dilkina, and Phebe Vayanos Computer Science Department, University of Southern California {hanchino,tambe,dilkina,phebe.vayanos }@usc.edu Abstract. Colluding adversaries is a crucial challenge for defenders in many real-world applications. Previous literature has provided Collusive Security Games (COSG) to model colluding adversaries, and provided models and algorithms to generate defender strategies to counter colluding adversaries, often by devising strategies that inhibit collusion [6]. Unfortunately, this previous work focused exclusively on situations with perfectly matched adversaries, i.e., where their rewards were symmetrically distributed. In the real world, however, defenders often face adversaries where their rewards are asymmetrically distributed. Such inherent asymmetry raises a question as to whether human adversaries would at- tempt to collude in such situations, and whether defender strategies to counter such collusion should focus on inhibiting collusion. To address these open ques- tions, this paper: (i) explores and theoretically analyzes Imbalanced Collusive Security Games (ICOSG) where defenders face adversaries with asymmetrically distributed rewards; (ii) conducts extensive experiments of three different adver- sary models involving 1800 real human subjects and (iii) derives novel analysis of the reason behind why bounded rational attackers models outperform perfectly rational attackers models. The key principle discovered as the result of our
    [Show full text]
  • Noisy Directional Learning and the Logit Equilibrium*
    CSE: AR SJOE 011 Scand. J. of Economics 106(*), *–*, 2004 DOI: 10.1111/j.1467-9442.2004.000376.x Noisy Directional Learning and the Logit Equilibrium* Simon P. Anderson University of Virginia, Charlottesville, VA 22903-3328, USA [email protected] Jacob K. Goeree California Institute of Technology, Pasadena, CA 91125, USA [email protected] Charles A. Holt University of Virginia, Charlottesville, VA 22903-3328, USA [email protected] PROOF Abstract We specify a dynamic model in which agents adjust their decisions toward higher payoffs, subject to normal error. This process generates a probability distribution of players’ decisions that evolves over time according to the Fokker–Planck equation. The dynamic process is stable for all potential games, a class of payoff structures that includes several widely studied games. In equilibrium, the distributions that determine expected payoffs correspond to the distributions that arise from the logit function applied to those expected payoffs. This ‘‘logit equilibrium’’ forms a stochastic generalization of the Nash equilibrium and provides a possible explanation of anomalous laboratory data. ECTED Keywords: Bounded rationality; noisy directional learning; Fokker–Planck equation; potential games; logit equilibrium JEL classification: C62; C73 I. Introduction Small errors and shocks may have offsetting effects in some economic con- texts, in which case there is not much to be gained from an explicit analysis of stochasticNCORR elements. In other contexts, a small amount of randomness can * We gratefully acknowledge financial support from the National Science Foundation (SBR- 9818683U and SBR-0094800), the Alfred P. Sloan Foundation and the Dutch National Science Foundation (NWO-VICI 453.03.606).
    [Show full text]
  • Relation Exchange As the Model of Bounded Rationality
    Relation exchange as the model of bounded rationality June 16, 2017 Sung Sup Rhee Emeritus professor at Soongsil University [email protected] This paper is a preliminary version which is prepared for the presentation at 2017 KEA- APEA conference, July 7-8, 2017. Title: Relation exchange as the model of bounded rationality Author: Sung Sup Rhee/Emeritus professor at Soongsil University/[email protected] Abstracts: Kahneman (2003) presented the scheme of human cognitive system, which presents the steps of sensory order. Human cognition begins with perceptions, from which intuition comes off as fast, parallel, automatic, effortless and emotional system. Reasoning is slow, serial, controlled, effortful and rule-governed system of cognition. The architecture of rational agent model is built on the unrealistic assumption of single cognitive system which has the logical ability of a flawless system of reasoning. However, upon encountering the need to make decision, individuals are likely to act intuitively because intuition is more accessible than reason, which is at odds with the premise of rational agent model and prompts the launching of empiricism approach (Hume 1739). The process of sympathy and consent may be considered as the conduit between different cognitive systems of different individuals. Then, the relational interactions among individuals, i.e. relation exchange should be conceived as the outcome of sympathy-consent process (Rhee 2012b, 2016b). The fundamentality of relation exchange in comparison with value exchange vindicates the legitimacy of relation exchange as the model of bounded rationality. Keywords Cognitive system, accessibility, sympathy-consent process, relation exchange, open/indeterminate system, bounded rationality JEL code: D01, D03 I.
    [Show full text]
  • Price Dispersion in the Lab and on the Internet: Theory and Evi- Dence
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Research Papers in Economics Price dispersion in the lab and on the Internet: Theory and evi- dence MichaelR.Baye∗ John Morgan∗∗ Price dispersion is ubiquitous in settings that closely approximate textbook Bertrand competition. We show (Propositions 2 and 3) that only a little bounded rationality among sellers is needed to rationalize such dispersion. A variety of statistical tests, based on data sets from two indepen- dent laboratory experiments and structural estimates of the parameters of our models, suggest that bounded rationality based theories of price dispersion organize the data remarkably well. Evidence is also presented which suggests that the models are consistent with data from a leading Internet price comparison site. *Department of Business Economics and Public Policy, Kelley School of Business, Indiana Univer- sity, Bloomington, IN 47405. Phone: (812) 855-2779. E-mail: [email protected]. ** Haas School of Business and Department of Economics, University of California, Berkeley, CA 94720. Phone: (510) 642-2669. E-mail: [email protected]. We thank the Editor, the referees, and numerous seminar participants for helpful comments on earlier versions of this paper. We are especially grateful to Dilip Abreu, Martin Dufwenberg, Glenn Ellison, Nancy Epling, Ed Glaeser, Uri Gneezy, Paul Klemperer, Dan Kovenock, David Laibson, John Maxwell, Martin Sefton, Dale Stahl, and Abdullah Yavas. The authors thank Nuffield College (University of Oxford), Trinity and Corpus Christi Colleges (University of Cambridge), University of Nottingham, The Hoover Institution, and the University of Bonn for their gracious hospitality and for providing a stimulating environment where some of this work was completed.
    [Show full text]
  • Behavioral Economics in Context Applications for Development, Inequality & Discrimination, Finance, and Environment
    Behavioral Economics In Context Applications for Development, Inequality & Discrimination, Finance, and Environment By Anastasia C. Wilson An ECI Teaching Module on Social and Environmental Issues in Economics Global Development Policy Center Boston University 53 Bay State Road Boston, MA 02155 bu.edu/gdp Economics in Context Initiative, Global Development Policy Center, Boston University, 2020. Permission is hereby granted for instructors to copy this module for instructional purposes. Suggested citation: Wilson, Anastasia C. (2020) “Behavioral Economics In Context: Applications for Development, Inequality & Discrimination, Finance, and Environment.” An ECI Teaching Module on Social and Economic Issues, Economics in Context Initiative, Global Development Policy Center, Boston University, 2020. Students may also download the module directly from: http://www.bu.edu/eci/education-materials/teaching-modules/ Comments and feedback from course use are welcomed: Economics in Context Initiative Global Development Policy Center Boston University 53 Bay State Road Boston, MA 02215 http://www.bu.edu/eci/ Email: [email protected] NOTE – terms denoted in bold face are defined in the KEY TERMS AND CONCEPTS section at the end of the module. BEHAVIORAL ECONOMICS IN CONTEXT TABLE OF CONTENTS 1. INTRODUCTION ........................................................................................................ 4 1.1 The History and Development of Behavioral Economics .......................................................... 5 1.2 Behavioral Economics Toolkit:
    [Show full text]
  • Bounded Rationality: Models of Fast and Frugal Inference
    Published in: Swiss Journal of Economics and Statistics, 133 (2/2), 1997, 201–218. © 1997 Peter Lang, 0303-9692. Bounded Rationality: Models of Fast and Frugal Inference Gerd Gigerenzer1 Max Planck Institute for Psychological Research, Munich, Germany Humans and other animals need to make inferences about their environment under constraints of limited time, knowledge, and computational capacities. However, most theories of inductive infer- ences model the human mind as a supercomputer like a Laplacean demon, equipped with unlim- ited time, knowledge, and computational capacities. In this article I review models of fast and frugal inference, that is, satisfi cing strategies whose task is to infer unknown states of the world (without relying on computationaly expensive procedures such as multiple regression). Fast and frugal inference is a form of bounded rationality (Simon, 1982). I begin by explaining what bounded rationality in human inference is not. 1. Bounded Rationality is Not Irrationality In his chapter in John Kagel and Alvin Roth’s Handbook of Experimental Economics (1995), Colin Camerer explains that “most research on individual decision making has taken normative theo- ries of judgment and choice (typically probability rules and utility theories) as null hypotheses about behavior,” and has labeled systematic deviations from these norms “cognitive illusions” (p. 588). Camerer continues, “The most fruitful, popular alternative theories spring from the idea that limits on computational ability force people to use simplifi ed procedures or ‘heuristics’ that cause systematic mistakes (biases) in problem solving, judgment, and choice. The roots of this approach are in Simon’s (1955) distinction between substantive rationality (the result of norma- tive maximizing models) and procedural rationality.” (p.
    [Show full text]