Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Introduction to NP-Completeness

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

We have been writing about efficient algorithms to solve complex problems, like shortest path, Euler graph, minimum spanning tree, etc. Those were all success stories of algorithm designers. In this post, failure stories of computer science are discussed. 

Can all computational problems be solved by a computer? There are computational problems that can not be solved by algorithms even with unlimited time. For example Turing Halting problem (Given a program and an input, whether the program will eventually halt when run with that input, or will run forever). Alan Turing proved that a general algorithm to solve the halting problem for all possible program-input pairs cannot exist. A key part of the proof is, that the Turing machine was used as a mathematical definition of a computer and program (Source Halting Problem). 
Status of NP-Complete problems is another failure story, NP-complete problems are problems whose status is unknown. No polynomial-time algorithm has yet been discovered for any NP-complete problem, nor has anybody yet been able to prove that no polynomial-time algorithm exists for any of them. The interesting part is, that if any one of the NP-complete problems can be solved in polynomial time, then all of them can be solved. 
 

What are NP, P, NP-complete, and NP-Hard problems? 
P is a set of problems that can be solved by a deterministic Turing machine in Polynomial-time. 

NP is a set of decision problems that can be solved by a Non-deterministic Turing Machine in Polynomial-time. P is a subset of NP (any problem that can be solved by a deterministic machine in polynomial time can also be solved by a non-deterministic machine in polynomial time). 
Informally, NP is a set of decision problems that can be solved by a polynomial-time via a “Lucky Algorithm”, a magical algorithm that always makes a right guess among the given set of choices (Source Ref 1). 

NP-complete problems are the hardest problems in the NP set.  A decision problem L is NP-complete if: 
1) L is in NP (Any given solution for NP-complete problems can be verified quickly, but there is no efficient known solution). 
2) Every problem in NP is reducible to L in polynomial time (Reduction is defined below). 

A problem is NP-Hard if it follows property 2 mentioned above, and doesn’t need to follow property 1. Therefore, the NP-Complete set is also a subset of the NP-Hard set. 

NP, P, NP-complete and NP-Hard problems

Decision vs Optimization Problems 
NP-completeness applies to the realm of decision problems.  It was set up this way because it’s easier to compare the difficulty of decision problems than that of optimization problems.   In reality, though, being able to solve a decision problem in polynomial time will often permit us to solve the corresponding optimization problem in polynomial time (using a polynomial number of calls to the decision problem). So, discussing the difficulty of decision problems is often really equivalent to discussing the difficulty of optimization problems. (Source Ref 2). 
For example, consider the vertex cover problem (Given a graph, find out the minimum sized vertex set that covers all edges). It is an optimization problem. The corresponding decision problem is, given undirected graph G and k, is there a vertex cover of size k? 

What is Reduction? 
Let L 1 and L 2 be two decision problems. Suppose algorithm A 2 solves L 2. That is, if y is an input for L 2 then algorithm A 2 will answer Yes or No depending upon whether y belongs to L 2 or not.
The idea is to find a transformation from L 1 to L 2 so that algorithm A 2 can be part of algorithm A 1 to solve L 1.
 

 

Learning reduction, in general, is very important. For example, if we have library functions to solve certain problems and if we can reduce a new problem to one of the solved problems, we save a lot of time. Consider the example of a problem where we have to find the minimum product path in a given directed graph where the product of the path is the multiplication of weights of edges along the path. If we have code for Dijkstra’s algorithm to find the shortest path, we can take the log of all weights and use Dijkstra’s algorithm to find the minimum product path rather than writing a fresh code for this new problem.

How to prove that a given problem is NP-complete? 
From the definition of NP-complete, it appears impossible to prove that a problem L is NP-Complete.  By definition, it requires us to that show every problem in NP is polynomial time reducible to L.   Fortunately, there is an alternate way to prove it.   The idea is to take a known NP-Complete problem and reduce it to L.  If a polynomial-time reduction is possible, we can prove that L is NP-Complete by transitivity of reduction (If an NP-Complete problem is reducible to L in polynomial time, then all problems are reducible to L in polynomial time). 

What was the first problem proved as NP-Complete? 
There must be some first NP-Complete problem proved by the definition of NP-Complete problems.  SAT (Boolean satisfiability problem) is the first NP-Complete problem proved by Cook (See CLRS book for proof). 

It is always useful to know about NP-Completeness even for engineers. Suppose you are asked to write an efficient algorithm to solve an extremely important problem for your company. After a lot of thinking, you can only come up exponential time approach which is impractical. If you don’t know about NP-Completeness, you can only say that I could not come up with an efficient algorithm. If you know about NP-Completeness and prove that the problem is NP-complete, you can proudly say that the polynomial-time solution is unlikely to exist. If there is a polynomial-time solution possible, then that solution solves a big problem of computer science many scientists have been trying for years. 

We will soon be discussing more NP-Complete problems and their proof for NP-Completeness. 

References: 
MIT Video Lecture on Computational Complexity 
Introduction to Algorithms 3rd Edition by Clifford Stein, Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest 
http://www.ics.uci.edu/~eppstein/161/960312.html 

Please write comments if you find anything incorrect, or if you want to share more information about the topic discussed above
 


My Personal Notes arrow_drop_up
Last Updated : 06 Jun, 2023
Like Article
Save Article
Similar Reads
Related Tutorials