Presentation is loading. Please wait.

Presentation is loading. Please wait.

Prove this problem is in NP

Similar presentations


Presentation on theme: "Prove this problem is in NP"— Presentation transcript:

1 Prove this problem is in NP
3-COLOURING: Input: Graph G Question: Does there exist a way to 3-colour the vertices of G so that adjacent vertices are different colours? 1.What could you use for a certificate for the 3-colouring problem? 2. Give the pseudo code for a polynomial time algorithm for checking your certificate.

2 Announcements: Assignment #5 has been posted. Due Tues. Dec. 7 at 1pm. Slip it under my office door if I am not in my office when you come by. I have indicated on your #4 (or on a blank sheet if you did not hand in #4) the grade you need on #5 to pass the assignments so you can write the final exam. No class on Friday Dec. 3: National Day of Remembrance and Action on Violence Against Women. I am away at a conference Dec. 3-6 (no office hours). Old finals- available from our web pages. Final Exam tutorial: Thurs. Dec. 9, 5:30pm, ECS 116.

3 SAT (Satisfiability) Variables: u1, u2, u3, ... uk.
A literal is a variable ui or the negation of a variable ¬ ui. If u is set to true then ¬ u is false and if u is set to false then ¬ u is true. A clause is a set of literals. A clause is true if at least one of the literals in the clause is true. The input to SAT is a collection of clauses.

4 SAT (Satisfiability) The output is the answer to: Is there an assignment of true/false to the variables so that every clause is satisfied (satisfied means the clause is true)? If the answer is yes, such an assignment of the variables is called a truth assignment. SAT is in NP: Certificate is true/false value for each variable in satisfying assignment.

5 If SAT is solvable in polynomial time, then so is HAMILTON CYCLE .
This is on p. 303 in text but there are numerous typos. Use my notes not text. Graph G has n vertices 0, 1, 2, …, n-1. Variables: xi, j : 0 ≤ i, j ≤ n-1 Meaning: Node i is in position j in Hamilton cycle.

6 Variables: xi, j : 0 ≤ i, j ≤ n-1 Meaning- Node i is in position j in Ham. cycle.
Conditions to ensure a Hamilton cycle: Exactly one node appears in position j. At least one node appears in position j. For each j, add a clause: (x0, j OR x1,j OR x2, j OR … xn-1, j ) (b) At most one node appears in position j. For each pair of vertices i,k add a clause (not xi, j OR not xk,j )

7 Variables: xi, j : 0 ≤ i, j ≤ n-1 Meaning- Node i is in position j in Ham. cycle.
2. Vertex i occurs exactly once on the cycle. (a) Vertex i occurs at least once. For each i, add a clause: (xi, 0 OR xi,1 OR xi, 2 OR … xi, n-1 ) (b) Vertex i occurs at most once. For each vertex i and pair of positions j,k add a clause (not xi, j OR not xi,k )

8 Variables: xi, j : 0 ≤ i, j ≤ n-1 Meaning- Node i is in position j in Ham. cycle.
3. Consecutive vertices of the cycle are connected by an edge of the graph. For each edge (i, k) which is missing from the graph and for each j add a clause (not xi, j OR not xk,j+1 mod n )

9 Known: SAT is NP-complete.
We just proved that if SAT is solvable in polynomial time, then so is HAMILTON CYCLE. Is this a proof that HAMILTON CYCLE is NP-complete?

10 Known: SAT is NP-complete.
We showed that if SAT is solvable in polynomial time, then so is HAMILTON CYCLE. Is this a proof that HAMILTON CYCLE is NP-complete? NO. Wrong direction. We would have to show that you can solve SAT in polynomial time using HAMILTON CYCLE instead. Another example: proving you can solve 2-SAT using a SAT solver does not mean 2-SAT is hard.

11 A problem Q in NP is NP-complete if the existence of a polynomial time algorithm for Q implies the existence of a polynomial time algorithm for all problems in NP. How do we prove SAT is NP-complete? Cook’s theorem: SAT is NP-complete.

12 Proving problems are NP-complete.
Assuming SAT is NP-complete, we prove that 3-SAT is NP-complete. We use the fact that 3-SAT is NP-complete to prove that VERTEX COVER is NP-complete.

13

14 3-SAT- each clause must contain exactly 3 variables (assignment- at most 3).
Given: SAT is NP-complete (proof later) Theorem: 3-SAT is NP-Complete. The first step in any NP-completeness proof is to argue that the problem is in NP. The problem 3-SAT is a yes/no question. Certificate: truth assignment, can be checked in polynomial time. Next, we show that a polynomial time algorithm for 3-SAT implies the existence of one for SAT.

15 To convert a SAT problem to 3-SAT:
1.Clauses of size 1. SAT: {z} 3-SAT: {z, y1, y2}, {z, ¬ y1, y2}, {z, y1, ¬ y2}, {z, ¬ y1, ¬ y2} y1 and y2 are new variables.

16 2. Clauses of size 2. SAT: {z1, z2} 3-SAT: {z1, z2, y}, {z1, z2, ¬ y} y is a new variable. 3. Clauses of size 3. Leave these as they are since they are already acceptable for 3-SAT.

17 Clauses of size 4 or more. SAT: {z1, z2, z3, ... zk}, k>3 3-SAT: { z1, z2, y1}, {¬ y1, z3, y2}, {¬ y2, z4, y3}, {¬ yk-4, zk-2, yk-3}, {¬ yk-3, zk-1, zk} y1, y2, ... yk-3, are new variables.

18 This does not constitute a proof of NP-completeness unless we can argue that the size of the new 3-SAT problem problem is polynomially bounded by the size of the old SAT problem. Consider each case: Size of clause # new literals size before size after 1 2 12 6 3 k ≥ 4 k-3 k k + 2(k-3) In all cases, the size after is at most 12 times the original problem size.

19 2-SAT: All clauses have at most 2 literals.
There is a linear time algorithm for 2-SAT so 2-SAT is in P. The 3-SAT problem is as hard as SAT but unless P=NP, 2-SAT is easier than 3-SAT or SAT.

20 A set S  V(G) is a vertex cover if every edge of G has at least one vertex in S.
Given: G, k Question: Does G have a vertex cover of order k? Blue: vertex cover Red: independent set

21 Theorem: Vertex Cover is NP-complete.
Proof: Certificate: vertex numbers of vertices in the vertex cover. To check: for (i=0; i < n; i++) cover[i]= 0; for (i=0; i < k; i++) { scanf(“%d”, &t); if (t < 0 || t >= n) {printf(“Bad cover.\n”); exit(0);} else cover[t]= 1; } Read in certificate.

22 Make sure each edge is covered.
for (i=0; i < n; i++) { for (j=i+1; j< n; j++) { if (A[i][j]){ if (cover[i]==0 && cover[j]==0) { printf(“Bad cover.\n”); exit(0); } } printf(“Good cover\n”); Make sure each edge is covered.

23 To solve 3-SAT using vertex cover: 1. For each literal xi, include:
2. For each clause (xi, xj, xk) use a gadget: Each white vertex connects to the corresponding green one. Pictures from:

24 3-SAT Problem: (x1 or x1 or x2) AND (¬x1 or ¬ x2 or ¬ x2) AND (¬x1 or x2 or x2)

25 At least one vertex from
is in the vertex cover. For each gadget, at least 2 vertices are in the vertex cover: Number of variables: n Number of clauses: m When is there a vertex cover of order n + 2m?

26 Put vertices corresponding to true variables in the vertex cover.

27 Satisfying assignment: Each clause has at least one true variable
Satisfying assignment: Each clause has at least one true variable. Put two other vertices into the vertex cover: So each truth assignment corresponds to a vertex cover of order n + 2m.

28 Any vertex cover of order n + 2m corresponds to a satisfying assignment because we can only select at most one of x and ¬x (these are the true variables). The true variables must satisfy each clause since at most 2 vertices can be selected from each clause gadget.

29 A problem Q in NP is NP-complete if the existence of a polynomial time algorithm for Q implies the existence of a polynomial time algorithm for all problems in NP. How do we prove SAT is NP-complete? Cook’s theorem: SAT is NP-complete.


Download ppt "Prove this problem is in NP"

Similar presentations


Ads by Google