SlideShare a Scribd company logo
Lecture 20:
         Satisfiability
         Steven Skiena

Department of Computer Science
 State University of New York
 Stony Brook, NY 11794–4400

http://www.cs.sunysb.edu/∼skiena
Problem of the Day
Suppose we are given a subroutine which can solve the
traveling salesman decision problem in, say, linear time. Give
an efficient algorithm to find the actual TSP tour by making a
polynomial number of calls to this subroutine.
The Main Idea
Suppose I gave you the following algorithm to solve the
bandersnatch problem:
Bandersnatch(G)
     Convert G to an instance of the Bo-billy problem Y .
     Call the subroutine Bo-billy on Y to solve this instance.
     Return the answer of Bo-billy(Y ) as the answer to G.
Such a translation from instances of one type of problem to
instances of another type such that answers are preserved is
called a reduction.
What Does this Imply?
Now suppose my reduction translates G to Y in O(P (n)):
1. If my Bo-billy subroutine ran in O(P (n)) I can solve the
   Bandersnatch problem in O(P (n) + P (n ))
2. If I know that Ω(P (n)) is a lower-bound to compute
   Bandersnatch, then Ω(P (n) − P (n )) must be a lower-
   bound to compute Bo-billy.
The second argument is the idea we use to prove problems
hard!
Satisfiability
Consider the following logic problem:
Instance: A set V of variables and a set of clauses C over V .
Question: Does there exist a satisfying truth assignment for
C?
Example 1: V = v1, v2 and C = {{v1, v2 }, {v1 , v2}}
A clause is satisfied when at least one literal in it is TRUE. C
is satisfied when v1 = v2 =TRUE.
Not Satisfiable
Example 2: V = v1, v2,
               C = {{v1, v2}, {v1, v 2}, {v 1}}
Although you try, and you try, and you try and you try, you
can get no satisfaction.
There is no satisfying assigment since v1 must be FALSE
(third clause), so v2 must be FALSE (second clause), but then
the first clause is unsatisfiable!
Satisfiability is Hard
Satisfiability is known/assumed to be a hard problem.
Every top-notch algorithm expert in the world has tried and
failed to come up with a fast algorithm to test whether a given
set of clauses is satisfiable.
Further, many strange and impossible-to-believe things have
been shown to be true if someone in fact did find a fast
satisfiability algorithm.
3-Satisfiability
Instance: A collection of clause C where each clause contains
exactly 3 literals, boolean variable v.
Question: Is there a truth assignment to v so that each clause
is satisfied?
Note that this is a more restricted problem than SAT. If 3-SAT
is NP-complete, it implies SAT is NP-complete but not visa-
versa, perhaps long clauses are what makes SAT difficult?!
After all, 1-Sat is trivial!
3-SAT is NP-Complete
To prove it is complete, we give a reduction from
Sat ∝ 3 − Sat. We will transform each clause independantly
based on its length.
Suppose the clause Ci contains k literals.
 • If k = 1, meaning Ci = {z1 }, create two new variables
   v1, v2 and four new 3-literal clauses:
   {v1, v2, z1}, {v1, v 2, z1 }, {v 1, v2, z1}, {v 1, v 2, z1 }.
   Note that the only way all four of these can be satisfied is
   if z is TRUE.
• If k = 2, meaning {z1, z2}, create one new variable v1 and
  two new clauses: {v1, z1, z2}, {v1 , z1, z2}
• If k = 3, meaning {z1 , z2, z3}, copy into the 3-SAT
  instance as it is.
• If k > 3, meaning {z1, z2, ..., zn}, create n − 3 new
  variables and n − 2 new clauses in a chain: {vi, zi, vi},
  ...
Why does the Chain Work?
If none of the original variables in a clause are TRUE, there
is no way to satisfy all of them using the additional variable:

                (F, F, T ), (F, F, T ), . . . , (F, F, F )
But if any literal is TRUE, we have n − 3 free variables and
n − 3 remaining 3-clauses, so we can satisfy each of them.
(F, F, T ), (F, F, T ), . . . , (F, T, F), . . . , (T, F, F ), (T, F, F )
Any SAT solution will also satisfy the 3-SAT instance and
any 3-SAT solution sets variables giving a SAT solution, so
the problems are equivallent.
4-Sat and 2-Sat
A slight modification to this construction would prove 4-SAT,
or 5-SAT,... also NP-complete.
However, it breaks down when we try to use it for 2-SAT,
since there is no way to stuff anything into the chain of
clauses.
Now that we have shown 3-SAT is NP-complete, we may use
it for further reductions. Since the set of 3-SAT instances
is smaller and more regular than the SAT instances, it will
be easier to use 3-SAT for future reductions. Remember the
direction to reduction!
                   Sat ∝ 3 − Sat ∝ X
A Perpetual Point of Confusion
Note carefully the direction of the reduction.
We must transform every instance of a known NP-complete
problem to an instance of the problem we are interested in. If
we do the reduction the other way, all we get is a slow way
to solve x, by using a subroutine which probably will take
exponential time.
This always is confusing at first - it seems bass-ackwards.
Make sure you understand the direction of reduction now -
and think back to this when you get confused.
Vertex Cover
Instance: A graph G = (V, E), and integer k ≤ V
Question: Is there a subset of at most k vertices such that
every e ∈ E has at least one vertex in the subset?




Here, four of the eight vertices suffice to cover.
It is trivial to find a vertex cover of a graph – just take all
the vertices. The tricky part is to cover with as small a set as
possible.
Vertex cover is NP-complete
To prove completeness, we show reduce 3-SAT to VC. From
a 3-SAT instance with n variables and C clauses, we construct
a graph with 2N + 3C vertices.
For each variable, we create two vertices connected by an
edge:
                                                 ......
                   v1   v1   v2   v2   v3   v3            vn   vn




To cover each of these edges, at least n vertices must be in
the cover, one for each pair.
Clause Gadgets
For each clause, we create three new vertices, one for each
literal in each clause. Connect these in a triangle.
At least two vertices per triangle must be in the cover to take
care of edges in the triangle, for a total of at least 2C vertices.
Finally, we will connect each literal in the flat structure to the
corresponding vertices in the triangles which share the same
literal.
                   v1        v1   v2        v2   v3        v3   v4        v4



                             v3                                 v2




                        v1             v4             v1             v4
Claim: G has a vertex cover of size N + 2C iff S
is Satisfiable
Any cover of G must have at least N + 2C vertices. To show
that our reduction is correct, we must show that:
1. Every satisfying truth assignment gives a cover.
   Select the N vertices cooresponding to the TRUE literals
   to be in the cover. Since it is a satisfying truth assignment,
   at least one of the three cross edges associated with each
   clause must already be covered - pick the other two
   vertices to complete the cover.
2. Every vertex cover gives a satisfying truth assignment.
   Every vertex cover must contain n first stage vertices and
   2C second stage vertices. Let the first stage vertices define
   the truth assignment.
   To give the cover, at least one cross-edge must be covered,
   so the truth assignment satisfies.
Example Reduction
Every SAT defines a cover and Every Cover Truth values for
the SAT!
Example: V1 = V2 = T rue, V3 = V4 = F alse.
            v1        v1    v2    v2   v3        v3   v4        v4



                       v3                             v2




                 v1              v4         v1             v4
Starting from the Right Problem
As you can see, the reductions can be very clever and very
complicated. While theoretically any N P -complete problem
can be reduced to any other one, choosing the correct one
makes finding a reduction much easier.
                     3 − Sat ∝ V C
As you can see, the reductions can be very clever and
complicated. While theoretically any NP-complete problem
will do, choosing the correct one can make it much easier.
Maximum Clique
Instance: A graph G = (V, E) and integer j ≤ v.
Question: Does the graph contain a clique of j vertices, ie. is
there a subset of v of size j such that every pair of vertices in
the subset defines an edge of G?
Example: this graph contains a clique of size 5.
Clique is NP-complete
When talking about graph problems, it is most natural to work
from a graph problem - the only NP-complete one we have is
vertex cover!
If you take a graph and find its vertex cover, the remaining
vertices form an independent set, meaning there are no edges
between any two vertices in the independent set, for if there
were such an edge the rest of the vertices could not be a vertex
cover.
vertex in cover

                            vertex in independant
                            set


Clearly the smallest vertex cover gives the biggest indepen-
dent set, and so the problems are equivallent – Delete the
subset of vertices in one from the total set of vertices to get
the order!
Thus finding the maximum independent set must be NP-
complete!
From Independent Set
In an independent set, there are no edges between two
vertices. In a clique, there are always between two vertices.
Thus if we complement a graph (have an edge iff there was no
edge in the original graph), a clique becomes an independent
set and an independent set becomes a Clique!



                 Max Clique = 5    Max Clique = 2
                 Max IS = 2        Max IS = 5
Punch Line
Thus finding the largest clique is NP-complete:
If V C is a vertex cover in G, then V − V C is a clique in G .
If C is a clique in G, V − C is a vertex cover in G .

More Related Content

PDF
Qkd and de finetti theorem
PPTX
Stochastic Processes Assignment Help
PDF
R04602118121
PDF
Lect 18
PPTX
Mechanical Engineering Assignment Help
PDF
transplantation-isospectral-poster
PDF
Important Cuts and (p,q)-clustering
PPT
lecture 30
Qkd and de finetti theorem
Stochastic Processes Assignment Help
R04602118121
Lect 18
Mechanical Engineering Assignment Help
transplantation-isospectral-poster
Important Cuts and (p,q)-clustering
lecture 30

What's hot (18)

PPTX
Physics Assignment Help
PDF
Bidimensionality
PPTX
Spanning trees & applications
PDF
Iterative Compression
PDF
19 Minimum Spanning Trees
PDF
Treewidth and Applications
PPT
Per4 induction
PPT
Mathematical induction
PPTX
Matlab Assignment Help
PDF
Ki2518101816
PDF
Solve Equations
PPT
Analysis Of Algorithms Ii
PDF
11X1 T14 09 mathematical induction 2 (2010)
PPTX
Mathematical Induction
PPTX
Mathematical induction and divisibility rules
PDF
Paths and Polynomials
PPTX
Principle of mathematical induction
Physics Assignment Help
Bidimensionality
Spanning trees & applications
Iterative Compression
19 Minimum Spanning Trees
Treewidth and Applications
Per4 induction
Mathematical induction
Matlab Assignment Help
Ki2518101816
Solve Equations
Analysis Of Algorithms Ii
11X1 T14 09 mathematical induction 2 (2010)
Mathematical Induction
Mathematical induction and divisibility rules
Paths and Polynomials
Principle of mathematical induction
Ad

Similar to Skiena algorithm 2007 lecture20 satisfiability (20)

PPT
23. Nekateri NP-polni problemi (ang).ppt
PPT
Approx
PDF
Skiena algorithm 2007 lecture21 other reduction
PDF
Bt0080 fundamentals of algorithms2
PPTX
Algorithm_NP-Completeness Proof
PDF
Lect 31_32 NP and Intractability_Part 1.pdf
PPTX
Stochastic Process Exam Help
PPTX
Stochastic Process Assignment Help
PPTX
P, NP and NP-Complete, Theory of NP-Completeness V2
PPTX
Design and analysis of algorithms unit 6 non deterministic polynomial
PPTX
Mathematical Statistics Assignment Help
PPTX
Advanced Modularity Optimization Assignment Help
PPTX
TRAVELING SALESMAN PROBLEM, Divide and Conquer
PPTX
Mathematical Statistics Assignment Help
PDF
Kernelization Basics
PPTX
Backtracking
PDF
Lecture3
PDF
Introduction to the Theory of Computation, Winter 2003 A. Hevia and J. Mao S...
PDF
Algebraic techniques in combinatorics
23. Nekateri NP-polni problemi (ang).ppt
Approx
Skiena algorithm 2007 lecture21 other reduction
Bt0080 fundamentals of algorithms2
Algorithm_NP-Completeness Proof
Lect 31_32 NP and Intractability_Part 1.pdf
Stochastic Process Exam Help
Stochastic Process Assignment Help
P, NP and NP-Complete, Theory of NP-Completeness V2
Design and analysis of algorithms unit 6 non deterministic polynomial
Mathematical Statistics Assignment Help
Advanced Modularity Optimization Assignment Help
TRAVELING SALESMAN PROBLEM, Divide and Conquer
Mathematical Statistics Assignment Help
Kernelization Basics
Backtracking
Lecture3
Introduction to the Theory of Computation, Winter 2003 A. Hevia and J. Mao S...
Algebraic techniques in combinatorics
Ad

More from zukun (20)

PDF
My lyn tutorial 2009
PDF
ETHZ CV2012: Tutorial openCV
PDF
ETHZ CV2012: Information
PDF
Siwei lyu: natural image statistics
PDF
Lecture9 camera calibration
PDF
Brunelli 2008: template matching techniques in computer vision
PDF
Modern features-part-4-evaluation
PDF
Modern features-part-3-software
PDF
Modern features-part-2-descriptors
PDF
Modern features-part-1-detectors
PDF
Modern features-part-0-intro
PDF
Lecture 02 internet video search
PDF
Lecture 01 internet video search
PDF
Lecture 03 internet video search
PDF
Icml2012 tutorial representation_learning
PPT
Advances in discrete energy minimisation for computer vision
PDF
Gephi tutorial: quick start
PDF
EM algorithm and its application in probabilistic latent semantic analysis
PDF
Object recognition with pictorial structures
PDF
Iccv2011 learning spatiotemporal graphs of human activities
My lyn tutorial 2009
ETHZ CV2012: Tutorial openCV
ETHZ CV2012: Information
Siwei lyu: natural image statistics
Lecture9 camera calibration
Brunelli 2008: template matching techniques in computer vision
Modern features-part-4-evaluation
Modern features-part-3-software
Modern features-part-2-descriptors
Modern features-part-1-detectors
Modern features-part-0-intro
Lecture 02 internet video search
Lecture 01 internet video search
Lecture 03 internet video search
Icml2012 tutorial representation_learning
Advances in discrete energy minimisation for computer vision
Gephi tutorial: quick start
EM algorithm and its application in probabilistic latent semantic analysis
Object recognition with pictorial structures
Iccv2011 learning spatiotemporal graphs of human activities

Recently uploaded (20)

PPTX
A Presentation on Artificial Intelligence
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Electronic commerce courselecture one. Pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPTX
Cloud computing and distributed systems.
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Encapsulation theory and applications.pdf
PDF
Machine learning based COVID-19 study performance prediction
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
Programs and apps: productivity, graphics, security and other tools
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Empathic Computing: Creating Shared Understanding
PPTX
Machine Learning_overview_presentation.pptx
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
sap open course for s4hana steps from ECC to s4
A Presentation on Artificial Intelligence
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Electronic commerce courselecture one. Pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Digital-Transformation-Roadmap-for-Companies.pptx
Cloud computing and distributed systems.
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Encapsulation theory and applications.pdf
Machine learning based COVID-19 study performance prediction
“AI and Expert System Decision Support & Business Intelligence Systems”
Building Integrated photovoltaic BIPV_UPV.pdf
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Programs and apps: productivity, graphics, security and other tools
MYSQL Presentation for SQL database connectivity
Empathic Computing: Creating Shared Understanding
Machine Learning_overview_presentation.pptx
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Reach Out and Touch Someone: Haptics and Empathic Computing
sap open course for s4hana steps from ECC to s4

Skiena algorithm 2007 lecture20 satisfiability

  • 1. Lecture 20: Satisfiability Steven Skiena Department of Computer Science State University of New York Stony Brook, NY 11794–4400 http://www.cs.sunysb.edu/∼skiena
  • 2. Problem of the Day Suppose we are given a subroutine which can solve the traveling salesman decision problem in, say, linear time. Give an efficient algorithm to find the actual TSP tour by making a polynomial number of calls to this subroutine.
  • 3. The Main Idea Suppose I gave you the following algorithm to solve the bandersnatch problem: Bandersnatch(G) Convert G to an instance of the Bo-billy problem Y . Call the subroutine Bo-billy on Y to solve this instance. Return the answer of Bo-billy(Y ) as the answer to G. Such a translation from instances of one type of problem to instances of another type such that answers are preserved is called a reduction.
  • 4. What Does this Imply? Now suppose my reduction translates G to Y in O(P (n)): 1. If my Bo-billy subroutine ran in O(P (n)) I can solve the Bandersnatch problem in O(P (n) + P (n )) 2. If I know that Ω(P (n)) is a lower-bound to compute Bandersnatch, then Ω(P (n) − P (n )) must be a lower- bound to compute Bo-billy. The second argument is the idea we use to prove problems hard!
  • 5. Satisfiability Consider the following logic problem: Instance: A set V of variables and a set of clauses C over V . Question: Does there exist a satisfying truth assignment for C? Example 1: V = v1, v2 and C = {{v1, v2 }, {v1 , v2}} A clause is satisfied when at least one literal in it is TRUE. C is satisfied when v1 = v2 =TRUE.
  • 6. Not Satisfiable Example 2: V = v1, v2, C = {{v1, v2}, {v1, v 2}, {v 1}} Although you try, and you try, and you try and you try, you can get no satisfaction. There is no satisfying assigment since v1 must be FALSE (third clause), so v2 must be FALSE (second clause), but then the first clause is unsatisfiable!
  • 7. Satisfiability is Hard Satisfiability is known/assumed to be a hard problem. Every top-notch algorithm expert in the world has tried and failed to come up with a fast algorithm to test whether a given set of clauses is satisfiable. Further, many strange and impossible-to-believe things have been shown to be true if someone in fact did find a fast satisfiability algorithm.
  • 8. 3-Satisfiability Instance: A collection of clause C where each clause contains exactly 3 literals, boolean variable v. Question: Is there a truth assignment to v so that each clause is satisfied? Note that this is a more restricted problem than SAT. If 3-SAT is NP-complete, it implies SAT is NP-complete but not visa- versa, perhaps long clauses are what makes SAT difficult?! After all, 1-Sat is trivial!
  • 9. 3-SAT is NP-Complete To prove it is complete, we give a reduction from Sat ∝ 3 − Sat. We will transform each clause independantly based on its length. Suppose the clause Ci contains k literals. • If k = 1, meaning Ci = {z1 }, create two new variables v1, v2 and four new 3-literal clauses: {v1, v2, z1}, {v1, v 2, z1 }, {v 1, v2, z1}, {v 1, v 2, z1 }. Note that the only way all four of these can be satisfied is if z is TRUE.
  • 10. • If k = 2, meaning {z1, z2}, create one new variable v1 and two new clauses: {v1, z1, z2}, {v1 , z1, z2} • If k = 3, meaning {z1 , z2, z3}, copy into the 3-SAT instance as it is. • If k > 3, meaning {z1, z2, ..., zn}, create n − 3 new variables and n − 2 new clauses in a chain: {vi, zi, vi}, ...
  • 11. Why does the Chain Work? If none of the original variables in a clause are TRUE, there is no way to satisfy all of them using the additional variable: (F, F, T ), (F, F, T ), . . . , (F, F, F ) But if any literal is TRUE, we have n − 3 free variables and n − 3 remaining 3-clauses, so we can satisfy each of them. (F, F, T ), (F, F, T ), . . . , (F, T, F), . . . , (T, F, F ), (T, F, F ) Any SAT solution will also satisfy the 3-SAT instance and any 3-SAT solution sets variables giving a SAT solution, so the problems are equivallent.
  • 12. 4-Sat and 2-Sat A slight modification to this construction would prove 4-SAT, or 5-SAT,... also NP-complete. However, it breaks down when we try to use it for 2-SAT, since there is no way to stuff anything into the chain of clauses. Now that we have shown 3-SAT is NP-complete, we may use it for further reductions. Since the set of 3-SAT instances is smaller and more regular than the SAT instances, it will be easier to use 3-SAT for future reductions. Remember the direction to reduction! Sat ∝ 3 − Sat ∝ X
  • 13. A Perpetual Point of Confusion Note carefully the direction of the reduction. We must transform every instance of a known NP-complete problem to an instance of the problem we are interested in. If we do the reduction the other way, all we get is a slow way to solve x, by using a subroutine which probably will take exponential time. This always is confusing at first - it seems bass-ackwards. Make sure you understand the direction of reduction now - and think back to this when you get confused.
  • 14. Vertex Cover Instance: A graph G = (V, E), and integer k ≤ V Question: Is there a subset of at most k vertices such that every e ∈ E has at least one vertex in the subset? Here, four of the eight vertices suffice to cover. It is trivial to find a vertex cover of a graph – just take all the vertices. The tricky part is to cover with as small a set as possible.
  • 15. Vertex cover is NP-complete To prove completeness, we show reduce 3-SAT to VC. From a 3-SAT instance with n variables and C clauses, we construct a graph with 2N + 3C vertices. For each variable, we create two vertices connected by an edge: ...... v1 v1 v2 v2 v3 v3 vn vn To cover each of these edges, at least n vertices must be in the cover, one for each pair.
  • 16. Clause Gadgets For each clause, we create three new vertices, one for each literal in each clause. Connect these in a triangle. At least two vertices per triangle must be in the cover to take care of edges in the triangle, for a total of at least 2C vertices. Finally, we will connect each literal in the flat structure to the corresponding vertices in the triangles which share the same literal. v1 v1 v2 v2 v3 v3 v4 v4 v3 v2 v1 v4 v1 v4
  • 17. Claim: G has a vertex cover of size N + 2C iff S is Satisfiable Any cover of G must have at least N + 2C vertices. To show that our reduction is correct, we must show that: 1. Every satisfying truth assignment gives a cover. Select the N vertices cooresponding to the TRUE literals to be in the cover. Since it is a satisfying truth assignment, at least one of the three cross edges associated with each clause must already be covered - pick the other two vertices to complete the cover.
  • 18. 2. Every vertex cover gives a satisfying truth assignment. Every vertex cover must contain n first stage vertices and 2C second stage vertices. Let the first stage vertices define the truth assignment. To give the cover, at least one cross-edge must be covered, so the truth assignment satisfies.
  • 19. Example Reduction Every SAT defines a cover and Every Cover Truth values for the SAT! Example: V1 = V2 = T rue, V3 = V4 = F alse. v1 v1 v2 v2 v3 v3 v4 v4 v3 v2 v1 v4 v1 v4
  • 20. Starting from the Right Problem As you can see, the reductions can be very clever and very complicated. While theoretically any N P -complete problem can be reduced to any other one, choosing the correct one makes finding a reduction much easier. 3 − Sat ∝ V C As you can see, the reductions can be very clever and complicated. While theoretically any NP-complete problem will do, choosing the correct one can make it much easier.
  • 21. Maximum Clique Instance: A graph G = (V, E) and integer j ≤ v. Question: Does the graph contain a clique of j vertices, ie. is there a subset of v of size j such that every pair of vertices in the subset defines an edge of G? Example: this graph contains a clique of size 5.
  • 22. Clique is NP-complete When talking about graph problems, it is most natural to work from a graph problem - the only NP-complete one we have is vertex cover! If you take a graph and find its vertex cover, the remaining vertices form an independent set, meaning there are no edges between any two vertices in the independent set, for if there were such an edge the rest of the vertices could not be a vertex cover.
  • 23. vertex in cover vertex in independant set Clearly the smallest vertex cover gives the biggest indepen- dent set, and so the problems are equivallent – Delete the subset of vertices in one from the total set of vertices to get the order! Thus finding the maximum independent set must be NP- complete!
  • 24. From Independent Set In an independent set, there are no edges between two vertices. In a clique, there are always between two vertices. Thus if we complement a graph (have an edge iff there was no edge in the original graph), a clique becomes an independent set and an independent set becomes a Clique! Max Clique = 5 Max Clique = 2 Max IS = 2 Max IS = 5
  • 25. Punch Line Thus finding the largest clique is NP-complete: If V C is a vertex cover in G, then V − V C is a clique in G . If C is a clique in G, V − C is a vertex cover in G .