I thought that in proving that the P problem is NP-Complete, we should have reduced the known NPC problem to P. But, looking at the solution to the Independent Set problem, it seems like this is not the case.
To prove that the independent set NP-Complete, you take the graph G, find its inverse G ', and then calculate CLIQUE (G'). But, this is done the other way around: it accepts the problem P I DO NOT know if it is an NPC, and then reduces it to a known NPC problem.
Here is an example of a solution.
What am I missing here? Isn't that because he does it the other way around?
source share