Lecture 4: NP and beyond Arijit Bishnu 04.02.2010 Reductions and NP - - PowerPoint PPT Presentation

lecture 4 np and beyond
SMART_READER_LITE
LIVE PREVIEW

Lecture 4: NP and beyond Arijit Bishnu 04.02.2010 Reductions and NP - - PowerPoint PPT Presentation

Reductions and NP -completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP Lecture 4: NP and beyond Arijit Bishnu 04.02.2010 Reductions and NP -completeness Decision versus Search Another Class: coNP The Classes EXP


slide-1
SLIDE 1

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Lecture 4: NP and beyond

Arijit Bishnu 04.02.2010

slide-2
SLIDE 2

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Outline

1 Reductions and NP-completeness 2 Decision versus Search 3 Another Class: coNP 4 The Classes EXP and NEXP

slide-3
SLIDE 3

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Outline

1 Reductions and NP-completeness 2 Decision versus Search 3 Another Class: coNP 4 The Classes EXP and NEXP

slide-4
SLIDE 4

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

INTEGER PROGRAMMING (IPROG) is NP-complete

For a set of linear inequalities with rational coefficients over variables x1, x2, . . . , xn is there an assignment of integer numbers in {0, 1, . . .} to x1, x2, . . . , xn that satisfies it. IPROG ∈ NP Lemma SAT ≤P IPROG

slide-5
SLIDE 5

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

INTEGER PROGRAMMING (IPROG) is NP-complete

For a set of linear inequalities with rational coefficients over variables x1, x2, . . . , xn is there an assignment of integer numbers in {0, 1, . . .} to x1, x2, . . . , xn that satisfies it. IPROG ∈ NP Lemma SAT ≤P IPROG Proof

slide-6
SLIDE 6

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

INTEGER PROGRAMMING (IPROG) is NP-complete

For a set of linear inequalities with rational coefficients over variables x1, x2, . . . , xn is there an assignment of integer numbers in {0, 1, . . .} to x1, x2, . . . , xn that satisfies it. IPROG ∈ NP Lemma SAT ≤P IPROG Proof Add the constraints 0 ≤ xi ≤ 1 for every i to ensure that the feasible assignments to the variables are only 0 and 1.

slide-7
SLIDE 7

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

INTEGER PROGRAMMING (IPROG) is NP-complete

For a set of linear inequalities with rational coefficients over variables x1, x2, . . . , xn is there an assignment of integer numbers in {0, 1, . . .} to x1, x2, . . . , xn that satisfies it. IPROG ∈ NP Lemma SAT ≤P IPROG Proof Add the constraints 0 ≤ xi ≤ 1 for every i to ensure that the feasible assignments to the variables are only 0 and 1. Now, express every clause as an inequality. As an example, the clause x1 ∨ x2 ∨ x3 can be expressed as (1 − x1) + x2 + (1 − x3) ≥ 1.

slide-8
SLIDE 8

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

HAMILTONIAN CYCLE (dHAMCYCLE) is NP-complete

Let dHAMCYCLE denote the set of all directed graphs that contain a cycle that visits each vertex exactly once. dHAMCYCLE ∈ NP. Lemma 3SAT ≤P dHAMCYCLE

slide-9
SLIDE 9

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

HAMILTONIAN CYCLE (dHAMCYCLE) is NP-complete

Let dHAMCYCLE denote the set of all directed graphs that contain a cycle that visits each vertex exactly once. dHAMCYCLE ∈ NP. Lemma 3SAT ≤P dHAMCYCLE Proof Construct the graph as follows. Show that a satisfying assignment to 3SAT implies a HAMCYCLE and vice versa.

slide-10
SLIDE 10

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Outline

1 Reductions and NP-completeness 2 Decision versus Search 3 Another Class: coNP 4 The Classes EXP and NEXP

slide-11
SLIDE 11

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Decision versus Search

Any search problem is harder than the corr. decision problem.

slide-12
SLIDE 12

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Decision versus Search

Any search problem is harder than the corr. decision problem. If P=NP, then both search and decision problems cannot be solved for an NP-complete problem.

slide-13
SLIDE 13

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Decision versus Search

Any search problem is harder than the corr. decision problem. If P=NP, then both search and decision problems cannot be solved for an NP-complete problem. If P=NP, then search version of the corr. decision problem can be solved in polynomial time.

slide-14
SLIDE 14

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Decision versus Search

Any search problem is harder than the corr. decision problem. If P=NP, then both search and decision problems cannot be solved for an NP-complete problem. If P=NP, then search version of the corr. decision problem can be solved in polynomial time. Theorem Suppose that P=NP. Then for every language L, ∃ a polynomial time TM B that on input x ∈ L outputs a certificate for x. That is, as per definition of class NP, x ∈ L iff ∃u ∈ {0, 1}p(|x|) s.t. M(x, u) = 1 where p is some polynomial and M is a poly-time TM, then on input x ∈ L, B(x) will be a string u ∈ {0, 1}p(|x|) satisfying M(x, B(x)) = 1.

slide-15
SLIDE 15

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Proof of the Theorem for SAT

Proof We show that given an algorithm A that decides SAT, we can design an algorithm B.

slide-16
SLIDE 16

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Proof of the Theorem for SAT

Proof We show that given an algorithm A that decides SAT, we can design an algorithm B. B finds a satisfying assignment for a satisfiable CNF formula ϕ with n variables using 2n + 1 calls to A and some additional poly-time computation.

slide-17
SLIDE 17

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Proof of the Theorem for SAT

Proof We show that given an algorithm A that decides SAT, we can design an algorithm B. B finds a satisfying assignment for a satisfiable CNF formula ϕ with n variables using 2n + 1 calls to A and some additional poly-time computation. First, use A to check if ϕ is satisfiable.

slide-18
SLIDE 18

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Proof of the Theorem for SAT

Proof We show that given an algorithm A that decides SAT, we can design an algorithm B. B finds a satisfying assignment for a satisfiable CNF formula ϕ with n variables using 2n + 1 calls to A and some additional poly-time computation. First, use A to check if ϕ is satisfiable. If yes, set x1 = 1 and x1 = 0 in ϕ. This shortens the formula to using n − 1 variables and can be done in poly-time.

slide-19
SLIDE 19

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Proof of the Theorem for SAT

Proof We show that given an algorithm A that decides SAT, we can design an algorithm B. B finds a satisfying assignment for a satisfiable CNF formula ϕ with n variables using 2n + 1 calls to A and some additional poly-time computation. First, use A to check if ϕ is satisfiable. If yes, set x1 = 1 and x1 = 0 in ϕ. This shortens the formula to using n − 1 variables and can be done in poly-time. Use A to decide which one of the two is satisfiable. Say, the first one is satisfiable. Henceforth, fix x1 = 1 and continue.

slide-20
SLIDE 20

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Proof of the Theorem for SAT

Proof We show that given an algorithm A that decides SAT, we can design an algorithm B. B finds a satisfying assignment for a satisfiable CNF formula ϕ with n variables using 2n + 1 calls to A and some additional poly-time computation. First, use A to check if ϕ is satisfiable. If yes, set x1 = 1 and x1 = 0 in ϕ. This shortens the formula to using n − 1 variables and can be done in poly-time. Use A to decide which one of the two is satisfiable. Say, the first one is satisfiable. Henceforth, fix x1 = 1 and continue. Continue this for n variables while ensuring that each intermediate formula is satisfiable. Thus, the final assignment to the variables satisfies ϕ. In all 2n + 1 calls to A were made.

slide-21
SLIDE 21

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Outline

1 Reductions and NP-completeness 2 Decision versus Search 3 Another Class: coNP 4 The Classes EXP and NEXP

slide-22
SLIDE 22

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Understanding Complement Problems

Complement of a Language If L ⊆ {0, 1}∗ is a language, we denote by L the complement of L. That is L = {0, 1}∗ \ L.

slide-23
SLIDE 23

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Understanding Complement Problems

Complement of a Language If L ⊆ {0, 1}∗ is a language, we denote by L the complement of L. That is L = {0, 1}∗ \ L. Example Let L be: Is a graph G 2-colorable? Then, L is: Is G not 2-colorable?

slide-24
SLIDE 24

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Understanding Complement Problems

Complement of a Language If L ⊆ {0, 1}∗ is a language, we denote by L the complement of L. That is L = {0, 1}∗ \ L. Example Let L be: Is a graph G 2-colorable? Then, L is: Is G not 2-colorable? Example Let L be: SAT. Then, L is: Is there no assignment of truth values to satisfy a CNF ϕ? i.e., Is ϕ unsatisfiable?

slide-25
SLIDE 25

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Closure under Complementation

Definition: Closed under Complementation A class C is closed under complementation if for a problem A ∈ C, A ∈ C

slide-26
SLIDE 26

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Closure under Complementation

Definition: Closed under Complementation A class C is closed under complementation if for a problem A ∈ C, A ∈ C Theorem The class P is closed under complementation, i.e. coP=P.

slide-27
SLIDE 27

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Closure under Complementation

Definition: Closed under Complementation A class C is closed under complementation if for a problem A ∈ C, A ∈ C Theorem The class P is closed under complementation, i.e. coP=P. Definition: coNP coNP = {L | L ∈ NP}

slide-28
SLIDE 28

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Closure under Complementation

Definition: Closed under Complementation A class C is closed under complementation if for a problem A ∈ C, A ∈ C Theorem The class P is closed under complementation, i.e. coP=P. Definition: coNP coNP = {L | L ∈ NP} What about NP and coNP?

slide-29
SLIDE 29

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Understanding coNP

A Proof for SAT ∈ NP Design an NDTM as follows. On input ϕ, the machine guesses an assignment c.

slide-30
SLIDE 30

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Understanding coNP

A Proof for SAT ∈ NP Design an NDTM as follows. On input ϕ, the machine guesses an assignment c. If c does not satisfy ϕ, then it accepts; and if it satisfies ϕ then it halts without accepting.

slide-31
SLIDE 31

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Understanding coNP

A Proof for SAT ∈ NP Design an NDTM as follows. On input ϕ, the machine guesses an assignment c. If c does not satisfy ϕ, then it accepts; and if it satisfies ϕ then it halts without accepting. Does this NDTM do the job?

slide-32
SLIDE 32

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Understanding coNP

A Proof for SAT ∈ NP Design an NDTM as follows. On input ϕ, the machine guesses an assignment c. If c does not satisfy ϕ, then it accepts; and if it satisfies ϕ then it halts without accepting. Does this NDTM do the job? NO, because it accepts every unsatisfiable ϕ but it also accepts satisfiable formulae, e.g. every formula that has a single unsatisfying assignment and that was the guess. So, the proof is wrong.

slide-33
SLIDE 33

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Understanding coNP

A Proof for SAT ∈ NP Design an NDTM as follows. On input ϕ, the machine guesses an assignment c. If c does not satisfy ϕ, then it accepts; and if it satisfies ϕ then it halts without accepting. Does this NDTM do the job? NO, because it accepts every unsatisfiable ϕ but it also accepts satisfiable formulae, e.g. every formula that has a single unsatisfying assignment and that was the guess. So, the proof is wrong. What do we take home? NP and coNP are not that simply related.

slide-34
SLIDE 34

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Understanding coNP

Recall Definition of class NP A language L ⊆ {0, 1}∗ is in NP if there exists a polynomial p : N → N and a polynomial-time TM M such that for every x ∈ {0, 1}∗, x ∈ L ⇐ ⇒ ∃u ∈ {0, 1}p(|x|) such that M(x, u) = 1

slide-35
SLIDE 35

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Understanding coNP

Recall Definition of class NP A language L ⊆ {0, 1}∗ is in NP if there exists a polynomial p : N → N and a polynomial-time TM M such that for every x ∈ {0, 1}∗, x ∈ L ⇐ ⇒ ∃u ∈ {0, 1}p(|x|) such that M(x, u) = 1 Simply Speaking An input string x is a YES instance iff ∃ a short u such that M(x, u) = 1.

slide-36
SLIDE 36

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Understanding coNP

Recall Definition of class NP A language L ⊆ {0, 1}∗ is in NP if there exists a polynomial p : N → N and a polynomial-time TM M such that for every x ∈ {0, 1}∗, x ∈ L ⇐ ⇒ ∃u ∈ {0, 1}p(|x|) such that M(x, u) = 1 Simply Speaking An input string x is a YES instance iff ∃ a short u such that M(x, u) = 1. Negate the above An input string x is a NO instance iff ∀ short u, it is the case that M(x, u) = 0.

slide-37
SLIDE 37

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

An Alternate Definition of coNP

Another Definition of coNP For every L ⊆ {0, 1}∗, we say that L ∈ coNP if there exists a polynomial p : N → N and a polynomial-time TM M such that for every x ∈ {0, 1}∗, x ∈ L ⇐ ⇒ ∀u ∈ {0, 1}p(|x|) such that M(x, u) = 0 [Note the use of ∀ in coNP definition instead of ∃ in NP definition]

slide-38
SLIDE 38

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

An Alternate Definition of coNP

Another Definition of coNP For every L ⊆ {0, 1}∗, we say that L ∈ coNP if there exists a polynomial p : N → N and a polynomial-time TM M such that for every x ∈ {0, 1}∗, x ∈ L ⇐ ⇒ ∀u ∈ {0, 1}p(|x|) such that M(x, u) = 0 [Note the use of ∀ in coNP definition instead of ∃ in NP definition] Definition: coNP-complete A language is coNP-complete if it ∈ coNP and every coNP language is poly-time reducible to it.

slide-39
SLIDE 39

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exploring Relations between P, NP and coNP

Lemma P ⊆ NP ∩ coNP

slide-40
SLIDE 40

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exploring Relations between P, NP and coNP

Lemma P ⊆ NP ∩ coNP Proof coP (= P) ⊆ coNP. So, the result follows.

slide-41
SLIDE 41

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exploring Relations between P, NP and coNP

Lemma P ⊆ NP ∩ coNP Proof coP (= P) ⊆ coNP. So, the result follows. Good characterizations and NP ∩ coNP If L ∈ NP ∩ coNP, then L has the following property:

slide-42
SLIDE 42

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exploring Relations between P, NP and coNP

Lemma P ⊆ NP ∩ coNP Proof coP (= P) ⊆ coNP. So, the result follows. Good characterizations and NP ∩ coNP If L ∈ NP ∩ coNP, then L has the following property: For a YES answer, there is a short proof.

slide-43
SLIDE 43

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exploring Relations between P, NP and coNP

Lemma P ⊆ NP ∩ coNP Proof coP (= P) ⊆ coNP. So, the result follows. Good characterizations and NP ∩ coNP If L ∈ NP ∩ coNP, then L has the following property: For a YES answer, there is a short proof. For a NO answer, there is also a short proof.

slide-44
SLIDE 44

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exploring Relations between P, NP and coNP

Lemma P ⊆ NP ∩ coNP Proof coP (= P) ⊆ coNP. So, the result follows. Good characterizations and NP ∩ coNP If L ∈ NP ∩ coNP, then L has the following property: For a YES answer, there is a short proof. For a NO answer, there is also a short proof. Look at the decision version of Max-Flow problem.

slide-45
SLIDE 45

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exploring Relations between P, NP and coNP

Lemma P ⊆ NP ∩ coNP Proof coP (= P) ⊆ coNP. So, the result follows. Good characterizations and NP ∩ coNP If L ∈ NP ∩ coNP, then L has the following property: For a YES answer, there is a short proof. For a NO answer, there is also a short proof. Look at the decision version of Max-Flow problem. There is a short proof of the YES answer via Max-Flow algorithm and there is also a short proof of the NO answer via exhibiting a cut.

slide-46
SLIDE 46

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exploring Relations between P, NP and coNP

Is P = NP ∩ coNP? So, is P = NP ∩ coNP? No one knows till now. Neither there is any strong opinion on this.

slide-47
SLIDE 47

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exploring Relations between P, NP and coNP

Is P = NP ∩ coNP? So, is P = NP ∩ coNP? No one knows till now. Neither there is any strong opinion on this. What about the relation between NP and coNP?

slide-48
SLIDE 48

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exploring Relations between P, NP and coNP

Is P = NP ∩ coNP? So, is P = NP ∩ coNP? No one knows till now. Neither there is any strong opinion on this. What about the relation between NP and coNP? People believe NP = coNP just like the belief of P = NP.

slide-49
SLIDE 49

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exploring Relations between P, NP and coNP

Is P = NP ∩ coNP? So, is P = NP ∩ coNP? No one knows till now. Neither there is any strong opinion on this. What about the relation between NP and coNP? People believe NP = coNP just like the belief of P = NP. The reason is: It is difficult to believe that as there exists short proofs of YES instances, there will also exist short proofs of the NO instances.

slide-50
SLIDE 50

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exploring Relations between P, NP and coNP

Is NP = coNP? Proving this would be a bigger step than proving P = NP. The next theorem shows that. Theorem If NP = coNP, then P = NP.

slide-51
SLIDE 51

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exploring Relations between P, NP and coNP

Is NP = coNP? Proving this would be a bigger step than proving P = NP. The next theorem shows that. Theorem If NP = coNP, then P = NP. Proof (via the contrapositive, i.e. P = NP = ⇒ NP = coNP)

slide-52
SLIDE 52

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exploring Relations between P, NP and coNP

Is NP = coNP? Proving this would be a bigger step than proving P = NP. The next theorem shows that. Theorem If NP = coNP, then P = NP. Proof (via the contrapositive, i.e. P = NP = ⇒ NP = coNP) L ∈ NP = ⇒ L ∈ P = ⇒ L ∈ P = ⇒ L ∈ NP = ⇒ L ∈ coNP.

slide-53
SLIDE 53

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exploring Relations between P, NP and coNP

Is NP = coNP? Proving this would be a bigger step than proving P = NP. The next theorem shows that. Theorem If NP = coNP, then P = NP. Proof (via the contrapositive, i.e. P = NP = ⇒ NP = coNP) L ∈ NP = ⇒ L ∈ P = ⇒ L ∈ P = ⇒ L ∈ NP = ⇒ L ∈ coNP. L ∈ coNP = ⇒ L ∈ NP = ⇒ L ∈ P = ⇒ L ∈ P = ⇒ L ∈ NP.

slide-54
SLIDE 54

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Outline

1 Reductions and NP-completeness 2 Decision versus Search 3 Another Class: coNP 4 The Classes EXP and NEXP

slide-55
SLIDE 55

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exponential Analogue of P and NP

Definition: The Class EXP EXP =

c≥0 DTIME(2nc)

slide-56
SLIDE 56

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exponential Analogue of P and NP

Definition: The Class EXP EXP =

c≥0 DTIME(2nc)

Definition: The Class NEXP NEXP =

c≥0 NTIME(2nc)

slide-57
SLIDE 57

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exponential Analogue of P and NP

Definition: The Class EXP EXP =

c≥0 DTIME(2nc)

Definition: The Class NEXP NEXP =

c≥0 NTIME(2nc)

Lemma P ⊆ NP ⊆ EXP ⊆ NEXP

slide-58
SLIDE 58

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Exponential Analogue of P and NP

Definition: The Class EXP EXP =

c≥0 DTIME(2nc)

Definition: The Class NEXP NEXP =

c≥0 NTIME(2nc)

Lemma P ⊆ NP ⊆ EXP ⊆ NEXP Proof Trivial.

slide-59
SLIDE 59

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Interplay of EXP, NEXP and P, NP

Theorem If EXP = NEXP, then P = NP

slide-60
SLIDE 60

Reductions and NP-completeness Decision versus Search Another Class: coNP The Classes EXP and NEXP

Interplay of EXP, NEXP and P, NP

Theorem If EXP = NEXP, then P = NP Proof (via the contrapositive, i.e. P = NP = ⇒ EXP = NEXP) Left as an exercise.