- Given: graph G
- Input: k
- Return: "YES" if there exists a set of k nodes, such that no two nodes are connected and no two nodes are connected to the same node. For example if (A,B) and (B,C) then A and C are not allowed in the set of k nodes. How would we prove this problem is NP-complete?
EDIT: I imagine we could use Independent Set/Vertex Cover?