NP Completeness • Tractability • Polynomial time

Slides:



Advertisements
Similar presentations
NP-Completeness Lecture for CS 302. Traveling Salesperson Problem You have to visit n cities You want to make the shortest trip How could you do this?
Advertisements

FORMAL LANGUAGES, AUTOMATA AND COMPUTABILITY
The Theory of NP-Completeness
1 NP-Complete Problems. 2 We discuss some hard problems:  how hard? (computational complexity)  what makes them hard?  any solutions? Definitions 
NP Completeness Tractability Polynomial time Computation vs. verification Power of non-determinism Encodings Transformation & reducibilities P vs. NP “Completeness”
NP-complete and NP-hard problems Transitivity of polynomial-time many-one reductions Definition of complexity class NP –Nondeterministic computation –Problems.
Graphs 4/16/2017 8:41 PM NP-Completeness.
NP-Complete Problems Reading Material: Chapter 10 Sections 1, 2, 3, and 4 only.
1 Polynomial Time Reductions Polynomial Computable function : For any computes in polynomial time.
The Theory of NP-Completeness
NP-Complete Problems Problems in Computer Science are classified into
NP-complete and NP-hard problems
CSE 421 Algorithms Richard Anderson Lecture 27 NP Completeness.
CS Master – Introduction to the Theory of Computation Jan Maluszynski - HT Lecture NP-Completeness Jan Maluszynski, IDA, 2007
Chapter 11 Limitations of Algorithm Power Copyright © 2007 Pearson Addison-Wesley. All rights reserved.
P, NP, and NP-Complete Suzan Köknar-Tezel.
1 The Theory of NP-Completeness 2 NP P NPC NP: Non-deterministic Polynomial P: Polynomial NPC: Non-deterministic Polynomial Complete P=NP? X = P.
The Theory of NP-Completeness 1. Nondeterministic algorithms A nondeterminstic algorithm consists of phase 1: guessing phase 2: checking If the checking.
The Theory of NP-Completeness 1. What is NP-completeness? Consider the circuit satisfiability problem Difficult to answer the decision problem in polynomial.
CSCE350 Algorithms and Data Structure
1 The Theory of NP-Completeness 2012/11/6 P: the class of problems which can be solved by a deterministic polynomial algorithm. NP : the class of decision.
Week 10Complexity of Algorithms1 Hard Computational Problems Some computational problems are hard Despite a numerous attempts we do not know any efficient.
CSE 024: Design & Analysis of Algorithms Chapter 9: NP Completeness Sedgewick Chp:40 David Luebke’s Course Notes / University of Virginia, Computer Science.
1 Lower Bounds Lower bound: an estimate on a minimum amount of work needed to solve a given problem Examples: b number of comparisons needed to find the.
1 The Theory of NP-Completeness 2 Cook ’ s Theorem (1971) Prof. Cook Toronto U. Receiving Turing Award (1982) Discussing difficult problems: worst case.
NP-Complete Problems. Running Time v.s. Input Size Concern with problems whose complexity may be described by exponential functions. Tractable problems.
1 Chapter 34: NP-Completeness. 2 About this Tutorial What is NP ? How to check if a problem is in NP ? Cook-Levin Theorem Showing one of the most difficult.
Design and Analysis of Algorithms - Chapter 101 Our old list of problems b Sorting b Searching b Shortest paths in a graph b Minimum spanning tree b Primality.
CS 3343: Analysis of Algorithms Lecture 25: P and NP Some slides courtesy of Carola Wenk.
Nathan Brunelle Department of Computer Science University of Virginia Theory of Computation CS3102 – Spring 2014 A tale.
CS6045: Advanced Algorithms NP Completeness. NP-Completeness Some problems are intractable: as they grow large, we are unable to solve them in reasonable.
NPC.
CSC 413/513: Intro to Algorithms
1 Ch 10 - NP-completeness Tractable and intractable problems Decision/Optimization problems Deterministic/NonDeterministic algorithms Classes P and NP.
CSCI 2670 Introduction to Theory of Computing December 2, 2004.
CSCI 2670 Introduction to Theory of Computing December 7, 2005.
The Theory of NP-Completeness 1. Nondeterministic algorithms A nondeterminstic algorithm consists of phase 1: guessing phase 2: checking If the checking.
1 The Theory of NP-Completeness 2 Review: Finding lower bound by problem transformation Problem X reduces to problem Y (X  Y ) iff X can be solved by.
Computability Examples. Reducibility. NP completeness. Homework: Find other examples of NP complete problems.
ICS 353: Design and Analysis of Algorithms NP-Complete Problems King Fahd University of Petroleum & Minerals Information & Computer Science Department.
The Theory of NP-Completeness
NP-Completeness A problem is NP-complete if: It is in NP
NP-Completeness (2) NP-Completeness Graphs 4/13/2018 5:22 AM x x x x x
NP Completeness Continued: Reductions
Chapter 10 NP-Complete Problems.
Richard Anderson Lecture 26 NP-Completeness
NP-Completeness (2) NP-Completeness Graphs 7/23/ :02 PM x x x x
NP-Completeness (2) NP-Completeness Graphs 7/23/ :02 PM x x x x
NP-Completeness Proofs
Richard Anderson Lecture 26 NP-Completeness
Hard Problems Introduction to NP
Regular Expressions: Review
NP-Completeness Yin Tat Lee
Intro to Theory of Computation
ICS 353: Design and Analysis of Algorithms
NP-Completeness (2) NP-Completeness Graphs 11/23/2018 2:12 PM x x x x
Richard Anderson Lecture 25 NP-Completeness
Review: Reduction A problem A can be reduced to another problem B if any instance of A can be rephrased to an instance of B, the solution to which provides.
Chapter 11 Limitations of Algorithm Power
NP-Complete Problems.
CS 3343: Analysis of Algorithms
NP-Completeness Yin Tat Lee
Theory of Computation CS302 – Spring 2009
NP-Completeness Reference: Computers and Intractability: A Guide to the Theory of NP-Completeness by Garey and Johnson, W.H. Freeman and Company, 1979.
The Theory of NP-Completeness
NP-Completeness Lecture for CS 302.
CSE 589 Applied Algorithms Spring 1999
Our old list of problems
RAIK 283 Data Structures & Algorithms
NP-Completeness (2) NP-Completeness Graphs 7/9/2019 6:12 AM x x x x x
Presentation transcript:

NP Completeness • Tractability • Polynomial time • Computation vs. verification • Power of non-determinism • Encodings • Transformation & reducibilities • P vs. NP • “Completeness”

NP Completeness Benefits Saves time & effort of trying to solve intractable problems efficiently; Saves money by not separately working to efficiently solve different problems; Helps systematically build on & leverage the work (or lack of progress) of others; Transformations can be used to solve new problems by reducing them to known ones; Illuminates the structure & complexity of seemingly unrelated problems;

NP Completeness Benefits Informs as to when we should use approximate solutions vs. exact ones; Helps understand the ubiquitous concept of parallelism (via non-determinism); Enabled vast, deep, and general studies of other “completeness” theories; Helps explain why verifying proofs seems to be easier than constructing them; Illuminates the fundamental nature of algorithms and computation;

NP Completeness Benefits Gave rise to new and novel mathematical approaches, proofs, and analyses; Helps us to more easily reason about and manipulate large classes of problems; Robustly decouples / abstracts complexity from underlying computational models; Gives disciplined techniques for identifying “hardest” problems / languages; Forged new unifications between computer science, mathematics, and logic; NP-Completeness is interesting and fun!

Reducibilities Reloaded Def: A language A is polynomial-time reducible to a language B if $ polynomial-time computable function ƒ:å*®å* where wÎA Û ƒ(w)ÎB "w Def: A language A is polynomial-time reducible to a language B if $ polynomial-time computable function ƒ:å*®å* where wÎA Û ƒ(w)ÎB "w ÎP Note: ƒ is a polynomial-time “reduction” of A to B Note: ƒ is a polynomial-time “reduction” of A to B Denotation: A £P B Denotation: A £P B Intuitively, A is “no harder” than B (modulo P) Intuitively, A is “no harder” than B (modulo P)

Reducibilities Reloaded Def: A language A is polynomial-time reducible to a language B if $ polynomial-time computable function ƒ:å*®å* where wÎA Û ƒ(w)ÎB "w Def: A language A is polynomial-time reducible to a language B if $ polynomial-time computable function ƒ:å*®å* where wÎA Û ƒ(w)ÎB "w Note: be very careful about the reduction direction! ÎP Theorem: If A £P B and B is decidable within polynomial time then A is decidable within polynomial time. Theorem: If A £P B and A is not decidable within polynomial time then B is not decidable within polynomial time.

Problem Transformations Idea: To solve a problem, efficiently transform to another problem, and then use a solver for the other problem: Satisfiability SAT solution x=1, y=0 (x+y)(x'+y') Colorability solver Colorability

NP Hardness & Completeness Def: A problem L’ is NP-hard if: (1) Every L in NP reduces to L’ in polynomial time. Def: A problem L’ is NP-complete if: (1) L is NP-hard; and (2) L is in NP. One NPC problem is in P Þ P=NP Open: is P=NP ? Open: is NP=co-NP ? Theorem: P = co-P NP-complete SAT NP P co-NP P-complete LP co-NP-complete TAUT

Boolean Satisfiability Problem (SAT) Def: CNF (Conjunctive Normal Form) formula is in a product-of-sums format. Ex: (x1+x4+x5+x7+x'8)(x'1+x3+x'4+x'5) Problem (SAT): given an n-variable Boolean formula (in CNF), is it satisfiable? “Satisfiable” Þ formula can be made "true“ by some assignment of all the variables. Ex: (x+y)(x'+z') is satisfiable (e.g., let x=1 & Z=0) (x+z)(x')(z') is not satisfiable (why?)

The Cook/Levin Theorem Theorem [Cook/Levin, 1971]: SAT is NP-complete. Proof idea: given an arbitrary non-deterministic polynomial-time TM M and input w, construct a CNF formula that is satisfiable iff M accepts w. Create boolean variables: q[i,k] Þ at step i, M is in state k h[i,k] Þ at step i, M’s RW head scans tape cell k s[i,j,k] Þ at step i, M’s tape cell j contains symbol Sk M halts in polynomial time p(n) Þ total # of variables is polynomial in p(n) Qk

The Cook/Levin Theorem Add clauses to the formula that enforce necessary restrictions on how M operates / runs: At each time i: M is in exactly 1 state r/w head scans exactly 1 cell All cells contain exactly 1 symbol At time 0 Þ M is in its initial state At time P(n) Þ M is in a final state Transitions from step i to i+1 obey M's transition function Resulting formula is satisfiable iff M accepts w! Qk

“Guess and Verify” Approach Note: SAT Î NP. Idea: Nondeterministically “guess” each Boolean variable value, and then verify the guessed solution. Þ polynomial-time nondeterministic algorithm Î NP This “guess & verify” approach is general. Idea: “Guessing” is usually trivially fast (Î NP) Þ NP can be characterized by the “verify” property: NP º set of problems for which proposed solutions can be quickly verified º set of languages for which string membership can be quickly tested.

Historical Note The Cook/Levin theorem was independently proved by Stephen Cook and Leonid Levin Denied tenure at Berkeley (1970) Invented NP completeness (1971) Won Turing Award (1982) Student of Andrei Kolmogorov Seminal paper obscured by Russian, style, and Cold War

Entire paper!

An NP-Complete Encyclopedia Classic book: Garey & Johnson, 1979 Definitive guide to NP-completeness Lists hundreds of NP-complete problems Gives reduction types and refs

μ λ Robustness of P and NP Compositions of polynomials yields polynomials Computation models’ efficiencies are all polynomially related (i.e., can efficiently simulate one another). Defs of P and NP is computation model-independent! μ x3 + y3 + z3 = 33 λ

Reduction Types Many-one reduction: converts an instance of one problem to a single instance of another problem. A £M B Turing reduction: solves a problem A by multiple calls to an “oracle” for problem B. A B A £T B

Polynomial-Time Reduction Types Polynomial-time many-one reduction: transforms in polynomial time an instance of problem A to an instance of problem B. Þ “Karp” reduction (transformation) Polynomial-time Turing reduction: solves A by polynomially-many calls to “oracle” for B. Þ “Cook” reduction B A Open: do polynomial-time-bounded many-one and Turing reductions yield the same complexity classes? (NP, co-NP, NP-complete, co-NP-complete, etc.)

Boolean 3-Satisfiability (3-SAT) Def: 3-CNF: each sum term has exactly 3 literals. Ex: (x1+x5+x7)(x3+x'4+x'5) Def: 3-SAT: given an n-variable boolean formula (in CNF), is it satisfiable? Theorem: 3-SAT is NP-complete. Proof: convert each long clause of the given formula into an equivalent set of 3-CNF clauses: Ex: (x+y+z+u+v+w) Þ (x+y+a)(a'+z+b)(b'+u+c)(c'+v+w) Resulting formula is satisfiable iff original formula is.

1-SAT and 2-SAT Q: is 1-SAT NP-complete? Q: is 2-SAT NP-complete?

Classic NP Complete Problems Clique: given a graph and an integer k, is there a subgraph in G that is a complete graph of size k?

Classic NP Complete Problems Set Cover: given a universe U, a collection of subsets Si and an integer k, can k of these subsets cover U? S1 S5 U S2 S3 S4

Classic NP Complete Problems Hamiltonian cycle: Given an undirected graph, is there a closed path that visits every vertex exactly once?

Classic NP Complete Problems Graph coloring: given an integer k and a graph, is it k-colorable? (adjacent nodes get different colors)

Classic NP Complete Problems Partition: Given a set of integers, is there a way to partition is into two subsets each with the same sum?

Classic NP Complete Problems Knapsack: maximize the total value of a set of items without exceeding an overall weight constraint.

NP Complete Problems Bin packing: minimize the number of same-size bins necessary to hold a set of items of various sizes.

Other Classic NP Complete Problems Steiner Tree: span a given node subset in a weighted graph using a minimum-cost tree. 2

Other Classic NP Complete Problems Traveling salesperson: given a set of points, find the shortest tour that visits every point exactly once.

Graph Colorability Problem: given a graph G and an integer k, is G k-colorable? Note: adjacent nodes must have different colors Þ

Problem Transformations Idea: To solve a problem, efficiently transform to another problem, and then use a solver for the other problem: Satisfiability SAT solution x=1, y=0 (x+y)(x'+y') Colorability solver Colorability