How can i aproach this problem by induction?
Suppose that you are given an algorithm as a black box you cannot see how it is designed it has the following properties: if you input any sequence of real numbers and an integer k, the algorithm will answer YES or NO indicating whether there is a subset of numbers whose sum is exactly k. Show how to use this black box to find the subset of a given sequence {X1, …., Xn} whose sum is k. You can use the black box O(n) times.
Any idea?
I'm not entirely convinced that induction is necessary here.
Here's my two cents:
Suppose you have a sequence of numbers
S
, and integerk
, and you already know that there exists a subset of numbers whose sum isk
. Now, remove a number from your sequence (call iti
), and use your black box on what remains (using the samek
as before).i
and any subset ofS
whose sum isk
?i
and any subset ofS
whose sum isk
?