NP-Completeness Part One

Similar documents
NP-Completeness Part One

Complexity Theory Part Two

NP-Completeness Part One

NP-Completeness Part I

Complexity Theory Part Two

Complexity Theory Part Two

Complexity Theory Part Two

NP-Completeness Part One

NP-Completeness Part II

NP-Completeness Part II

Recap from Last Time

Announcements. Friday Four Square! Problem Set 8 due right now. Problem Set 9 out, due next Friday at 2:15PM. Did you lose a phone in my office?

Recap from Last Time

NP-Completeness Part II

Complexity Theory Part II

CS103 Handout 22 Fall 2012 November 30, 2012 Problem Set 9

Essential facts about NP-completeness:

Complexity Theory Part I

Topics in Complexity

Topics in Complexity Theory

Friday Four Square! Today at 4:15PM, Outside Gates

Complexity Theory Part One

Approximation Algorithms

The Inductive Proof Template

COP 4531 Complexity & Analysis of Data Structures & Algorithms

1.1 P, NP, and NP-complete

P vs. NP. Data Structures and Algorithms CSE AU 1

NP and Computational Intractability

Algorithms Design & Analysis. Approximation Algorithm

CS 583: Algorithms. NP Completeness Ch 34. Intractability

/633 Introduction to Algorithms Lecturer: Michael Dinitz Topic: NP-Completeness I Date: 11/13/18

Mathematical Logic Part One

P P P NP-Hard: L is NP-hard if for all L NP, L L. Thus, if we could solve L in polynomial. Cook's Theorem and Reductions

Announcements. Problem Set 7 graded; will be returned at end of lecture. Unclaimed problem sets and midterms moved!

SAT, NP, NP-Completeness

CSC 373: Algorithm Design and Analysis Lecture 15

Algorithm Design and Analysis

NP-complete problems. CSE 101: Design and Analysis of Algorithms Lecture 20

6.080 / Great Ideas in Theoretical Computer Science Spring 2008

A Note on Turing Machine Design

Complexity Theory Part I

NP-Completeness. Andreas Klappenecker. [based on slides by Prof. Welch]

NP-Completeness Review

Introduction to Computational Complexity

NP-Complete problems

6.045: Automata, Computability, and Complexity (GITCS) Class 15 Nancy Lynch

Harvard CS 121 and CSCI E-121 Lecture 22: The P vs. NP Question and NP-completeness

NP-Completeness. Until now we have been designing algorithms for specific problems

Design and Analysis of Algorithms

CSE 105 THEORY OF COMPUTATION

Comp487/587 - Boolean Formulas

Algorithm Design and Analysis

NP-Completeness I. Lecture Overview Introduction: Reduction and Expressiveness

SAT, Coloring, Hamiltonian Cycle, TSP

Outline for Today. What is an Implication? Negations and their Applications. Proof by Contrapositive. Proof by Contradiction

Complexity Theory Part One

Polynomial-Time Reductions

Outline for Today. Binary Relations. Equivalence Relations. Partial Orders. Quick Midterm Review

CS154, Lecture 13: P vs NP

Practice Second Midterm Exam I

Announcements. Using a 72-hour extension, due Monday at 11:30AM.

Easy Problems vs. Hard Problems. CSE 421 Introduction to Algorithms Winter Is P a good definition of efficient? The class P

NP Completeness and Approximation Algorithms

P is the class of problems for which there are algorithms that solve the problem in time O(n k ) for some constant k.

NP-problems continued

Algorithms. NP -Complete Problems. Dong Kyue Kim Hanyang University

Chapter 8. NP and Computational Intractability. Slides by Kevin Wayne. Copyright 2005 Pearson-Addison Wesley. All rights reserved.

Disjoint-Set Forests

Intro to Theory of Computation

Mathematical Logic Part One

Announcements. Problem Set 1 out. Checkpoint due Monday, September 30. Remaining problems due Friday, October 4.

1. Introduction Recap

COMP Analysis of Algorithms & Data Structures

MITOCW ocw f99-lec09_300k

NP-Complete Problems. More reductions

Formal definition of P

Polynomial-time Reductions

Lecture 4: NP and computational intractability

CS103 Handout 09 Fall 2012 October 19, 2012 Problem Set 4

1 Reductions and Expressiveness

CS21 Decidability and Tractability

NP Complete Problems. COMP 215 Lecture 20

Show that the following problems are NP-complete

Summer School on Introduction to Algorithms and Optimization Techniques July 4-12, 2017 Organized by ACMU, ISI and IEEE CEDA.

NP-Complete Reductions 1

4/19/11. NP and NP completeness. Decision Problems. Definition of P. Certifiers and Certificates: COMPOSITES

Complexity Theory VU , SS The Polynomial Hierarchy. Reinhard Pichler

Outline for Today. What is an Implication? Negations and their Applications. Proof by Contrapositive. Proof by Contradiction

Outline. Complexity Theory EXACT TSP. The Class DP. Definition. Problem EXACT TSP. Complexity of EXACT TSP. Proposition VU 181.

CMSC 441: Algorithms. NP Completeness

Proof: If (a, a, b) is a Pythagorean triple, 2a 2 = b 2 b / a = 2, which is impossible.

Chapter 2. Reductions and NP. 2.1 Reductions Continued The Satisfiability Problem (SAT) SAT 3SAT. CS 573: Algorithms, Fall 2013 August 29, 2013

NP Completeness. CS 374: Algorithms & Models of Computation, Spring Lecture 23. November 19, 2015

NP-Completeness and Boolean Satisfiability

MITOCW free_body_diagrams

DESIGN AND ANALYSIS OF ALGORITHMS. Unit 6 Chapter 17 TRACTABLE AND NON-TRACTABLE PROBLEMS

Unit 6 Chapter 17 TRACTABLE AND NON-TRACTABLE PROBLEMS

1 Computational problems

NP and Computational Intractability

Transcription:

NP-Completeness Part One

Recap from Last Time

The Limits of Efficient Computation P NP R

P and NP Refresher The class P consists of all problems decidable in polynomial time. The class NP consists of all problems verifiable in polynomial time. We don't know whether P = NP or not, and unfortunately a theorem by Baker, Gill, and Soloway shows that the approaches we've used with R and RE won't work here. So... what can we do?

Reducibility

Maximum Matching Given an undirected graph G, a matching in G is a set of edges such that no two edges share an endpoint. A maximum matching is a matching with the largest number of edges.

Maximum Matching Jack Edmonds' paper Paths, Trees, and Flowers gives a polynomial-time algorithm for finding maximum matchings. (This is the same Edmonds as in Cobham- Edmonds Thesis. Using this fact, what other problems can we solve?

Domino Tiling

Solving Domino Tiling

Solving Domino Tiling

Solving Domino Tiling

In Pseudocode boolean canplacedominos(grid G, int k { } return hasmatching(gridtograph(g, k;

Boggle Spelling

Given a set of Boggle cubes and a target word or phrase, is it possible to arrange the cubes so that you spell out that word or phrase?

Boggle Spelling C U B E E O T A I N S H R D L U C U W N F G Y P B V K J T E O R H Y P R C T A I

In Pseudocode boolean canspell(list<cube> cubes, String word { } return hasmatching(makegraph(cubes, word, word.length(;

Reachability Consider the following problem: Given an directed graph G and nodes s and t in G, is there a path from s to t? As a formal language: REACHABILITY = { G, s, t G is a directed graph, s and t are nodes in G, and there's a path from s to t } Theorem: REACHABILITY P. Given that we can solve the reachability problem in polynomial time, what other problems can we solve in polynomial time?

Converter Conundrums Connectors RGB RGB to to USB USB VGA VGA to to DisplayPort DB13W3 DB13W3 to to CATV CATV DisplayPort to to RGB RGB DB13W3 DB13W3 to to HDMI HDMI DVI DVI to to DB13W3 DB13W3 S-Video S-Video to to DVI DVI FireWire FireWire to to SDI SDI VGA VGA to to RGB RGB DVI DVI to to DisplayPort USB USB to to S-Video S-Video SDI SDI to to HDMI HDMI VGA RGB USB DisplayPort DB13W3 CATV HDMI X FireWire DVI S-Video SDI

Converter Conundrums VGA RGB USB DisplayPort DB13W3 CATV HDMI X DVI S-Video FireWire SDI

In Pseudocode boolean canplugin(list<plug> plugs { } return isreachable(plugstograph(plugs, VGA, HDMI;

One More!

Satisfiability A propositional logic formula φ is called satisfiable if there is some assignment to its variables that makes it evaluate to true. p q is satisfiable. p p is unsatisfiable. p (q q is satisfiable. An assignment of true and false to the variables of φ that makes it evaluate to true is called a satisfying assignment.

SAT The boolean satisfiability problem (SAT is the following: Formally: Given a propositional logic formula φ, is φ satisfiable? SAT = { φ φ is a satisfiable PL formula } Claim: SAT NP. (Do you see why?

Perfect Matchings A perfect matching in a graph G is a matching where every node is adjacent to some edge in the matching. Claim: We can reduce the problem of determining whether a graph has a perfect matching to the boolean satisfiability problem.

a b c d e f For each edge {u, v}, we'll introduce a propositional variable p uv meaning edge {u, v} is included in the perfect matching. We need to enforce the following: Every node is adjacent to at least one edge. ( perfect Every node is adjacent to at most one edge. ( matching p ab ab p ad ad p bc bc p bd bd p ce ce p cf cf p de de p ef ef

a b c d e f For each edge {u, v}, we'll introduce a propositional variable p uv meaning edge {u, v} is included in the perfect matching. We need to enforce the following: Every node is adjacent to at least one edge. ( perfect Every node is adjacent to at most one edge. ( matching (p (p ab ab p ad ad (p (p ab ab p bc bc p bd bd (p (p bc bc p ce ce p cf cf (p (p ad ad p bd bd p de de (p (p ce ce p de de p ef ef (p (p cf cf p ef ef (p (p ab ab p ad ad (p (p ab ab p bc bc (p (p ab ab p bd bd (p (p bc bc p bd bd (p (p bc bc p ce ce (p (p bc bc p cf cf (p (p ce ce p cf cf (p (p ad ad p bd bd (p (p ad ad p de de (p (p bd bd p de de (p (p ce ce p de de (p (p ce ce p ef ef (p (p de de p ef ef (p (p cf cf p ef ef p ab ab p ad ad p bc bc p bd bd p ce ce p cf cf p de de p ef ef

a b c d e f For each edge {u, v}, we'll introduce a propositional variable p uv meaning edge {u, v} is included in the perfect matching. We need to enforce the following: Every node is adjacent to at least one edge. ( perfect Every node is adjacent to at most one edge. ( matching (p (p ab ab p ad ad (p (p ab ab p bc bc p bd bd (p (p bc bc p ce ce p cf cf (p (p ad ad p bd bd p de de (p (p ce ce p de de p ef ef (p (p cf cf p ef ef (p (p ab ab p ad ad (p (p ab ab p bc bc (p (p ab ab p bd bd (p (p bc bc p bd bd (p (p bc bc p ce ce (p (p bc bc p cf cf (p (p ce ce p cf cf (p (p ad ad p bd bd (p (p ad ad p de de (p (p bd bd p de de (p (p ce ce p de de (p (p ce ce p ef ef (p (p de de p ef ef (p (p cf cf p ef ef p ab ab p ad ad p bc bc p bd bd p ce ce p cf cf p de de p ef ef

a b Notice Notice that that this this formula formula is is the the many-way many-way AND AND of of lots lots of of smaller smaller formulas formulas of of the the form form (l₁ (l₁ l₂ l₂ lₙ lₙ where d e f where each each lₖ lₖ is is either either a variable variable or or its its negation. negation. Each Each lₖ lₖ is is For called each called edge a literal, literal, {u, v}, and and we'll the the introduce multi-way multi-way a propositional OR OR of of literals literals variable is is called called p a uv meaning edge {u, v} is included clause. clause. in the perfect matching. We To To need satisfy satisfy to enforce this this formula, formula, the following: we we need need to to choose choose truth truth values values so so that that Every node every every is adjacent clause clause has to has at at at least least least one one one edge. true true ( perfect literal. literal. Every node is adjacent to at most one edge. ( matching (p (p ab ab p ad ad (p (p ab ab p bc bc p bd bd (p (p bc bc p ce ce p cf cf p ab ab (p (p ad ad p bd bd p de de (p (p ce ce p de de p ef ef (p (p cf cf p ef ef p ad ad ( p ( p ab ab p p ad ad p bc bc ( p ( p ab ab p p bc bc ( p ( p ab ab p p bd bd ( p ( p bc bc p p bd bd p bd bd ( p ( p bc bc p p ce ce ( p ( p bc bc p p cf cf ( p ( p ce ce p p cf cf p ce ce ( p ( p ad ad p p bd bd ( p ( p ad ad p p de de ( p ( p bd bd p p de de p cf cf ( p ( p ce ce p p de de ( p ( p ce ce p p ef ef ( p ( p de de p p ef ef p de de ( p ( p cf cf p p ef ef p ef ef c

a b c d e f For each edge {u, v}, we'll introduce a propositional variable p uv meaning edge {u, v} is included in the perfect matching. We need to enforce the following: Every node is adjacent to at least one edge. ( perfect Every node is adjacent to at most one edge. ( matching (p (p ab ab p ad ad (p (p ab ab p bc bc p bd bd (p (p bc bc p ce ce p cf cf (p (p ad ad p bd bd p de de (p (p ce ce p de de p ef ef (p (p cf cf p ef ef ( p ( p ab ab p p ad ad ( p ( p ab ab p p bc bc ( p ( p ab ab p p bd bd ( p ( p bc bc p p bd bd ( p ( p bc bc p p ce ce ( p ( p bc bc p p cf cf ( p ( p ce ce p p cf cf ( p ( p ad ad p p bd bd ( p ( p ad ad p p de de ( p ( p bd bd p p de de ( p ( p ce ce p p de de ( p ( p ce ce p p ef ef ( p ( p de de p p ef ef ( p ( p cf cf p p ef ef T p ab ab F p ad ad F p bc bc F p bd bd F p ce ce T p cf cf T p de de F p ef ef

a b c d e f (p (p ab ab p ad ad (p (p ab ab p bc bc p bd bd (p (p bc bc p ce ce p cf cf (p (p ad ad p bd bd p de de (p (p ce ce p de de p ef ef (p (p cf cf p ef ef ( p ( p ab ab p p ad ad ( p ( p ab ab p p bc bc ( p ( p ab ab p p bd bd ( p ( p bc bc p p bd bd ( p ( p bc bc p p ce ce ( p ( p bc bc p p cf cf ( p ( p ce ce p p cf cf ( p ( p ad ad p p bd bd ( p ( p ad ad p p de de ( p ( p bd bd p p de de ( p ( p ce ce p p de de ( p ( p ce ce p p ef ef ( p ( p de de p p ef ef ( p ( p cf cf p p ef ef F p ab ab T p ad ad T p bc bc F p bd bd F p ce ce F p cf cf F p de de T p ef ef

A Commonality All of the solutions to our previous problems had the following form: boolean solveproblema(input { return solveproblemb(transform(input; } Important observation: Assuming that we already have a solver for problem B, the only work done here is transforming the input to problem A into an input to problem B. All the hard work is done by the solver for B; we just turn one input into another.

Mathematically Modeling this Idea

Polynomial-Time Reductions Let A and B be languages. A polynomial-time reduction from A to B is a function f : Σ* Σ* such that w Σ*. (w A f(w B The function f can be computed in polynomial time. What does this mean?

Polynomial-Time Reductions If f is a polynomial-time reduction from A to B, then w Σ*. (w A f(w B If you want to know whether w A, you can instead ask whether f(w B. Every w A maps to some f(w B. Every w A maps to some f(w B.

Polynomial-Time Reductions If f is a polynomial-time reduction from A to B, then w Σ*. (w A f(w B YES f(w YES NO f(w Σ* Σ* NO

Reductions, Programmatically Suppose we have a solver for problem B that's defined in terms of problem A in this specific way: boolean solveproblema(input { return solveproblemb(transform(input; } The reduction from A to B is the function transform in the above setup: it maps yes answers to A to yes answers to B and no answers to A to no answers to B.

Reducibility among Problems Suppose that A and B are languages where there's a polynomial-time reduction from A to B. We'll denote this by writing A p B You can read this aloud as A polynomialtime reduces to B or A poly-time reduces to B.

Two Key Theorems Theorem 1: If A P B and B P, then A P. Theorem 2: If A P B and B NP, then A NP. Intuitively, if A P B, then A is not harder than B and B is at least as hard as A. Proof idea: For (1, show that applying the reduction from A to B and solving B solves A in polynomial time. For (2, show that applying the reduction from A to B lets us use a verifier for B to verify answers to A.

Reducibility, Summarized A polynomial-time reduction is a way of transforming inputs to problem A into inputs to problem B that preserves the correct answer. If there is a polynomial-time reduction from A to B, we denote this by writing A p B. Two major theorems: Theorem: If B P and A p B, then A P. Theorem: If B NP and A p B, then A NP.

Time-Out for Announcements!

Please evaluate this course in Axess. Your feedback does make a difference.

Problem Set Nine Problem Set Nine is due this Friday at 3:00PM. No late days may be used this is university policy. Sorry about that! We hope that the later questions help give you some review for the final exam. Have questions? Stop by office hours or ask on Piazza!

Extra Practice Problems We released three sets of cumulative review problems over the break. Solutions are available in the Gates building feel free to stop by to pick them up at your convenience! We will be releasing a practice final exam later this week; details on Wednesday. Are there any topics you'd like even more review on? If so, let us know!

Midterm Regrades We will release a midterm regrade request form online tomorrow. Please only submit regrade requests if you believe we made an actual grading error. Do not submit regrades if you have a wrong answer and want more points, you don't understand a deduction, or you feel that our criteria are unfair. Our definition of regrade is completely regrade the question from scratch according to the grading criteria. As a result, if you submit a regrade request for a reason other than we made a grading error, you are likely to lose points.

Career Advice Panel BEAM and Stanford Career Education are putting together a panel event tonight featuring students talking about navigating the CS career landscape. The panel looks great I know many of the students on it and they'll have some really interesting things to say. Interested? Follow along on YouTube starting at 5:15PM: https://youtu.be/fe5vys-ntg8 Want to submit questions? Use this link: http://goo.gl/forms/9vkcph7noa

Your Questions!

Keith, I feel like I know the material but I keep messing up on the tests (it's so easy to mess up on 4 question tests. I feel like I'm going to fail 103 what should I do? I'm sorry to hear things are so stressful! Hang in there. You can do this! I'm sorry to hear things are so stressful! Hang in there. You can do this! When you're learning something for the first time, one of the hardest skills to When you're learning something for the first time, one of the hardest skills to learn but one of the most valuable is being able to recognize when learn but one of the most valuable is being able to recognize when something doesn't seem right. When you get to the point where you have a something doesn't seem right. When you get to the point where you have a good immune system or a good sense of smell, you'll become less likely to good immune system or a good sense of smell, you'll become less likely to make little mistakes and you'll get better at catching errors before you even make little mistakes and you'll get better at catching errors before you even make them. make them. Developing this skill takes time and practice. Obviously, it's good to do a Developing this skill takes time and practice. Obviously, it's good to do a bunch of practice problems, but be sure to get the TAs to look over your bunch of practice problems, but be sure to get the TAs to look over your work and offer feedback. Look over the mistakes you've made in the past. Do work and offer feedback. Look over the mistakes you've made in the past. Do you really understand what the mistake was? If not, ask your Friendly you really understand what the mistake was? If not, ask your Friendly Neighborhood TA and find out. Your goal on the exam is to make new Neighborhood TA and find out. Your goal on the exam is to make new mistakes, and the more practice you get reviewing your work and finding out mistakes, and the more practice you get reviewing your work and finding out where your weaknesses are, the better you'll learn the material. where your weaknesses are, the better you'll learn the material.

What is the biggest risk you've ever taken? How did it turn out? I'm just going to talk about I'm just going to talk about this one in class. I don't feel this one in class. I don't feel comfortable posting this answer comfortable posting this answer for everyone on the Internet. for everyone on the Internet. Sorry about that! Sorry about that!

Back to CS103!

NP-Hardness and NP-Completeness

Polynomial-Time Reductions If A P B and B P, then A P. If A P B and B NP, then A NP. P NP

NP-Hardness A language L is called NP-hard if for every A NP, we have A P L. Intuitively: L has has to to be be at at least least as as hard as every problem in NP, since an an algorithm for for L can can be be used used to to decide all all problems in in NP. NP. A language in L is hard called as NP-complete every problem iff L is in NP-hard NP, since and L NP. The class NPC is the set of NP-complete problems. NP NP-Hard P

NP-Hardness A language L is called NP-hard if for every A NP, we have A P L. A language in L is called NP-complete iff L What's What's is NP-hard in in here? here? and L NP. The class NPC is the set of NP-complete problems. NP NP-Hard P

The Tantalizing Truth Theorem: If any NP-complete language is in P, then P = NP. Proof: Suppose that L is NP-complete and L P. Now consider any arbitrary NP problem A. Since L is NP-complete, we know that A p L. Since L P and A p L, we see that A P. Since our choice of A was arbitrary, this means that NP P, so P = NP. P = NP

The Tantalizing Truth Theorem: If any NP-complete language is not in P, then P NP. Proof: Suppose that L is an NP-complete language not in P. Since L is NP-complete, we know that L NP. Therefore, we know that L NP and L P, so P NP. NP P NPC

A Feel for NP-Completeness If a problem is NP-complete, then under the assumption that P NP, there cannot be an efficient algorithm for it. In a sense, NP-complete problems are the hardest problems in NP. All known NP-complete problems are enormously hard to solve: All known algorithms for NP-complete problems run in worst-case exponential time. Most algorithms for NP-complete problems are infeasible for reasonably-sized inputs.

How do we even know NP-complete problems exist in the first place?

Satisfiability A propositional logic formula φ is called satisfiable if there is some assignment to its variables that makes it evaluate to true. p q is satisfiable. p p is unsatisfiable. p (q q is satisfiable. An assignment of true and false to the variables of φ that makes it evaluate to true is called a satisfying assignment.

SAT The boolean satisfiability problem (SAT is the following: Formally: Given a propositional logic formula φ, is φ satisfiable? SAT = { φ φ is a satisfiable PL formula }

Theorem (Cook-Levin: SAT is NP-complete. Proof Idea: Given a polynomial-time verifier V for an NP language L, for any string w, you can write a gigantic formula φ(w that says there is a certificate c such that V accepts w, c. This formula is satisfiable iff there is a c where V accepts w, c iff w L. Proof: Read Sipser or take CS154!

Why All This Matters Resolving P NP is equivalent to just figuring out how hard SAT is. If SAT P, then P = NP. If SAT P, then P NP. We've turned a huge, abstract, theoretical problem about solving problems versus checking solutions into the concrete task of seeing how hard one problem is. You can get a sense for how little we know about algorithms and computation given that we can't yet answer this question!

Finding Additional NP-Complete Problems

NP-Completeness Theorem: Let A and B be languages. If A P B and A is NP-hard, then B is NP-hard. Theorem: Let A and B be languages where A NPC and B NP. If A P B, then B NPC. NP P NPC

Karp's 21 NP-Complete Problems

Sample NP-Complete Problems Given a graph, is that graph 3-colorable? Given a graph, does that graph contain a Hamiltonian path? Given a set of cities and a set of substation locations, can you provide power to all the cities using at most k substations? Given a set of jobs and workers who can perform those tasks in parallel, can you complete all the jobs in at most T units of time? Given a set of numbers S, can you split S into two disjoint sets with the same sum? And many, many more!

A Feel for NP-Completeness There are NP-complete problems in formal logic (SAT, graph theory (3-colorability, operations research (job scheduling, number theory (partition problem, and basically everywhere. You will undoubtedly encounter NPcomplete problems in the real world.

Some Recent News

Intermediate Problems With few exceptions, every problem we've discovered in NP has either definitely been proven to be in P, or definitely been proven to be NP-complete. A problem that's NP, not in P, but not NP-complete is called NP-intermediate. Theorem (Ladner: There are NP-intermediate problems if and only if P NP. NP P NPC

Graph Isomorphism The graph isomorphism problem is the following: given two graphs G₁ and G₂, is there a way to relabel the nodes in G₁ so that the resulting graph is G₂? This problem is in NP, but no one knows whether it's in P, whether it's NP-complete, or whether it's NP-intermediate. 1 2 3 a b c d 4 5 6 e f

Graph Isomorphism The graph isomorphism problem is the following: given two graphs G₁ and G₂, is there a way to relabel the nodes in G₁ so that the resulting graph is G₂? This problem is in NP, but no one knows whether it's in P, whether it's NP-complete, or whether it's NP-intermediate. b c d a b c d a e f e f

Recent News Right now, a mathematician named Laszlo Babai is presenting a proof that graph isomorphism can be solved in almost polynomial time. This is a huge deal for a few reasons: This particular problem has resisted any improvements for a long time. Remember we don't have many good tools for reasoning about P and NP! The particular technique he's using is somewhat novel and interesting. Remember we don't have many good tools for reasoning about P and NP! This probably means that the problem will eventually be proven to be in P, meaning that we'll probably develop some really clever new algorithmic technique while solving it. Remember we don't have many good tools for reasoning about P and NP!

Next Time Additional NP-Complete Problems 3SAT Independent Set 3-Colorability