CPS 196.1/296.1 - Computational Microeconomics: Game Theory, Social Choice, and Mechanism Design, Fall 2009
You may also be interested in Kamesh's course: Sequential Decision Theory. Taking both courses is possible.



Details
WF, 2:50-4:05, North 225 (no longer in Perkins)
Instructor: Vincent Conitzer. (Please call me Vince.)

Office hours: by appointment.

Description
Computer scientists are increasingly confronted with settings where multiple self-interested parties interact. Two prominent examples are electronic marketplaces and networked computer systems.

To act optimally in such settings, each party (or "agent") must take into account how the other agents are likely to act. Game theory studies how this should be done, and it provides various solution concepts which prescribe how agents should act when the actions of other agents affect their utilities. For example, agents are said to play in Nash equilibrium if no single agent can benefit by deviating. In this course, we will review these concepts, as well as operationalize them by providing algorithms to compute the solutions. This will allow us to write software that performs well in multiagent settings (as well as to create good computer players for game-theoretically nontrivial games, such as poker).

Playing the game is only half the story. As computer scientists, we often get to design the game (the rules of the electronic marketplace, the system protocols, etc.). While we cannot directly control the behavior of (self-interested) users, we can give them incentives to behave in a desirable way. Mechanism design studies how to design the game (or "mechanism") so that self-interested behavior will lead to good outcomes. In this course, we will review basic results in social choice and mechanism design, including standard mechanisms as well as impossibility results. We will also study computational aspects of social choice and mechanism design, including efficiently eliciting information from the agents, computing the outcomes of mechanisms in various settings, and even optimizing the mechanism itself.

Throughout the course, we will consider applications such as (combinatorial) auctions, exchanges, and voting.

Recommended for:
1. Anyone in computer science who is interested. The amount of research on these topics in both the AI and theory communities has surged in recent years. There is also increasing interest in the systems community.

2. The course will also be open to interested students outside of computer science, for example students in economics or mathematics. Such students should talk to Vince before the start of the course to discuss background issues and what you hope to get out of the course. Requirements may be individualized for such students to take background disadvantages (and advantages) into account.

Prerequisites
Basic knowledge of probability, algorithms, and (very basic) computational complexity. Undergraduates are welcome provided they have the required background. Interested students without computer science backgrounds (e.g., students in economics or mathematics) should talk to Vince first.

Grading
Participation: 10%
Assignments: 20%
Midterm: 20%
Project: 50%

Modified requirements may be available for undergraduates and students from other fields.

You may discuss assignments with at most one other person. Each person must do her or his own writeup. Moreover, you may not simply write down a solution and give it to the other person. You may present things to each other on (say) a whiteboard, but the other person should not simply be copying things over. You should acknowledge everyone you worked with, as well as all other sources, on the writeup. Assignments are always due immediately at the beginning of class.

Book
We will use parts of a new book by Shoham and Leyton-Brown (SLB), Multiagent Systems. A free electronic copy is available at that link though the printed version is very reasonably priced as well.

Some additional books that you could use as references (very much optional):

Noam Nisan, Tim Roughgarden, Eva Tardos, Vijay V. Vazirani, Algorithmic Game Theory.

General microeconomic theory:
Andreu Mas-Colell, Michael D. Whinston, Jerry R. Green, Microeconomic Theory. (Especially Part 2: Game Theory, and Part 5: Welfare Economics and Incentives (which studies mechanism design).)

Game theory:
Martin J. Osborne and Ariel Rubinstein, A Course in Game Theory. (freely available online!)
Drew Fudenberg and Jean Tirole, Game Theory.

Combinatorial auctions:
Peter Cramton, Yoav Shoham, Richard Steinberg, Combinatorial Auctions. (Some of the chapters of this book can be found online.)

Schedule
In the below, SLB refers to the Shoham/Leyton-Brown book. We will not cover all of this book, we will not always go in the same order as the book, and we will cover some things not in the book. The below tries to line up our lectures with the book, but of course you are welcome to read the book in its original order, read other parts of book, etc. If you would like advice on further reading on some topic, talk to Vince.

The course will be divided into roughly two halves. The first half is primarily a crash course in game theory, social choice, and mechanism design (where we will consider some computational aspects along the way). At the end of this first half we will have a midterm to make sure everyone understands the basics.

In the second half of the course, we will consider a few more basic topics for which we didn't have time in the first half, as well as more advanced topics. During this half of the course, you should also be working intensively on your project.

In the below, one topic will not necessarily take one lecture to finish.

Date Topic Materials
8/26 Course at a glance. What problems are we trying to solve? Example applications: game playing, security, elections, electronic marketplaces, resource allocation, ... Slides: ppt, pdf.
Optional: Some CACM articles:
Computer Science and Game Theory, Making Decisions Based on the Preferences of Multiple Agents, Designing the Perfect Auction.
8/28, 9/2 Linear, integer, and mixed integer programs. Slides: ppt, pdf.
SLB Appendices A and B (if you need them).
In case you want to use it: GNU Linear Programming Kit. Let me know if you have trouble installing/using it.
Example files: painting.lp, painting.mod, knapsack.lp, knapsack.mod, cell.lp, cell.mod, hotdog.mod.
8/31 (Bonus lecture for non-cs students.) Ridiculously brief introduction to theoretical computer science: computational problems, algorithms, runtime, complexity. Slides: ppt, pdf.
Modeling files: set_cover.mod, set_cover2.mod, matching.mod.
Sorting spreadsheet.
CACM article on P vs. NP.
8/28 Risk neutrality and risk aversion. Expected utility theory. SLB Section 3.1.
Slides: ppt, pdf.
9/2-9/9 Games in normal form. Dominance and iterated dominance. Computing dominated strategies. Minimax strategies. Computing minimax strategies. Nash equilibrium. Computing Nash equilibria. Correlated equilibrium. Computing correlated equilibria. Slides: ppt, pdf.
Homework 1 out.
SLB 3.2, 3.4.3, 4.5; 3.3.1-3.3.3, 3.4.1, 3.4.5, 4.1, 4.2.1, 4.2.3, 4.2.4, 4.4, 4.6.
Optional: 3.3.4, 4.2.2.
Paper on computing dominated strategies. (You can skip the part on Bayesian games.)
Paper on computing Nash equilibria. (You only need to read the part concerning 2-player games.)
Paper on computing special kinds of Nash equilibria. (You can skip everything from Bayesian games on.)
9/11 Games in extensive form. Backward induction. Subgame perfect equilibrium. Imperfect information. Equilibrium refinements. Slides: ppt, pdf.
SLB 5.1 (alpha-beta is optional), 5.2.1, 5.2.2.
Optional: 5.2.3.
Paper on finding optimal strategies to commit to.
9/16, 9/18 (Computational) social choice. Voting rules. Desirable properties of voting rules. Arrow's impossibility theorem. Muller-Satterthwaite impossibility theorem. Manipulation. Gibbard-Satterthwaite impossibility theorem. Single-peaked preferences. Slides: ppt, pdf.
SLB Chapter 9.1-9.4.
Optional: 9.5.
9/23, 9/25 Auctions. English, Japanese, Dutch, first-price sealed-bid, second-price sealed-bid (Vickrey). Combinatorial auctions. Winner determination. Combinatorial reverse auctions and exchanges. Bidding languages. Slides: ppt, pdf.
Note: we didn't go in the same order as the book in the next few lectures. I'm pointing out the chapters that are associated with each lecture, but for reading purposes you may prefer following the order of the book for the next few lectures, reading mechanism design (Ch. 10) before auctions (Ch. 11), and single-item auctions and their analysis before combinatorial auctions.
SLB 11.3.1-11.3.4, 11.4.1.
Optional: 11.2, 11.3.5.
Lehmann et al. chapter on winner determination.
Sandholm chapter on optimal winner determination.
9/25 - 10/2 Analyzing auction mechanisms: Bayesian games, Bayes-Nash equilibrium, revenue equivalence, revenue-maximizing (Myerson) auctions, redistribution auctions. Slides: ppt, pdf.
Homework 2 out.
SLB 6.3, 11.1.1-11.1.8.
Optional: 11.1.9, 11.1.10.
swoopo, article on swoopo.
9/30 Guest lecture: Mingyu Guo on redistribution auction mechanisms. Slides.
Optional: Paper.
10/7, 10/9 Mechanism design. Incentive compatibility. Individual rationality. Revelation principle. Clarke mechanism. Generalized Vickrey Auction. Groves mechanisms. Myerson-Satterthwaite impossibility. Computational topics. Slides: ppt, pdf.
Chapter 10.1-10.4.
Optional: rest of chapter 10.
Alternative resources:
Chapter on mechanism design + chapter on revelation principle.
Parkes chapter on mechanism design.
10/9, 10/14 Preference elicitation in voting and auctions. Iterative combinatorial auctions. Communication complexity. Restricted classes of valuations. 10/9: Project proposal (1+ pages) due.
Slides: ppt, pdf.
Optional:
Parkes chapter on iterative CAs. Sandholm-Boutilier chapter on preference elicitation in CAs.
10/16 MIDTERM. Covers all material covered in class so far.
10/21 Concise representations of games. Congestion games. Potential games. Graphical games. Action-graph games. MAIDs. Slides: ppt, pdf.
SLB 6.4, 6.5.
Optional:
Paper on action-graph games.
10/23, 10/28 Repeated games. Folk theorem. Stochastic games. Slides: ppt, pdf.
SLB 6.1, 6.2.
Optional:
Paper on computing a Nash equilibrium in repeated games.
Paper on stochastic games and learning.
10/28, 10/30 Learning in games. Iterated best response. Fictitious play. No-regret algorithms. Targeted learning. Evolutionary game theory. Slides: ppt, pdf.
SLB Chapter 7.
10/30, 11/4 Cooperative/coalitional game theory. Core. Nucleolus. Shapley value. Computing solutions. Homework 3 out.
Slides: ppt, pdf.
SLB Chapter 12.
11/6 Algorithmic mechanism design. Approximately efficient truthful combinatorial auctions. Shortest paths. Minimizing make-span. Characterizing allocation rules that can be made incentive compatible. Slides: ppt, pdf.
Optional:
Paper on algorithmic mechanism design.
Paper on computing Clarke payments for shortest paths.
Paper on approximately efficient, incentive compatible combinatorial auctions.
Paper on characterizing which allocation rules can be made incentive compatible.
Matching students to presentation slots: e-mail with description, code used to match students to presentations, student bids (input to solver).
11/11 Computational hardness as a barrier against manipulation. Limitations. Slides: ppt, pdf.
Optional:
Paper on STV being hard to manipulate.
Paper on hardness with few alternatives.
11/13 Presentations:
Felix (principal-agent problems)
Cheney (incentivizing graffiti artists)
Sayan/Dima (sequential selling to social network members)
11/18 Presentations:
Peter/Justin (mechanisms to avoid interference in wireless networks)
Jason (kidney exchange)
Chengyu (tit-for-tat in peer-to-peer systems)
Matt (screening applicants to a selective social network)
11/20 Presentations:
Ben (automated mechanism design)
Harish/Josh (combinatorial auctions with limited communication)
Jack (mechanisms for replicating data based on user demand)


Projects
As you can see from the grading, the project is an important part of this course. You may work on it alone or in a team (please check with Vince first if you want to have a team of three or more people); of course, teams are expected to do more significant projects. We will have some checkpoints (e.g., project proposal) during the course, but feel free to discuss possible project ideas with Vince earlier.

The goal of the project is to try to do something novel, rather than merely a survey of existing work. Projects may be theoretical, experimental (based on simulations), experimental (based on real-world data), a useful software artifact, or any combination thereof. Creativity is encouraged. The only real constraint is that it has something to do with the material of the course. Talk to Vince if you are not sure about whether something is an appropriate project.

The final product is a writeup (in the form of a research paper) and a class presentation (all team members must participate in the presentation). Some projects may well lead to publishable papers (perhaps with some additional work).

In your project proposal, you should explain the topic of your project, what types of results you hope to obtain, and what some of the technical issues are that you will need to address. If necessary, Vince can help with finding topics. Something related to your own research is definitely OK as long as it also has something to do with the course material. An intermediate project progress report is also required. This report should explain what results you have obtained already, what (if any) difficulties you encountered, and what you plan to do to complete your project. Ideally, at this point, you should already have some good results, so that you can spend the rest of your time on answering questions generated by your results, as well as preparing your writeup and presentation.