I need to show that problem "partition problem 2:1" is NP-complete.
I know that I need to use $A'$ as certificate to proof that problem is NP.
I know that "partition problem":
given $s: A \rightarrow \mathbb N$, find $A' \subset A : \sum_{a \in A'} s(a) = \sum_{a \in A \backslash A'} s(a)$
is NP-hard.
Using this, I want to show that my problem:
$s: A \rightarrow \mathbb N$, find $A' \subset A : \sum_{a \in A'} s(a) = 2\sum_{a \in A \backslash A'} s(a)$
is also NP-hard.
How can I reduce partition problem to "partition problem 2:1"?