Complexity. Congestion Games. Algorithmic Game Theory. Alexander Skopalik Algorithmic Game Theory 2013 Congestion Games

Size: px
Start display at page:

Download "Complexity. Congestion Games. Algorithmic Game Theory. Alexander Skopalik Algorithmic Game Theory 2013 Congestion Games"

Transcription

1 Algorithmic Game Theory

2 Complexity of pure Nash equilibria

3 We investigate the complexity of finding Nash equilibria in different kinds of congestion games. Our study is restricted to congestion games with non-decreasing delay functions.

4 Symmetric Network Given a directed graph G = (V,E) with delay functions d e : {1,...,n} Z, e E. Player i wants to allocate a path of minimal delay between a source s and a target t. 1,2,9 7,8,9 s 1,9,9 t 4,5,6 1,2,3 In more general asymmetric network congestion games, different players might have different source-destination pairs.

5 Symmetric Network It is known that there are instances of symmetric congestion games in which there are states such that every improvement sequence from this state to a Nash equilibrium has exponential length. Hence, applying improvement steps is not an efficient (i.e. polynomial time) algorithm for computing Nash equilibria in these games. However, there is another algorithm which finds Nash equilibria in polynomial time...

6 Complexity in Symmetric Network Polytime algorithm via a reduction to min-cost flow: (Fabrikant, Papadimitriou, Talwar 2004) Each edge is replaced by n parallel edges of capacity 1 each. The ith copy of edge e has cost d e(i), 1 i n. 1,2,9 7,8,9 s 1,9,9 t 4,5,6 1,2,3 Optimal solution minimizes Rosenthal s potential function and, hence, is a Nash equilibrium.

7 The relationship to local search Rosenthal s potential function allows us to interprete congestion games as local search problems: Nash equilibria are local optima wrt potential function. How difficult is it to compute local optima?

8 The complexity class PLS Definition (PLS (Polynomial Local Search)) PLS contains search problems with an objective function and a specified neighborhood relationship Γ. It is required that there is a poly-time algorithm that, given any solution s, computes a solution in Γ(s) with better objective value, or certifies that s is a local optimum.

9 The complexity class PLS Definition (PLS (Polynomial Local Search)) PLS contains search problems with an objective function and a specified neighborhood relationship Γ. It is required that there is a poly-time algorithm that, given any solution s, computes a solution in Γ(s) with better objective value, or certifies that s is a local optimum. Some examples for problems in PLS FLIP (circuit evaluation with Flip-neighborhood) TSP with 2-Opt-neighborbood Pos-NAE-kSat with Flip-neighborhood Max-Cut with Flip-neighborhood Congestion games wrt improvement steps

10 Positive Not-All-Equal ksat (Pos-NAE-kSAT) Definition Input: Formula over n binary variables x 1,...,x n described by m clauses c 1,...,c m each containing k positive literals, and m weights w 1,...,w m.

11 Positive Not-All-Equal ksat (Pos-NAE-kSAT) Definition Input: Formula over n binary variables x 1,...,x n described by m clauses c 1,...,c m each containing k positive literals, and m weights w 1,...,w m. Clause c i is satisfied by an assignment A {0,1} n if its literals are not all assigned the same value. The value of an assignment is the weighted sum of satisfied clauses. Assignments A and A are neighboring if they differ in exactly one position. Task: Find a local optimum, i.e., an assignment without neighboring assignment of higher value.

12 Positive Not-All-Equal 3Sat (Pos-NAE-3SAT) Example Example instance of Pos-NAE-3SAT: c 1 = x 1x 2x 3; c 2 = x 1x 2x 4; c 3 = x 1x 2x 5; c 4 = x 3x 4x 5 w 1 = 100; w 2 = 110; w 3 = 120; w 4 = 100

13 Positive Not-All-Equal 3Sat (Pos-NAE-3SAT) Example Example instance of Pos-NAE-3SAT: c 1 = x 1x 2x 3; c 2 = x 1x 2x 4; c 3 = x 1x 2x 5; c 4 = x 3x 4x 5 w 1 = 100; w 2 = 110; w 3 = 120; w 4 = 100 An example for a local optimum is the assignment x 1 = 0; x 2 = 0; x 3 = 1; x 4 = 1; x 5 = 1 of value 330. Each of the five neighboring assignments has a value of at most 330.

14 Max-Cut Definition Input: A graph G = (V,E) with edge weights w : E N. A cut partitions V into two sets Left and Right. Two cuts are neighboring if one can obtain one from the other by moving only one node from Left to Right or vice versa. The value of a cut is the weighted number of edges with one endpoint in Left and one endpoint in Right. Task: Find a local optimum, i.e., a cut without neighboring cut of higher value.

15 The complexity class PLS Definition (PLS-reduction) Given two PLS problems Π 1 and Π 2 find a mapping from the instances of Π 1 to the instances of Π 2 such that the mapping can be computed in polynomial time, the local optima of Π 1 are mapped to local optima of Π 2, and given any local optimum of Π 2, one can construct a local optimum of Π 1 in polynomial time.

16 First example for a PLS-reduction Theorem: Pos-NAE-3Sat PLS Pos-NAE-2Sat

17 First example for a PLS-reduction Theorem: Pos-NAE-3Sat PLS Pos-NAE-2Sat Proof: For each 3-clause (x 1,x 2,x 3) of weight w introduce the three 2-clauses (x 1,x 2),(x 1,x 3),(x 2,x 3) each of weight w/2.

18 First example for a PLS-reduction Theorem: Pos-NAE-3Sat PLS Pos-NAE-2Sat Proof: For each 3-clause (x 1,x 2,x 3) of weight w introduce the three 2-clauses (x 1,x 2),(x 1,x 3),(x 2,x 3) each of weight w/2. The value of an assignment in the 2SAT instance is identical to its value in the 3SAT instance as a 3-clause is satisfied if and only if exactly two of the three corresponding 2-clauses are satisfied. Hence, the local optima of both instances coincide, and the conditions of a PLS-reduction are fulfilled.

19 Second example for a PLS-reduction Theorem: Pos-NAE-2Sat PLS Max-Cut

20 Second example for a PLS-reduction Theorem: Pos-NAE-2Sat PLS Max-Cut Proof: Each variable is represented by a node. Each clause and its weight is represented by a weighted edge. Multi-edges are merged to single edges by adding their weight. Given an assignment for the variables, 0 is interpreted as Left and 1 is interpreted as Right. This way, the local optima of both instances coincide, and the conditions of a PLS-reduction are fulfilled.

21 The complexity class PLS Definition (PLS-completeness) A problem Π in PLS is called PLS-complete if, for every problem Π in PLS, it holds Π PLS Π. Examples for PLS-complete problem: A master reduction shows that FLIP is PLS-complete. A PLS-reduction from FLIP to POS-NAE-3SAT shows that the latter problem is PLS-complete as well. Hence, POS-NAE-2SAT and Max-Cut are PLS-complete, too.

22 Complexity of congestion games Results from [Fabrikant, Papadimitriou, Talwar 2004] network games general games symmetric poly-time Algo PLS-complete asymmetric PLS-complete PLS-complete We present only one of these PLS-completeness proof, the one for general, asymmetric congestion games (the simplest one).

23 PLS-hardness proof for general congestion games We prove a PLS-reduction from Max-Cut to congestion games.

24 PLS-hardness proof for general congestion games We prove a PLS-reduction from Max-Cut to congestion games. First of all, we observe that Max-Cut can be represented as a game: Party Affiliation Game (Max-Cut) Players correspond to nodes in a weighted graph G = (V,E). Every player has 2 strategies: left or right. A state of the game yields a cut, i.e., a partition of V into left and right nodes. Edge weights represent antisympathy. Players maximize the sum of weights of incident edges crossing the cut. Nash equilibria correspond to local optima of Max-Cut.

25 PLS-hardness proof for general congestion games Minimization Variant of the Party Affiliation Game The strategies of a node are left: choose the left hand side of the cut right: choose the right hand side of the cut The costs for these strategies are left: sum of the weights of the incident edges to the left right: sum of the weights of the incident edges to the right Both games have the same transition graph as, for each player, minimizing the weights of incident edges on her side, is equivalent to maximizing the sum of edges leading to the other side.

26 PLS-hardness proof for general congestion games Now the minimization variant can be described in terms of a congestion game. Party Affiliation Congestion Game: Represent each edge e by two resources e left,e right with delay functions d(1) = 0 and d(2) = w e. For each player the strategy S left contains resources e left for all incident edges; strategy S right contains resources r right for all incident edges.

27 PLS-hardness proof for general congestion games Now the minimization variant can be described in terms of a congestion game. Party Affiliation Congestion Game: Represent each edge e by two resources e left,e right with delay functions d(1) = 0 and d(2) = w e. For each player the strategy S left contains resources e left for all incident edges; strategy S right contains resources r right for all incident edges. Players in this congestion game have exactly the same cost as players in the minimization variant of the party affiliation game. Hence, the Nash equilibria of this congestion game coincide with local optima of the Max-Cut instance, which yields a PLS-reduction from Max-Cut to congestion games. (PLS completeness)

28 Recommended Literature D. Monderer, L. Shapley. Potential Games. Games and Economic Behavior, 14: , (Equivalence Congestion and Potential Games) M. Yannakakis. Computational complexity. Chapter 2 in E. Aarts and J. Lenstra (Eds), Local Search in Combinatorial Optimization, pages 19 55, (Survey of the class PLS) A. Fabrikant, C. Papadimitriou, K. Talwar. The complexity of pure Nash equilibria. STOC (PLS-Completeness in ) H. Ackermann, H. Röglin, B. Vöcking. On the impact of combinatorial structure on congestion games. Journal of the ACM, 55(6), (Matroid Games, Exponential Convergence, PLS-Completeness)

Lecture Notes on Congestion Games

Lecture Notes on Congestion Games Lecture Notes on Department of Computer Science RWTH Aachen SS 2005 Definition and Classification Description of n agents share a set of resources E strategy space of player i is S i 2 E latency for resource

More information

CS364A: Algorithmic Game Theory Lecture #19: Pure Nash Equilibria and PLS-Completeness

CS364A: Algorithmic Game Theory Lecture #19: Pure Nash Equilibria and PLS-Completeness CS364A: Algorithmic Game Theory Lecture #19: Pure Nash Equilibria and PLS-Completeness Tim Roughgarden December 2, 2013 1 The Big Picture We now have an impressive list of tractability results polynomial-time

More information

NP-complete Reductions

NP-complete Reductions NP-complete Reductions 1. Prove that 3SAT P DOUBLE-SAT, i.e., show DOUBLE-SAT is NP-complete by reduction from 3SAT. The 3-SAT problem consists of a conjunction of clauses over n Boolean variables, where

More information

Algorithmic Game Theory - Introduction, Complexity, Nash

Algorithmic Game Theory - Introduction, Complexity, Nash Algorithmic Game Theory - Introduction, Complexity, Nash Branislav Bošanský Czech Technical University in Prague branislav.bosansky@agents.fel.cvut.cz February 25, 2018 About This Course main topics of

More information

Algorithmic Game Theory and Applications. Lecture 16: Selfish Network Routing, Congestion Games, and the Price of Anarchy

Algorithmic Game Theory and Applications. Lecture 16: Selfish Network Routing, Congestion Games, and the Price of Anarchy Algorithmic Game Theory and Applications Lecture 16: Selfish Network Routing, Congestion Games, and the Price of Anarchy Kousha Etessami warning, again 1 In the few remaining lectures, we will briefly

More information

Algorithmic Game Theory and Applications. Lecture 16: Selfish Network Routing, Congestion Games, and the Price of Anarchy.

Algorithmic Game Theory and Applications. Lecture 16: Selfish Network Routing, Congestion Games, and the Price of Anarchy. Algorithmic Game Theory and Applications Lecture 16: Selfish Network Routing, Congestion Games, and the Price of Anarchy Kousha Etessami games and the internet Basic idea: The internet is a huge experiment

More information

On the Computational Complexity of Nash Equilibria for (0, 1) Bimatrix Games

On the Computational Complexity of Nash Equilibria for (0, 1) Bimatrix Games On the Computational Complexity of Nash Equilibria for (0, 1) Bimatrix Games Bruno Codenotti Daniel Štefankovič Abstract The computational complexity of finding a Nash equilibrium in a nonzero sum bimatrix

More information

N P-hardness of pure Nash equilibrium in Scheduling and Connection Games

N P-hardness of pure Nash equilibrium in Scheduling and Connection Games N P-hardness of pure Nash equilibrium in Scheduling and Connection Games Nguyen Kim Thang Department of Computer Science, University of Aarhus, Denmark. Abstract We introduce a framework to settle the

More information

6.896 Topics in Algorithmic Game Theory March 1, Lecture 8

6.896 Topics in Algorithmic Game Theory March 1, Lecture 8 6.896 Topics in Algorithmic Game Theory March 1, 2010 Lecture 8 Lecturer: Constantinos Daskalakis Scribe: Alan Deckelbaum, Anthony Kim NOTE: The content of these notes has not been formally reviewed by

More information

P and NP (Millenium problem)

P and NP (Millenium problem) CMPS 2200 Fall 2017 P and NP (Millenium problem) Carola Wenk Slides courtesy of Piotr Indyk with additions by Carola Wenk CMPS 2200 Introduction to Algorithms 1 We have seen so far Algorithms for various

More information

Network Formation Games and the Potential Function Method

Network Formation Games and the Potential Function Method CHAPTER 19 Network Formation Games and the Potential Function Method Éva Tardos and Tom Wexler Abstract Large computer networks such as the Internet are built, operated, and used by a large number of diverse

More information

Nash equilibria in Voronoi Games on Graphs

Nash equilibria in Voronoi Games on Graphs Nash equilibria in Voronoi Games on Graphs Christoph Dürr, Nguyễn Kim Thắng (Ecole Polytechnique) ESA, Eilat October 07 Plan Motivation : Study the interaction between selfish agents on Internet k players,

More information

Where Can We Draw The Line?

Where Can We Draw The Line? Where Can We Draw The Line? On the Hardness of Satisfiability Problems Complexity 1 Introduction Objectives: To show variants of SAT and check if they are NP-hard Overview: Known results 2SAT Max2SAT Complexity

More information

Convergence Issues in Competitive Games

Convergence Issues in Competitive Games Convergence Issues in Competitive Games Vahab S Mirrokni 1, Adrian Vetta 2 and A Sidoropoulous 3 1 Computer Science and Artificial Intelligence Laboratory (CSAIL), MIT mail: mirrokni@theorylcsmitedu 2

More information

Representation of Finite Games as Network Congestion Games

Representation of Finite Games as Network Congestion Games Representation of Finite Games as Network Congestion Games Igal Milchtaich To cite this version: Igal Milchtaich. Representation of Finite Games as Network Congestion Games. Roberto Cominetti and Sylvain

More information

Copyright 2000, Kevin Wayne 1

Copyright 2000, Kevin Wayne 1 Guessing Game: NP-Complete? 1. LONGEST-PATH: Given a graph G = (V, E), does there exists a simple path of length at least k edges? YES. SHORTEST-PATH: Given a graph G = (V, E), does there exists a simple

More information

NP Completeness. Andreas Klappenecker [partially based on slides by Jennifer Welch]

NP Completeness. Andreas Klappenecker [partially based on slides by Jennifer Welch] NP Completeness Andreas Klappenecker [partially based on slides by Jennifer Welch] Overview We already know the following examples of NPC problems: SAT 3SAT We are going to show that the following are

More information

NP-Completeness. Algorithms

NP-Completeness. Algorithms NP-Completeness Algorithms The NP-Completeness Theory Objective: Identify a class of problems that are hard to solve. Exponential time is hard. Polynomial time is easy. Why: Do not try to find efficient

More information

On a Network Generalization of the Minmax Theorem

On a Network Generalization of the Minmax Theorem On a Network Generalization of the Minmax Theorem Constantinos Daskalakis Christos H. Papadimitriou {costis, christos}@cs.berkeley.edu February 10, 2009 Abstract We consider graphical games in which edges

More information

Computational problems. Lecture 2: Combinatorial search and optimisation problems. Computational problems. Examples. Example

Computational problems. Lecture 2: Combinatorial search and optimisation problems. Computational problems. Examples. Example Lecture 2: Combinatorial search and optimisation problems Different types of computational problems Examples of computational problems Relationships between problems Computational properties of different

More information

Computing Pure Nash Equilibria in Symmetric Action Graph Games

Computing Pure Nash Equilibria in Symmetric Action Graph Games Computing Pure Nash Equilibria in Symmetric Action Graph Games Albert Xin Jiang Kevin Leyton-Brown Department of Computer Science University of British Columbia {jiang;kevinlb}@cs.ubc.ca July 26, 2007

More information

Internet Routing Games

Internet Routing Games CS498: UnderGraduate Project Internet Routing Games Submitted by: Pranay Borkar Roll no.:-14189 Mentored by: Prof. Sunil Simon Dept. of Computer Science and Engineering Indian Institute of Technology,Kanpur

More information

Competitive Routing over Time

Competitive Routing over Time Competitive Routing over Time Martin Hoefer Dept. of Computer Science RWTH Aachen University mhoefer@cs.rwthaachen.de Vahab S. Mirrokni Google Research New York mirrokni@google.com Shang-Hua Teng Microsoft

More information

Network Topology and Equilibrium Existence in Weighted Network Congestion Games

Network Topology and Equilibrium Existence in Weighted Network Congestion Games Network Topology and Equilibrium Existence in Weighted Network Congestion Games Igal Milchtaich, Bar-Ilan University August 2010 Abstract. Every finite noncooperative game can be presented as a weighted

More information

Computability Theory

Computability Theory CS:4330 Theory of Computation Spring 2018 Computability Theory Other NP-Complete Problems Haniel Barbosa Readings for this lecture Chapter 7 of [Sipser 1996], 3rd edition. Sections 7.4 and 7.5. The 3SAT

More information

arxiv: v2 [cs.cc] 29 Mar 2010

arxiv: v2 [cs.cc] 29 Mar 2010 On a variant of Monotone NAE-3SAT and the Triangle-Free Cut problem. arxiv:1003.3704v2 [cs.cc] 29 Mar 2010 Peiyush Jain, Microsoft Corporation. June 28, 2018 Abstract In this paper we define a restricted

More information

Vertex Cover Approximations

Vertex Cover Approximations CS124 Lecture 20 Heuristics can be useful in practice, but sometimes we would like to have guarantees. Approximation algorithms give guarantees. It is worth keeping in mind that sometimes approximation

More information

CMPSCI611: The SUBSET-SUM Problem Lecture 18

CMPSCI611: The SUBSET-SUM Problem Lecture 18 CMPSCI611: The SUBSET-SUM Problem Lecture 18 We begin today with the problem we didn t get to at the end of last lecture the SUBSET-SUM problem, which we also saw back in Lecture 8. The input to SUBSET-

More information

Finding Gale Strings

Finding Gale Strings Electronic Notes in Discrete Mathematics 36 (2010) 1065 1072 Finding Gale Strings Marta M. Casetti, Julian Merschen, Bernhard von Stengel Dept. of Mathematics, London School of Economics, London WC2A 2AE,

More information

NP-Hardness. We start by defining types of problem, and then move on to defining the polynomial-time reductions.

NP-Hardness. We start by defining types of problem, and then move on to defining the polynomial-time reductions. CS 787: Advanced Algorithms NP-Hardness Instructor: Dieter van Melkebeek We review the concept of polynomial-time reductions, define various classes of problems including NP-complete, and show that 3-SAT

More information

Solutions for the Exam 6 January 2014

Solutions for the Exam 6 January 2014 Mastermath and LNMB Course: Discrete Optimization Solutions for the Exam 6 January 2014 Utrecht University, Educatorium, 13:30 16:30 The examination lasts 3 hours. Grading will be done before January 20,

More information

Theorem 2.9: nearest addition algorithm

Theorem 2.9: nearest addition algorithm There are severe limits on our ability to compute near-optimal tours It is NP-complete to decide whether a given undirected =(,)has a Hamiltonian cycle An approximation algorithm for the TSP can be used

More information

Some Hardness Proofs

Some Hardness Proofs Some Hardness Proofs Magnus Lie Hetland January 2011 This is a very brief overview of some well-known hard (NP Hard and NP complete) problems, and the main ideas behind their hardness proofs. The document

More information

8 Matroid Intersection

8 Matroid Intersection 8 Matroid Intersection 8.1 Definition and examples 8.2 Matroid Intersection Algorithm 8.1 Definitions Given two matroids M 1 = (X, I 1 ) and M 2 = (X, I 2 ) on the same set X, their intersection is M 1

More information

Eulerian disjoint paths problem in grid graphs is NP-complete

Eulerian disjoint paths problem in grid graphs is NP-complete Discrete Applied Mathematics 143 (2004) 336 341 Notes Eulerian disjoint paths problem in grid graphs is NP-complete Daniel Marx www.elsevier.com/locate/dam Department of Computer Science and Information

More information

8 NP-complete problem Hard problems: demo

8 NP-complete problem Hard problems: demo Ch8 NPC Millennium Prize Problems http://en.wikipedia.org/wiki/millennium_prize_problems 8 NP-complete problem Hard problems: demo NP-hard (Non-deterministic Polynomial-time hard), in computational complexity

More information

Matching Algorithms. Proof. If a bipartite graph has a perfect matching, then it is easy to see that the right hand side is a necessary condition.

Matching Algorithms. Proof. If a bipartite graph has a perfect matching, then it is easy to see that the right hand side is a necessary condition. 18.433 Combinatorial Optimization Matching Algorithms September 9,14,16 Lecturer: Santosh Vempala Given a graph G = (V, E), a matching M is a set of edges with the property that no two of the edges have

More information

Best known solution time is Ω(V!) Check every permutation of vertices to see if there is a graph edge between adjacent vertices

Best known solution time is Ω(V!) Check every permutation of vertices to see if there is a graph edge between adjacent vertices Hard Problems Euler-Tour Problem Undirected graph G=(V,E) An Euler Tour is a path where every edge appears exactly once. The Euler-Tour Problem: does graph G have an Euler Path? Answerable in O(E) time.

More information

Introduction to Graph Theory

Introduction to Graph Theory Introduction to Graph Theory Tandy Warnow January 20, 2017 Graphs Tandy Warnow Graphs A graph G = (V, E) is an object that contains a vertex set V and an edge set E. We also write V (G) to denote the vertex

More information

Prove, where is known to be NP-complete. The following problems are NP-Complete:

Prove, where is known to be NP-complete. The following problems are NP-Complete: CMPSCI 601: Recall From Last Time Lecture 21 To prove is NP-complete: Prove NP. Prove, where is known to be NP-complete. The following problems are NP-Complete: SAT (Cook-Levin Theorem) 3-SAT 3-COLOR CLIQUE

More information

6.896: Topics in Algorithmic Game Theory

6.896: Topics in Algorithmic Game Theory 6.896: Topics in Algorithmic Game Theory Lecture 8 Constantinos Daskalakis 5. NASH BROUWER (cont.): - Final Point: 2 point Exercise We defined BROUWER for functions in the hypercube. But Nash s function

More information

A New Reduction from 3-SAT to Graph K- Colorability for Frequency Assignment Problem

A New Reduction from 3-SAT to Graph K- Colorability for Frequency Assignment Problem A New Reduction from 3-SAT to Graph K- Colorability for Frequency Assignment Problem Prakash C. Sharma Indian Institute of Technology Survey No. 113/2-B, Opposite to Veterinary College, A.B.Road, Village

More information

Ch9: Exact Inference: Variable Elimination. Shimi Salant, Barak Sternberg

Ch9: Exact Inference: Variable Elimination. Shimi Salant, Barak Sternberg Ch9: Exact Inference: Variable Elimination Shimi Salant Barak Sternberg Part 1 Reminder introduction (1/3) We saw two ways to represent (finite discrete) distributions via graphical data structures: Bayesian

More information

Notes for Lecture 20

Notes for Lecture 20 U.C. Berkeley CS170: Intro to CS Theory Handout N20 Professor Luca Trevisan November 13, 2001 Notes for Lecture 20 1 Duality As it turns out, the max-flow min-cut theorem is a special case of a more general

More information

Dynamics, Non-Cooperation, and Other Algorithmic Challenges in Peer-to-Peer Computing

Dynamics, Non-Cooperation, and Other Algorithmic Challenges in Peer-to-Peer Computing Dynamics, Non-Cooperation, and Other Algorithmic Challenges in Peer-to-Peer Computing Stefan Schmid Distributed Computing Group Oberseminar TU München, Germany December 2007 Networks Neuron Networks DISTRIBUTED

More information

The Query Complexity of Correlated Equilibria

The Query Complexity of Correlated Equilibria The Query Complexity of Correlated Equilibria Sergiu Hart September 2015 SERGIU HART c 2015 p. 1 The Query Complexity of Correlated Equilibria Sergiu Hart Center for the Study of Rationality Dept of Mathematics

More information

Hardness of Approximation for the TSP. Michael Lampis LAMSADE Université Paris Dauphine

Hardness of Approximation for the TSP. Michael Lampis LAMSADE Université Paris Dauphine Hardness of Approximation for the TSP Michael Lampis LAMSADE Université Paris Dauphine Sep 2, 2015 Overview Hardness of Approximation What is it? How to do it? (Easy) Examples The PCP Theorem What is it?

More information

CS 512, Spring 2017: Take-Home End-of-Term Examination

CS 512, Spring 2017: Take-Home End-of-Term Examination CS 512, Spring 2017: Take-Home End-of-Term Examination Out: Tuesday, 9 May 2017, 12:00 noon Due: Wednesday, 10 May 2017, by 11:59 am Turn in your solutions electronically, as a single PDF file, by placing

More information

On the Complexity of the Policy Improvement Algorithm. for Markov Decision Processes

On the Complexity of the Policy Improvement Algorithm. for Markov Decision Processes On the Complexity of the Policy Improvement Algorithm for Markov Decision Processes Mary Melekopoglou Anne Condon Computer Sciences Department University of Wisconsin - Madison 0 West Dayton Street Madison,

More information

Topic: Local Search: Max-Cut, Facility Location Date: 2/13/2007

Topic: Local Search: Max-Cut, Facility Location Date: 2/13/2007 CS880: Approximations Algorithms Scribe: Chi Man Liu Lecturer: Shuchi Chawla Topic: Local Search: Max-Cut, Facility Location Date: 2/3/2007 In previous lectures we saw how dynamic programming could be

More information

Exercises Computational Complexity

Exercises Computational Complexity Exercises Computational Complexity March 22, 2017 Exercises marked with a are more difficult. 1 Chapter 7, P and NP Exercise 1. Suppose some pancakes are stacked on a surface such that no two pancakes

More information

Approximation Algorithms

Approximation Algorithms 15-251: Great Ideas in Theoretical Computer Science Spring 2019, Lecture 14 March 5, 2019 Approximation Algorithms 1 2 SAT 3SAT Clique Hamiltonian- Cycle given a Boolean formula F, is it satisfiable? same,

More information

Solutions of Stochastic Coalitional Games

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

More information

The Complexity of Computing the Solution Obtained by a Specifi

The Complexity of Computing the Solution Obtained by a Specifi The Complexity of Computing the Solution Obtained by a Specific Algorithm Paul W. Department of Computer Science University of Oxford, U. K. LSE Oct 2013 Starting-point It is PSPACE-complete to find any

More information

8.1 Polynomial-Time Reductions

8.1 Polynomial-Time Reductions 8.1 Polynomial-Time Reductions Classify Problems According to Computational Requirements Q. Which problems will we be able to solve in practice? A working definition. Those with polynomial-time algorithms.

More information

SAT-CNF Is N P-complete

SAT-CNF Is N P-complete SAT-CNF Is N P-complete Rod Howell Kansas State University November 9, 2000 The purpose of this paper is to give a detailed presentation of an N P- completeness proof using the definition of N P given

More information

Games in Networks: the price of anarchy, stability and learning. Éva Tardos Cornell University

Games in Networks: the price of anarchy, stability and learning. Éva Tardos Cornell University Games in Networks: the price of anarchy, stability and learning Éva Tardos Cornell University Why care about Games? Users with a multitude of diverse economic interests sharing a Network (Internet) browsers

More information

Strong Equilibrium in Cost Sharing Connection Games

Strong Equilibrium in Cost Sharing Connection Games Strong Equilibrium in Cost Sharing Connection Games Amir Epstein School of Computer Science Tel-Aviv University Tel-Aviv, 69978, Israel amirep@tau.ac.il Michal Feldman School of Computer Science The Hebrew

More information

The Complexity of Camping

The Complexity of Camping The Complexity of Camping Marzio De Biasi marziodebiasi [at] gmail [dot] com July 2012 Version 0.04: a re-revised sketch of the proof Abstract We prove that the tents puzzle game is NP -complete using

More information

3 No-Wait Job Shops with Variable Processing Times

3 No-Wait Job Shops with Variable Processing Times 3 No-Wait Job Shops with Variable Processing Times In this chapter we assume that, on top of the classical no-wait job shop setting, we are given a set of processing times for each operation. We may select

More information

Convergence in Player-Specific Graphical Resource Allocation Games

Convergence in Player-Specific Graphical Resource Allocation Games 1 Convergence in Player-Specific Graphical Resource Allocation Games Valentino Pacifici and György Dán Abstract As a model of distributed resource allocation in networked systems, we consider resource

More information

5. Lecture notes on matroid intersection

5. Lecture notes on matroid intersection Massachusetts Institute of Technology Handout 14 18.433: Combinatorial Optimization April 1st, 2009 Michel X. Goemans 5. Lecture notes on matroid intersection One nice feature about matroids is that a

More information

Algorithms, Games, and Networks February 21, Lecture 12

Algorithms, Games, and Networks February 21, Lecture 12 Algorithms, Games, and Networks February, 03 Lecturer: Ariel Procaccia Lecture Scribe: Sercan Yıldız Overview In this lecture, we introduce the axiomatic approach to social choice theory. In particular,

More information

Competitive Routing over Time

Competitive Routing over Time Competitive Routing over Time Martin Hoefer Vahab S. Mirrokni Heiko Röglin Shang-Hua Teng June 7, 2011 Abstract Congestion games are a fundamental and widely studied model for selfish allocation problems

More information

CS 580: Algorithm Design and Analysis

CS 580: Algorithm Design and Analysis CS 580: Algorithm Design and Analysis Jeremiah Blocki Purdue University Spring 2018 Homework 4: Due tomorrow (March 9) at 11:59 PM Recap Linear Programming Very Powerful Technique (Subject of Entire Courses)

More information

An Overview of What We Can and Cannot Do with Local Search

An Overview of What We Can and Cannot Do with Local Search An Overview of What We Can and Cannot Do with Local Search Petros Christopoulos, Vassilis Zissimopoulos To cite this version: Petros Christopoulos, Vassilis Zissimopoulos. An Overview of What We Can and

More information

3/7/2018. CS 580: Algorithm Design and Analysis. 8.1 Polynomial-Time Reductions. Chapter 8. NP and Computational Intractability

3/7/2018. CS 580: Algorithm Design and Analysis. 8.1 Polynomial-Time Reductions. Chapter 8. NP and Computational Intractability Algorithm Design Patterns and Anti-Patterns CS 580: Algorithm Design and Analysis Jeremiah Blocki Purdue University Spring 2018 Algorithm design patterns. Ex. Greedy. O(n log n) interval scheduling. Divide-and-conquer.

More information

doi: /j.ipl

doi: /j.ipl doi: 101016/jipl201110015 A comment on pure-strategy Nash equilibria in competitive diffusion games Reiko Takehara a, Masahiro Hachimori a, Maiko Shigeno a,1, a Graduate School of Systems and Information

More information

Partha Sarathi Mandal

Partha Sarathi Mandal MA 515: Introduction to Algorithms & MA353 : Design and Analysis of Algorithms [3-0-0-6] Lecture 39 http://www.iitg.ernet.in/psm/indexing_ma353/y09/index.html Partha Sarathi Mandal psm@iitg.ernet.in Dept.

More information

Size of a problem instance: Bigger instances take

Size of a problem instance: Bigger instances take 2.1 Integer Programming and Combinatorial Optimization Slide set 2: Computational Complexity Katta G. Murty Lecture slides Aim: To study efficiency of various algo. for solving problems, and to classify

More information

Pathways to Equilibria, Pretty Pictures and Diagrams (PPAD)

Pathways to Equilibria, Pretty Pictures and Diagrams (PPAD) 1 Pathways to Equilibria, Pretty Pictures and Diagrams (PPAD) Bernhard von Stengel partly joint work with: Marta Casetti, Julian Merschen, Lászlo Végh Department of Mathematics London School of Economics

More information

Introduction to Algorithms / Algorithms I Lecturer: Michael Dinitz Topic: Algorithms and Game Theory Date: 12/3/15

Introduction to Algorithms / Algorithms I Lecturer: Michael Dinitz Topic: Algorithms and Game Theory Date: 12/3/15 600.363 Introduction to Algorithms / 600.463 Algorithms I Lecturer: Michael Dinitz Topic: Algorithms and Game Theory Date: 12/3/15 25.1 Introduction Today we re going to spend some time discussing game

More information

9.1 Cook-Levin Theorem

9.1 Cook-Levin Theorem CS787: Advanced Algorithms Scribe: Shijin Kong and David Malec Lecturer: Shuchi Chawla Topic: NP-Completeness, Approximation Algorithms Date: 10/1/2007 As we ve already seen in the preceding lecture, two

More information

THE PRICE OF STABILITY FOR NETWORK DESIGN WITH FAIR COST ALLOCATION

THE PRICE OF STABILITY FOR NETWORK DESIGN WITH FAIR COST ALLOCATION THE PRICE OF STABILITY FOR NETWORK DESIGN WITH FAIR COST ALLOCATION ELLIOT ANSHELEVICH, ANIRBAN DASGUPTA, JON KLEINBERG, ÉVA TARDOS, TOM WEXLER, AND TIM ROUGHGARDEN Abstract. Network design is a fundamental

More information

MC 302 GRAPH THEORY 10/1/13 Solutions to HW #2 50 points + 6 XC points

MC 302 GRAPH THEORY 10/1/13 Solutions to HW #2 50 points + 6 XC points MC 0 GRAPH THEORY 0// Solutions to HW # 0 points + XC points ) [CH] p.,..7. This problem introduces an important class of graphs called the hypercubes or k-cubes, Q, Q, Q, etc. I suggest that before you

More information

CS 598CSC: Approximation Algorithms Lecture date: March 2, 2011 Instructor: Chandra Chekuri

CS 598CSC: Approximation Algorithms Lecture date: March 2, 2011 Instructor: Chandra Chekuri CS 598CSC: Approximation Algorithms Lecture date: March, 011 Instructor: Chandra Chekuri Scribe: CC Local search is a powerful and widely used heuristic method (with various extensions). In this lecture

More information

CSE 417 Branch & Bound (pt 4) Branch & Bound

CSE 417 Branch & Bound (pt 4) Branch & Bound CSE 417 Branch & Bound (pt 4) Branch & Bound Reminders > HW8 due today > HW9 will be posted tomorrow start early program will be slow, so debugging will be slow... Review of previous lectures > Complexity

More information

Stochastic Coalitional Games with Constant Matrix of Transition Probabilities

Stochastic Coalitional Games with Constant Matrix of Transition Probabilities Applied Mathematical Sciences, Vol. 8, 2014, no. 170, 8459-8465 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ams.2014.410891 Stochastic Coalitional Games with Constant Matrix of Transition Probabilities

More information

On Modularity Clustering. Group III (Ying Xuan, Swati Gambhir & Ravi Tiwari)

On Modularity Clustering. Group III (Ying Xuan, Swati Gambhir & Ravi Tiwari) On Modularity Clustering Presented by: Presented by: Group III (Ying Xuan, Swati Gambhir & Ravi Tiwari) Modularity A quality index for clustering a graph G=(V,E) G=(VE) q( C): EC ( ) EC ( ) + ECC (, ')

More information

Two Approximation Algorithms for 3-Cycle Covers

Two Approximation Algorithms for 3-Cycle Covers Two Approximation Algorithms for 3-Cycle Covers Markus Bläser and Bodo Manthey Institut für Theoretische Informatik Universität zu Lübeck Wallstraße 40, 2350 Lübeck, Germany blaeser/manthey@tcs.mu-luebeck.de

More information

In this lecture we discuss the complexity of approximation problems, and show how to prove they are NP-hard.

In this lecture we discuss the complexity of approximation problems, and show how to prove they are NP-hard. In this lecture we discuss the complexity of approximation problems, and show how to prove they are NP-hard. 1 We will show how one can prove such results and then apply this technique to some approximation

More information

On the Structure of Equilibria in Basic Network Formation

On the Structure of Equilibria in Basic Network Formation On the Structure of Equilibria in Basic Network Formation S. Nikoletseas 3,4, P. Panagopoulou 4, C. Raptopoulos 1,4, and P. G. Spirakis,3,4 1 Computer Science Department, University of Geneva, Switzerland

More information

Approximation Basics

Approximation Basics Milestones, Concepts, and Examples Xiaofeng Gao Department of Computer Science and Engineering Shanghai Jiao Tong University, P.R.China Spring 2015 Spring, 2015 Xiaofeng Gao 1/53 Outline History NP Optimization

More information

NP-Complete Reductions 2

NP-Complete Reductions 2 x 1 x 1 x 2 x 2 x 3 x 3 x 4 x 4 12 22 32 CS 447 11 13 21 23 31 33 Algorithms NP-Complete Reductions 2 Prof. Gregory Provan Department of Computer Science University College Cork 1 Lecture Outline NP-Complete

More information

Local Search Approximation Algorithms for the Complement of the Min-k-Cut Problems

Local Search Approximation Algorithms for the Complement of the Min-k-Cut Problems Local Search Approximation Algorithms for the Complement of the Min-k-Cut Problems Wenxing Zhu, Chuanyin Guo Center for Discrete Mathematics and Theoretical Computer Science, Fuzhou University, Fuzhou

More information

SCHEDULING WITH RELEASE TIMES AND DEADLINES ON A MINIMUM NUMBER OF MACHINES *

SCHEDULING WITH RELEASE TIMES AND DEADLINES ON A MINIMUM NUMBER OF MACHINES * SCHEDULING WITH RELEASE TIMES AND DEADLINES ON A MINIMUM NUMBER OF MACHINES * Mark Cieliebak 1, Thomas Erlebach 2, Fabian Hennecke 1, Birgitta Weber 1, and Peter Widmayer 1 1 Institute of Theoretical Computer

More information

Understanding the Internet Graph. Christos H. Papadimitriou

Understanding the Internet Graph. Christos H. Papadimitriou Understanding the Internet Graph Christos H. Papadimitriou www.cs.berkeley.edu/~christos Goals To understand the Internet topology using tools from graph and game theory To contribute to the rigorous foundations

More information

Unit 8: Coping with NP-Completeness. Complexity classes Reducibility and NP-completeness proofs Coping with NP-complete problems. Y.-W.

Unit 8: Coping with NP-Completeness. Complexity classes Reducibility and NP-completeness proofs Coping with NP-complete problems. Y.-W. : Coping with NP-Completeness Course contents: Complexity classes Reducibility and NP-completeness proofs Coping with NP-complete problems Reading: Chapter 34 Chapter 35.1, 35.2 Y.-W. Chang 1 Complexity

More information

Complexity of the Gale String Problem for Equilibrium Computation in Games

Complexity of the Gale String Problem for Equilibrium Computation in Games Complexity of the Gale String Problem for Equilibrium Computation in Games Marta Maria Casetti Thesis submitted to the Department of Mathematics London School of Economics and Political Science for the

More information

A Game-Theoretic Framework for Congestion Control in General Topology Networks

A Game-Theoretic Framework for Congestion Control in General Topology Networks A Game-Theoretic Framework for Congestion Control in General Topology SYS793 Presentation! By:! Computer Science Department! University of Virginia 1 Outline 2 1 Problem and Motivation! Congestion Control

More information

COMP260 Spring 2014 Notes: February 4th

COMP260 Spring 2014 Notes: February 4th COMP260 Spring 2014 Notes: February 4th Andrew Winslow In these notes, all graphs are undirected. We consider matching, covering, and packing in bipartite graphs, general graphs, and hypergraphs. We also

More information

The NP-Completeness of Some Edge-Partition Problems

The NP-Completeness of Some Edge-Partition Problems The NP-Completeness of Some Edge-Partition Problems Ian Holyer y SIAM J. COMPUT, Vol. 10, No. 4, November 1981 (pp. 713-717) c1981 Society for Industrial and Applied Mathematics 0097-5397/81/1004-0006

More information

Algorithms, Spring 2014, CSE, OSU Greedy algorithms II. Instructor: Anastasios Sidiropoulos

Algorithms, Spring 2014, CSE, OSU Greedy algorithms II. Instructor: Anastasios Sidiropoulos 6331 - Algorithms, Spring 2014, CSE, OSU Greedy algorithms II Instructor: Anastasios Sidiropoulos Greedy algorithms Fast Easy to implement At every step, the algorithm makes a choice that seems locally

More information

CS154, Lecture 18: PCPs, Hardness of Approximation, Approximation-Preserving Reductions, Interactive Proofs, Zero-Knowledge, Cold Fusion, Peace in

CS154, Lecture 18: PCPs, Hardness of Approximation, Approximation-Preserving Reductions, Interactive Proofs, Zero-Knowledge, Cold Fusion, Peace in CS154, Lecture 18: PCPs, Hardness of Approximation, Approximation-Preserving Reductions, Interactive Proofs, Zero-Knowledge, Cold Fusion, Peace in the Middle East There are thousands of NP-complete problems

More information

What Can We Do? CS125 Lecture 20 Fall 2014

What Can We Do? CS125 Lecture 20 Fall 2014 CS125 Lecture 20 Fall 2014 We have defined the class of NP-complete problems, which have the property that if there is a polynomial time algorithm for any one of these problems, there is a polynomial time

More information

Lecture 21: Other Reductions Steven Skiena

Lecture 21: Other Reductions Steven Skiena Lecture 21: Other Reductions Steven Skiena Department of Computer Science State University of New York Stony Brook, NY 11794 4400 http://www.cs.stonybrook.edu/ skiena Problem of the Day Show that the dense

More information

6.890: Fun with Hardness Proofs

6.890: Fun with Hardness Proofs 6.890: Fun with Hardness Proofs Guest Lectures on PPAD-Part B November 2014 Constantinos Daskalakis CSAIL, MIT Last time Existence Theorems: Nash, Brouwer, Sperner Total Search Problems in NP Totality

More information

How Bad is Selfish Routing?

How Bad is Selfish Routing? How Bad is Selfish Routing? Tim Roughgarden and Éva Tardos Presented by Brighten Godfrey 1 Game Theory Two or more players For each player, a set of strategies For each combination of played strategies,

More information

Topics in Artificial Intelligence: Multiagent Systems Selfish Routing in Computer Networks

Topics in Artificial Intelligence: Multiagent Systems Selfish Routing in Computer Networks Topics in Artificial Intelligence: Multiagent Systems Selfish Routing in Computer Networks Sebastian Streg December 10, 2005 1 Introduction Efficiency in networks with lots of traffic is a serious problem

More information

Chapter 8. NP-complete problems

Chapter 8. NP-complete problems Chapter 8. NP-complete problems Search problems E cient algorithms We have developed algorithms for I I I I I finding shortest paths in graphs, minimum spanning trees in graphs, matchings in bipartite

More information